repo
stringlengths
1
152
file
stringlengths
15
205
code
stringlengths
0
41.6M
file_length
int64
0
41.6M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
90 values
null
ceph-main/src/test/common/test_perf_histogram.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 &smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 OVH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/perf_histogram.h" #include "gtest/gtest.h" template <int DIM> class PerfHistogramAccessor : public PerfHistogram<DIM> { public: typedef PerfHistogram<DIM> Base; using Base::PerfHistogram; static int64_t get_bucket_for_axis( int64_t value, const PerfHistogramCommon::axis_config_d& axis_config) { return Base::get_bucket_for_axis(value, axis_config); } static std::vector<std::pair<int64_t, int64_t>> get_axis_bucket_ranges( const PerfHistogramCommon::axis_config_d& axis_config) { return Base::get_axis_bucket_ranges(axis_config); } const typename Base::axis_config_d& get_axis_config(int num) { return Base::m_axes_config[num]; } template <typename F1, typename F2, typename F3> void visit_values(F1 f1, F2 f2, F3 f3) { Base::visit_values(f1, f2, f3); } }; TEST(PerfHistogram, GetBucketForAxis) { PerfHistogramCommon::axis_config_d linear{ "", PerfHistogramCommon::SCALE_LINEAR, 100, 3, 4}; ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(-1, linear)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(0, linear)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(99, linear)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(100, linear)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(101, linear)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(102, linear)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(103, linear)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(105, linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(106, linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(108, linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(109, linear)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::min(), linear)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::max(), linear)); PerfHistogramCommon::axis_config_d logarithmic{ "", PerfHistogramCommon::SCALE_LOG2, 100, 3, 5}; ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(-1, logarithmic)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(0, logarithmic)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis(99, logarithmic)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(100, logarithmic)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(101, logarithmic)); ASSERT_EQ(1, PerfHistogramAccessor<1>::get_bucket_for_axis(102, logarithmic)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(103, logarithmic)); ASSERT_EQ(2, PerfHistogramAccessor<1>::get_bucket_for_axis(105, logarithmic)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(106, logarithmic)); ASSERT_EQ(3, PerfHistogramAccessor<1>::get_bucket_for_axis(111, logarithmic)); ASSERT_EQ(4, PerfHistogramAccessor<1>::get_bucket_for_axis(112, logarithmic)); ASSERT_EQ(4, PerfHistogramAccessor<1>::get_bucket_for_axis(124, logarithmic)); ASSERT_EQ(0, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::min(), logarithmic)); ASSERT_EQ(4, PerfHistogramAccessor<1>::get_bucket_for_axis( std::numeric_limits<int64_t>::max(), logarithmic)); } static const int XS = 5; static const int YS = 7; static const auto x_axis = PerfHistogramCommon::axis_config_d{ "x", PerfHistogramCommon::SCALE_LINEAR, 0, 1, XS}; static const auto y_axis = PerfHistogramCommon::axis_config_d{ "y", PerfHistogramCommon::SCALE_LOG2, 0, 1, YS}; TEST(PerfHistogram, ZeroedInitially) { PerfHistogramAccessor<2> h{x_axis, y_axis}; for (int x = 0; x < XS; ++x) { for (int y = 0; y < YS; ++y) { ASSERT_EQ(0UL, h.read_bucket(x, y)); } } } TEST(PerfHistogram, Copy) { PerfHistogramAccessor<2> h1{x_axis, y_axis}; h1.inc_bucket(1, 1); h1.inc_bucket(2, 3); h1.inc_bucket(4, 5); PerfHistogramAccessor<2> h2 = h1; const int cx = 1; const int cy = 2; h1.inc_bucket(cx, cy); // Axes configuration must be equal for (int i = 0; i < 2; i++) { const auto& ac1 = h1.get_axis_config(i); const auto& ac2 = h2.get_axis_config(i); ASSERT_EQ(ac1.m_name, ac2.m_name); ASSERT_EQ(ac1.m_scale_type, ac2.m_scale_type); ASSERT_EQ(ac1.m_min, ac2.m_min); ASSERT_EQ(ac1.m_quant_size, ac2.m_quant_size); ASSERT_EQ(ac1.m_buckets, ac2.m_buckets); } // second histogram must have histogram values equal to the first // one at the time of copy for (int x = 0; x < XS; x++) { for (int y = 0; y < YS; y++) { if (x == cx && y == cy) { ASSERT_NE(h1.read_bucket(x, y), h2.read_bucket(x, y)); } else { ASSERT_EQ(h1.read_bucket(x, y), h2.read_bucket(x, y)); } } } } TEST(PerfHistogram, SimpleValues) { PerfHistogramAccessor<2> h{x_axis, y_axis}; ASSERT_EQ(0UL, h.read_bucket(1, 1)); h.inc(0, 0); ASSERT_EQ(1UL, h.read_bucket(1, 1)); ASSERT_EQ(0UL, h.read_bucket(2, 2)); h.inc(1, 1); ASSERT_EQ(1UL, h.read_bucket(2, 2)); ASSERT_EQ(0UL, h.read_bucket(3, 3)); h.inc(2, 2); ASSERT_EQ(1UL, h.read_bucket(3, 3)); ASSERT_EQ(0UL, h.read_bucket(4, 3)); h.inc(3, 3); ASSERT_EQ(1UL, h.read_bucket(4, 3)); } TEST(PerfHistogram, OneBucketRange) { auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges( PerfHistogramCommon::axis_config_d{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 1}); ASSERT_EQ(1UL, ranges.size()); ASSERT_EQ(std::numeric_limits<int64_t>::min(), ranges[0].first); ASSERT_EQ(std::numeric_limits<int64_t>::max(), ranges[0].second); } TEST(PerfHistogram, TwoBucketRange) { auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges( PerfHistogramCommon::axis_config_d{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 2}); ASSERT_EQ(2UL, ranges.size()); ASSERT_EQ(std::numeric_limits<int64_t>::min(), ranges[0].first); ASSERT_EQ(-1, ranges[0].second); ASSERT_EQ(0, ranges[1].first); ASSERT_EQ(std::numeric_limits<int64_t>::max(), ranges[1].second); } TEST(PerfHistogram, LinearBucketRange) { PerfHistogramCommon::axis_config_d ac{"", PerfHistogramCommon::SCALE_LINEAR, 100, 10, 15}; auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges(ac); for (size_t i = 0; i < ranges.size(); ++i) { ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].first, ac)); ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].second, ac)); } for (size_t i = 1; i < ranges.size(); ++i) { ASSERT_EQ(ranges[i].first, ranges[i - 1].second + 1); } } TEST(PerfHistogram, LogarithmicBucketRange) { PerfHistogramCommon::axis_config_d ac{"", PerfHistogramCommon::SCALE_LOG2, 100, 10, 15}; auto ranges = PerfHistogramAccessor<1>::get_axis_bucket_ranges(ac); for (size_t i = 0; i < ranges.size(); ++i) { ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].first, ac)); ASSERT_EQ( static_cast<long>(i), PerfHistogramAccessor<1>::get_bucket_for_axis(ranges[i].second, ac)); } for (size_t i = 1; i < ranges.size(); ++i) { ASSERT_EQ(ranges[i].first, ranges[i - 1].second + 1); } } TEST(PerfHistogram, AxisAddressing) { PerfHistogramCommon::axis_config_d ac1{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 7}; PerfHistogramCommon::axis_config_d ac2{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 9}; PerfHistogramCommon::axis_config_d ac3{"", PerfHistogramCommon::SCALE_LINEAR, 0, 1, 11}; PerfHistogramAccessor<3> h{ac1, ac2, ac3}; h.inc(1, 2, 3); // Should end up in buckets 2, 3, 4 h.inc_bucket(4, 5, 6); std::vector<int64_t> rawValues; h.visit_values([](int) {}, [&rawValues](int64_t value) { rawValues.push_back(value); }, [](int) {}); for (size_t i = 0; i < rawValues.size(); ++i) { switch (i) { case 4 + 11 * (3 + 9 * 2): case 6 + 11 * (5 + 9 * 4): ASSERT_EQ(1, rawValues[i]); break; default: ASSERT_EQ(0, rawValues[i]); break; } } }
8,897
34.879032
97
cc
null
ceph-main/src/test/common/test_pretty_binary.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/pretty_binary.h" #include "gtest/gtest.h" TEST(pretty_binary, print) { ASSERT_EQ(pretty_binary_string(std::string("foo\001\002bars")), std::string("'foo'0x0102'bars'")); ASSERT_EQ(pretty_binary_string(std::string("foo''bars")), std::string("'foo''''bars'")); ASSERT_EQ(pretty_binary_string(std::string("foo\377 \200!!")), std::string("'foo'0xFF2020802121")); ASSERT_EQ(pretty_binary_string(std::string("\001\002\003\004")), std::string("0x01020304")); } TEST(pretty_binary, unprint) { ASSERT_EQ(pretty_binary_string_reverse(std::string("'foo'0x0102'bars'")), std::string("foo\001\002bars")); ASSERT_EQ(pretty_binary_string_reverse(std::string("'foo''''bars'")), std::string("foo''bars")); ASSERT_EQ(pretty_binary_string_reverse(std::string("'foo'0xFF2020802121")), std::string("foo\377 \200!!")); ASSERT_EQ(pretty_binary_string_reverse(std::string("0x01020304")),std::string("\001\002\003\004")); } TEST(pretty_binary, all_chars) { std::string a; for (unsigned j = 0; j < 256; ++j) { a.push_back((char)j); } std::string b = pretty_binary_string(a); ASSERT_EQ(a, pretty_binary_string_reverse(b)); } TEST(pretty_binary, random) { for (size_t i = 0; i < 100000; i++) { std::string a; size_t r = rand() % 100; for (size_t j = 0; j < r; ++j) { a.push_back((unsigned char)rand()); } std::string b = pretty_binary_string(a); ASSERT_EQ(a, pretty_binary_string_reverse(b)); } } TEST(pretty_binary, invalid) { ASSERT_THROW(pretty_binary_string_reverse("'"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("0x1"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("0x"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("'''"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("'a'x"), std::invalid_argument); ASSERT_THROW(pretty_binary_string_reverse("'a'0x"), std::invalid_argument); }
2,046
39.137255
110
cc
null
ceph-main/src/test/common/test_prioritized_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "gtest/gtest.h" #include "common/PrioritizedQueue.h" #include <numeric> #include <vector> #include <algorithm> #include <random> using std::vector; class PrioritizedQueueTest : public testing::Test { protected: typedef int Klass; typedef unsigned Item; typedef PrioritizedQueue<Item, Klass> PQ; enum { item_size = 100, }; vector<Item> items; void SetUp() override { for (int i = 0; i < item_size; i++) { items.push_back(Item(i)); } std::random_device rd; std::default_random_engine rng(rd()); std::shuffle(items.begin(), items.end(), rng); } void TearDown() override { items.clear(); } }; TEST_F(PrioritizedQueueTest, capacity) { const unsigned min_cost = 10; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); EXPECT_TRUE(pq.empty()); EXPECT_EQ(0u, pq.length()); pq.enqueue_strict(Klass(1), 0, Item(0)); EXPECT_FALSE(pq.empty()); EXPECT_EQ(1u, pq.length()); for (int i = 0; i < 3; i++) { pq.enqueue(Klass(1), 0, 10, Item(0)); } for (unsigned i = 4; i > 0; i--) { EXPECT_FALSE(pq.empty()); EXPECT_EQ(i, pq.length()); pq.dequeue(); } EXPECT_TRUE(pq.empty()); EXPECT_EQ(0u, pq.length()); } TEST_F(PrioritizedQueueTest, strict_pq) { const unsigned min_cost = 1; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); // 0 .. item_size-1 for (unsigned i = 0; i < item_size; i++) { unsigned priority = items[i]; const Item& item = items[i]; pq.enqueue_strict(Klass(0), priority, Item(item)); } // item_size-1 .. 0 for (unsigned i = item_size; i > 0; i--) { Item item = pq.dequeue(); unsigned priority = item; EXPECT_EQ(i - 1, priority); } } TEST_F(PrioritizedQueueTest, lowest_among_eligible_otherwise_highest) { // to minimize the effect of `distribute_tokens()` // all eligible items will be assigned with cost of min_cost const unsigned min_cost = 0; const unsigned max_tokens_per_subqueue = 100; PQ pq(max_tokens_per_subqueue, min_cost); #define ITEM_TO_COST(item_) (item_ % 5 ? min_cost : max_tokens_per_subqueue) unsigned num_low_cost = 0, num_high_cost = 0; for (int i = 0; i < item_size; i++) { const Item& item = items[i]; unsigned cost = ITEM_TO_COST(item); unsigned priority = item; if (cost == min_cost) { num_low_cost++; } else { num_high_cost++; } pq.enqueue(Klass(0), priority, cost, Item(item)); } // the token in all buckets is 0 at the beginning, so dequeue() should pick // the first one with the highest priority. unsigned highest_priority; { Item item = pq.dequeue(); unsigned cost = ITEM_TO_COST(item); unsigned priority = item; if (cost == min_cost) { num_low_cost--; } else { num_high_cost--; } EXPECT_EQ(item_size - 1u, priority); highest_priority = priority; } unsigned lowest_priority = 0; for (unsigned i = 0; i < num_low_cost; i++) { Item item = pq.dequeue(); unsigned cost = ITEM_TO_COST(item); unsigned priority = item; EXPECT_EQ(min_cost, cost); EXPECT_GT(priority, lowest_priority); lowest_priority = priority; } for (unsigned i = 0; i < num_high_cost; i++) { Item item = pq.dequeue(); unsigned cost = ITEM_TO_COST(item); unsigned priority = item; EXPECT_EQ(max_tokens_per_subqueue, cost); EXPECT_LT(priority, highest_priority); highest_priority = priority; } #undef ITEM_TO_COST } static const unsigned num_classes = 4; // just a determinitic number #define ITEM_TO_CLASS(item_) Klass((item_ + 43) % num_classes) TEST_F(PrioritizedQueueTest, fairness_by_class) { // dequeue should be fair to all classes in a certain bucket const unsigned min_cost = 1; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); for (int i = 0; i < item_size; i++) { const Item& item = items[i]; Klass k = ITEM_TO_CLASS(item); unsigned priority = 0; unsigned cost = 1; pq.enqueue(k, priority, cost, Item(item)); } // just sample first 1/2 of the items // if i pick too small a dataset, the result won't be statisitcally // significant. if the sample dataset is too large, it will converge to the // distribution of the full set. vector<unsigned> num_picked_in_class(num_classes, 0u); for (int i = 0; i < item_size / 2; i++) { Item item = pq.dequeue(); Klass k = ITEM_TO_CLASS(item); num_picked_in_class[k]++; } unsigned total = std::accumulate(num_picked_in_class.begin(), num_picked_in_class.end(), 0); float avg = float(total) / num_classes; for (unsigned i = 0; i < num_classes; i++) { EXPECT_NEAR(avg, num_picked_in_class[i], 0.5); } } TEST_F(PrioritizedQueueTest, remove_by_class) { const unsigned min_cost = 1; const unsigned max_tokens_per_subqueue = 50; PQ pq(max_tokens_per_subqueue, min_cost); const Klass class_to_remove(2); unsigned num_to_remove = 0; for (int i = 0; i < item_size; i++) { const Item& item = items[i]; Klass k = ITEM_TO_CLASS(item); pq.enqueue(k, 0, 0, Item(item)); if (k == class_to_remove) { num_to_remove++; } } std::list<Item> removed; pq.remove_by_class(class_to_remove, &removed); // see if the removed items are expected ones. for (std::list<Item>::iterator it = removed.begin(); it != removed.end(); ++it) { const Item& item = *it; Klass k = ITEM_TO_CLASS(item); EXPECT_EQ(class_to_remove, k); items.erase(remove(items.begin(), items.end(), item), items.end()); } EXPECT_EQ(num_to_remove, removed.size()); EXPECT_EQ(item_size - num_to_remove, pq.length()); EXPECT_EQ(item_size - num_to_remove, items.size()); // see if the remainder are expeceted also. while (!pq.empty()) { const Item item = pq.dequeue(); Klass k = ITEM_TO_CLASS(item); EXPECT_NE(class_to_remove, k); items.erase(remove(items.begin(), items.end(), item), items.end()); } EXPECT_TRUE(items.empty()); }
6,136
28.647343
77
cc
null
ceph-main/src/test/common/test_rabin_chunk.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <vector> #include <cstring> #include <random> #include "include/types.h" #include "include/buffer.h" #include "common/rabin.h" #include "gtest/gtest.h" TEST(Rabin, rabin_hash_simple) { uint64_t expected = 680425538102669423; uint64_t result; unsigned int window_size = 48; char data[window_size + 1]; RabinChunk rabin; memset(data, 0, window_size + 1); for (unsigned int i = 0; i < window_size; ++i) { data[i] = i; } result = rabin.gen_rabin_hash(data, 0); ASSERT_EQ(expected, result); } TEST(Rabin, chunk_check_min_max) { const char buf[] = "0123456789"; bufferlist bl; RabinChunk rabin; for (int i = 0; i < 250; i++) { bl.append(buf); } vector<pair<uint64_t, uint64_t>> chunks; size_t min_chunk = 2000; size_t max_chunk = 8000; rabin.do_rabin_chunks(bl, chunks, min_chunk, max_chunk); uint64_t chunk_size = chunks[0].second; ASSERT_GE(chunk_size , min_chunk); ASSERT_LE(chunk_size , max_chunk); } TEST(Rabin, test_cdc) { const char *base_str = "123456789012345678901234567890123456789012345678"; bufferlist bl, cmp_bl; for (int i = 0; i < 100; i++) { bl.append(base_str); } cmp_bl.append('a'); for (int i = 0; i < 100; i++) { cmp_bl.append(base_str); } RabinChunk rabin; vector<pair<uint64_t, uint64_t>> chunks; vector<pair<uint64_t, uint64_t>> cmp_chunks; size_t min_chunk = 200; size_t max_chunk = 800; rabin.do_rabin_chunks(bl, chunks, min_chunk, max_chunk); rabin.do_rabin_chunks(cmp_bl, cmp_chunks, min_chunk, max_chunk); // offset, len will be the same, except in the case of first offset ASSERT_EQ(chunks[4].first + 1, cmp_chunks[4].first); ASSERT_EQ(chunks[4].second, cmp_chunks[4].second); } void generate_buffer(int size, bufferlist *outbl) { outbl->clear(); outbl->append_zero(size); char *b = outbl->c_str(); std::mt19937_64 engine; for (size_t i = 0; i < size / sizeof(uint64_t); ++i) { ((uint64_t*)b)[i] = engine(); } } #if 0 this fails! TEST(Rabin, shifts) { RabinChunk rabin; rabin.set_target_bits(18, 2); for (int frontlen = 1; frontlen < 5; frontlen++) { bufferlist bl1, bl2; generate_buffer(4*1024*1024, &bl1); generate_buffer(frontlen, &bl2); bl2.append(bl1); bl2.rebuild(); vector<pair<uint64_t, uint64_t>> chunks1, chunks2; rabin.do_rabin_chunks(bl1, chunks1); rabin.do_rabin_chunks(bl2, chunks2); cout << "1: " << chunks1 << std::endl; cout << "2: " << chunks2 << std::endl; ASSERT_GE(chunks2.size(), chunks1.size()); int match = 0; for (unsigned i = 0; i < chunks1.size(); ++i) { unsigned j = i + (chunks2.size() - chunks1.size()); if (chunks1[i].first + frontlen == chunks2[j].first && chunks1[i].second == chunks2[j].second) { match++; } } ASSERT_GE(match, chunks1.size() - 1); } } #endif void do_size_histogram(RabinChunk& rabin, bufferlist& bl, map<int,int> *h) { vector<pair<uint64_t, uint64_t>> chunks; rabin.do_rabin_chunks(bl, chunks); for (auto& i : chunks) { unsigned b = i.second & 0xfffff000; //unsigned b = 1 << cbits(i.second); (*h)[b]++; } } void print_histogram(map<int,int>& h) { cout << "size\tcount" << std::endl; for (auto i : h) { cout << i.first << "\t" << i.second << std::endl; } } TEST(Rabin, chunk_random) { RabinChunk rabin; rabin.set_target_bits(18, 2); map<int,int> h; for (int i = 0; i < 8; ++i) { cout << "."; cout.flush(); bufferlist r; generate_buffer(16*1024*1024, &r); do_size_histogram(rabin, r, &h); } cout << std::endl; print_histogram(h); }
3,706
23.388158
76
cc
null
ceph-main/src/test/common/test_random.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 SUSE LINUX GmbH * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <sstream> #include "include/random.h" #include "gtest/gtest.h" // Helper to see if calls compile with various types: template <typename T> T type_check_ok(const T min, const T max) { return ceph::util::generate_random_number(min, max); } /* Help wrangle "unused variable" warnings: */ template <typename X> void swallow_values(const X x) { static_cast<void>(x); } template <typename X, typename ...XS> void swallow_values(const X x, const XS... xs) { swallow_values(x), swallow_values(xs...); } // Mini-examples showing canonical usage: TEST(util, test_random_canonical) { // Seed random number generation: ceph::util::randomize_rng(); // Get a random int between 0 and max int: auto a = ceph::util::generate_random_number(); // Get a random int between 0 and 20: auto b = ceph::util::generate_random_number(20); // Get a random int between 1 and 20: auto c = ceph::util::generate_random_number(1, 20); // Get a random float between 0.0 and 20.0: auto d = ceph::util::generate_random_number(20.0); // Get a random float between 0.001 and 0.991: auto e = ceph::util::generate_random_number(0.001, 0.991); // Make a function object RNG suitable for putting on its own thread: auto gen_fn = ceph::util::random_number_generator<int>(); auto z = gen_fn(); gen_fn.seed(42); // re-seed // Placate the compiler: swallow_values(a, b, c, d, e, z); } TEST(util, test_random) { /* The intent of this test is not to formally test random number generation, but rather to casually check that "it works" and catch regressions: */ // The default overload should compile: ceph::util::randomize_rng(); { int a = ceph::util::generate_random_number(); int b = ceph::util::generate_random_number(); /* Technically, this can still collide and cause a false negative, but let's be optimistic: */ if (std::numeric_limits<int>::max() > 32767) { ASSERT_NE(a, b); } } // Check that the nullary version accepts different numeric types: { long def = ceph::util::generate_random_number(); long l = ceph::util::generate_random_number<long>(); int64_t i = ceph::util::generate_random_number<int64_t>(); double d = ceph::util::generate_random_number<double>(); swallow_values(def, l, i, d); } // (optimistically) Check that the nullary and unary versions never return < 0: { for(long i = 0; 1000000 != i; i++) { ASSERT_LE(0, ceph::util::generate_random_number()); ASSERT_LE(0, ceph::util::generate_random_number(1)); ASSERT_LE(0, ceph::util::generate_random_number<float>(1.0)); } } { auto a = ceph::util::generate_random_number(1, std::numeric_limits<int>::max()); auto b = ceph::util::generate_random_number(1, std::numeric_limits<int>::max()); if (std::numeric_limits<int>::max() > 32767) { ASSERT_GT(a, 0); ASSERT_GT(b, 0); ASSERT_NE(a, b); } } for (auto n = 100000; n; --n) { int a = ceph::util::generate_random_number(0, 6); ASSERT_GT(a, -1); ASSERT_LT(a, 7); } // Check bounding on zero (checking appropriate value for zero compiles and works): for (auto n = 10; n; --n) { ASSERT_EQ(0, ceph::util::generate_random_number<int>(0, 0)); ASSERT_EQ(0, ceph::util::generate_random_number<float>(0.0, 0.0)); } // Multiple types (integral): { int min = 0, max = 1; type_check_ok(min, max); } { long min = 0, max = 1l; type_check_ok(min, max); } // Multiple types (floating point): { double min = 0.0, max = 1.0; type_check_ok(min, max); } { float min = 0.0, max = 1.0; type_check_ok(min, max); } // When combining types, everything should convert to the largest type: { // Check with integral types: { int x = 0; long long y = 1; auto z = ceph::util::generate_random_number(x, y); bool result = std::is_same_v<decltype(z), decltype(y)>; ASSERT_TRUE(result); } // Check with floating-point types: { float x = 0.0; long double y = 1.0; auto z = ceph::util::generate_random_number(x, y); bool result = std::is_same_v<decltype(z), decltype(y)>; ASSERT_TRUE(result); } // It would be nice to have a test to check that mixing integral and floating point // numbers should not compile, however we currently have no good way I know of // to do such negative tests. } } TEST(util, test_random_class_interface) { ceph::util::random_number_generator<int> rng_i; ceph::util::random_number_generator<float> rng_f; // Other ctors: { ceph::util::random_number_generator<int> rng(1234); // seed } // Test deduction guides: { { ceph::util::random_number_generator rng(1234); } #pragma clang diagnostic push // Turn this warning off, since we're checking that the deduction // guide works. (And we don't know what the seed type will // actually be.) #pragma clang diagnostic ignored "-Wliteral-conversion" { ceph::util::random_number_generator rng(1234.1234); } #pragma clang diagnostic pop { int x = 1234; ceph::util::random_number_generator rng(x); } } { int a = rng_i(); int b = rng_i(); // Technically can fail, but should "almost never" happen: ASSERT_NE(a, b); } { int a = rng_i(10); ASSERT_LE(a, 10); ASSERT_GE(a, 0); } { float a = rng_f(10.0); ASSERT_LE(a, 10.0); ASSERT_GE(a, 0.0); } { int a = rng_i(10, 20); ASSERT_LE(a, 20); ASSERT_GE(a, 10); } { float a = rng_f(10.0, 20.0); ASSERT_LE(a, 20.0); ASSERT_GE(a, 10.0); } }
6,051
23.502024
87
cc
null
ceph-main/src/test/common/test_safe_io.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <algorithm> #include <cstring> #include <fcntl.h> #include <unistd.h> #include "common/safe_io.h" #include "gtest/gtest.h" TEST(SafeIO, safe_read_file) { const char *fname = "safe_read_testfile"; ::unlink(fname); int fd = ::open(fname, O_RDWR|O_CREAT|O_TRUNC, 0600); ASSERT_NE(fd, -1); const char buf[] = "0123456789"; for (int i = 0; i < 8; i++) { ASSERT_EQ((ssize_t)sizeof(buf), write(fd, buf, sizeof(buf))); } ::close(fd); char rdata[80]; ASSERT_EQ((int)sizeof(rdata), safe_read_file(".", fname, rdata, sizeof(rdata))); for (char *p = rdata, *end = rdata+sizeof(rdata); p < end; p+=sizeof(buf)) { ASSERT_EQ(0, std::memcmp(p, buf, std::min(size_t(end-p), sizeof(buf)))); } ::unlink(fname); } // Local Variables: // compile-command: "cd ../.. ; // make unittest_safe_io && // ./unittest_safe_io" // End:
961
24.315789
78
cc
null
ceph-main/src/test/common/test_shared_cache.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * Cheng Cheng <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include <signal.h> #include "gtest/gtest.h" #include "common/Thread.h" #include "common/shared_cache.hpp" using namespace std; class SharedLRUTest : public SharedLRU<unsigned int, int> { public: auto& get_lock() { return lock; } auto& get_cond() { return cond; } map<unsigned int, pair< std::weak_ptr<int>, int* > > &get_weak_refs() { return weak_refs; } }; class SharedLRU_all : public ::testing::Test { public: class Thread_wait : public Thread { public: SharedLRUTest &cache; unsigned int key; int value; std::shared_ptr<int> ptr; enum in_method_t { LOOKUP, LOWER_BOUND } in_method; Thread_wait(SharedLRUTest& _cache, unsigned int _key, int _value, in_method_t _in_method) : cache(_cache), key(_key), value(_value), in_method(_in_method) { } void * entry() override { switch (in_method) { case LOWER_BOUND: ptr = cache.lower_bound(key); break; case LOOKUP: ptr = std::shared_ptr<int>(new int); *ptr = value; ptr = cache.lookup(key); break; } return NULL; } }; static const useconds_t DELAY_MAX = 20 * 1000 * 1000; static useconds_t delay; bool wait_for(SharedLRUTest &cache, int waitting) { do { // // the delay variable is supposed to be initialized to zero. It would be fine // to usleep(0) but we take this opportunity to test the loop. It will try // again and therefore show that the logic ( increasing the delay ) actually // works. // if (delay > 0) usleep(delay); { std::lock_guard l{cache.get_lock()}; if (cache.waiting == waitting) { break; } } if (delay > 0) { cout << "delay " << delay << "us, is not long enough, try again\n"; } } while ((delay = delay * 2 + 1) < DELAY_MAX); return delay < DELAY_MAX; } }; useconds_t SharedLRU_all::delay = 0; TEST_F(SharedLRU_all, add) { SharedLRUTest cache; unsigned int key = 1; int value1 = 2; bool existed = false; { std::shared_ptr<int> ptr = cache.add(key, new int(value1), &existed); ASSERT_EQ(value1, *ptr); ASSERT_FALSE(existed); } { int value2 = 3; auto p = new int(value2); std::shared_ptr<int> ptr = cache.add(key, p, &existed); ASSERT_EQ(value1, *ptr); ASSERT_TRUE(existed); delete p; } } TEST_F(SharedLRU_all, empty) { SharedLRUTest cache; unsigned int key = 1; bool existed = false; ASSERT_TRUE(cache.empty()); { int value1 = 2; std::shared_ptr<int> ptr = cache.add(key, new int(value1), &existed); ASSERT_EQ(value1, *ptr); ASSERT_FALSE(existed); } ASSERT_FALSE(cache.empty()); cache.clear(key); ASSERT_TRUE(cache.empty()); } TEST_F(SharedLRU_all, lookup) { SharedLRUTest cache; unsigned int key = 1; { int value = 2; ASSERT_TRUE(cache.add(key, new int(value)).get()); ASSERT_TRUE(cache.lookup(key).get()); ASSERT_EQ(value, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(key).get()); } TEST_F(SharedLRU_all, lookup_or_create) { SharedLRUTest cache; { int value = 2; unsigned int key = 1; ASSERT_TRUE(cache.add(key, new int(value)).get()); ASSERT_TRUE(cache.lookup_or_create(key).get()); ASSERT_EQ(value, *cache.lookup(key)); } { unsigned int key = 2; ASSERT_TRUE(cache.lookup_or_create(key).get()); ASSERT_EQ(0, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(1).get()); ASSERT_TRUE(cache.lookup(2).get()); } TEST_F(SharedLRU_all, wait_lookup) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr(new int); cache.get_weak_refs()[key] = make_pair(ptr, &*ptr); } EXPECT_FALSE(cache.get_weak_refs()[key].first.lock()); Thread_wait t(cache, key, value, Thread_wait::LOOKUP); t.create("wait_lookup_1"); ASSERT_TRUE(wait_for(cache, 1)); EXPECT_EQ(value, *t.ptr); // waiting on a key does not block lookups on other keys EXPECT_FALSE(cache.lookup(key + 12345)); { std::lock_guard l{cache.get_lock()}; cache.get_weak_refs().erase(key); cache.get_cond().notify_one(); } ASSERT_TRUE(wait_for(cache, 0)); t.join(); EXPECT_FALSE(t.ptr); } TEST_F(SharedLRU_all, wait_lookup_or_create) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr(new int); cache.get_weak_refs()[key] = make_pair(ptr, &*ptr); } EXPECT_FALSE(cache.get_weak_refs()[key].first.lock()); Thread_wait t(cache, key, value, Thread_wait::LOOKUP); t.create("wait_lookup_2"); ASSERT_TRUE(wait_for(cache, 1)); EXPECT_EQ(value, *t.ptr); // waiting on a key does not block lookups on other keys EXPECT_TRUE(cache.lookup_or_create(key + 12345).get()); { std::lock_guard l{cache.get_lock()}; cache.get_weak_refs().erase(key); cache.get_cond().notify_one(); } ASSERT_TRUE(wait_for(cache, 0)); t.join(); EXPECT_FALSE(t.ptr); } TEST_F(SharedLRU_all, lower_bound) { SharedLRUTest cache; { unsigned int key = 1; ASSERT_FALSE(cache.lower_bound(key)); int value = 2; ASSERT_TRUE(cache.add(key, new int(value)).get()); ASSERT_TRUE(cache.lower_bound(key).get()); EXPECT_EQ(value, *cache.lower_bound(key)); } } TEST_F(SharedLRU_all, wait_lower_bound) { SharedLRUTest cache; unsigned int key = 1; int value = 2; unsigned int other_key = key + 1; int other_value = value + 1; ASSERT_TRUE(cache.add(other_key, new int(other_value)).get()); { std::shared_ptr<int> ptr(new int); cache.get_weak_refs()[key] = make_pair(ptr, &*ptr); } EXPECT_FALSE(cache.get_weak_refs()[key].first.lock()); Thread_wait t(cache, key, value, Thread_wait::LOWER_BOUND); t.create("wait_lower_bnd"); ASSERT_TRUE(wait_for(cache, 1)); EXPECT_FALSE(t.ptr); // waiting on a key does not block getting lower_bound on other keys EXPECT_TRUE(cache.lower_bound(other_key).get()); { std::lock_guard l{cache.get_lock()}; cache.get_weak_refs().erase(key); cache.get_cond().notify_one(); } ASSERT_TRUE(wait_for(cache, 0)); t.join(); EXPECT_TRUE(t.ptr.get()); } TEST_F(SharedLRU_all, get_next) { { SharedLRUTest cache; const unsigned int key = 0; pair<unsigned int, int> i; EXPECT_FALSE(cache.get_next(key, &i)); } { SharedLRUTest cache; const unsigned int key2 = 333; std::shared_ptr<int> ptr2 = cache.lookup_or_create(key2); const int value2 = *ptr2 = 400; // entries with expired pointers are silently ignored const unsigned int key_gone = 222; cache.get_weak_refs()[key_gone] = make_pair(std::shared_ptr<int>(), (int*)0); const unsigned int key1 = 111; std::shared_ptr<int> ptr1 = cache.lookup_or_create(key1); const int value1 = *ptr1 = 800; pair<unsigned int, int> i; EXPECT_TRUE(cache.get_next(0, &i)); EXPECT_EQ(key1, i.first); EXPECT_EQ(value1, i.second); EXPECT_TRUE(cache.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); EXPECT_EQ(value2, i.second); EXPECT_FALSE(cache.get_next(i.first, &i)); cache.get_weak_refs().clear(); } { SharedLRUTest cache; const unsigned int key1 = 111; std::shared_ptr<int> *ptr1 = new shared_ptr<int>(cache.lookup_or_create(key1)); const unsigned int key2 = 222; std::shared_ptr<int> ptr2 = cache.lookup_or_create(key2); pair<unsigned int, std::shared_ptr<int> > i; EXPECT_TRUE(cache.get_next(i.first, &i)); EXPECT_EQ(key1, i.first); delete ptr1; EXPECT_TRUE(cache.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); } } TEST_F(SharedLRU_all, clear) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr = cache.add(key, new int(value)); ASSERT_EQ(value, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(key).get()); cache.clear(key); ASSERT_FALSE(cache.lookup(key)); { std::shared_ptr<int> ptr = cache.add(key, new int(value)); } ASSERT_TRUE(cache.lookup(key).get()); cache.clear(key); ASSERT_FALSE(cache.lookup(key)); } TEST_F(SharedLRU_all, clear_all) { SharedLRUTest cache; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr = cache.add(key, new int(value)); ASSERT_EQ(value, *cache.lookup(key)); } ASSERT_TRUE(cache.lookup(key).get()); cache.clear(); ASSERT_FALSE(cache.lookup(key)); std::shared_ptr<int> ptr2 = cache.add(key, new int(value)); ASSERT_TRUE(cache.lookup(key).get()); cache.clear(); ASSERT_TRUE(cache.lookup(key).get()); ASSERT_FALSE(cache.empty()); } TEST(SharedCache_all, add) { SharedLRU<int, int> cache; unsigned int key = 1; int value = 2; std::shared_ptr<int> ptr = cache.add(key, new int(value)); ASSERT_EQ(ptr, cache.lookup(key)); ASSERT_EQ(value, *cache.lookup(key)); } TEST(SharedCache_all, lru) { const size_t SIZE = 5; SharedLRU<int, int> cache(NULL, SIZE); bool existed = false; std::shared_ptr<int> ptr = cache.add(0, new int(0), &existed); ASSERT_FALSE(existed); { int *tmpint = new int(0); std::shared_ptr<int> ptr2 = cache.add(0, tmpint, &existed); ASSERT_TRUE(existed); delete tmpint; } for (size_t i = 1; i < 2*SIZE; ++i) { cache.add(i, new int(i), &existed); ASSERT_FALSE(existed); } ASSERT_TRUE(cache.lookup(0).get()); ASSERT_EQ(0, *cache.lookup(0)); ASSERT_FALSE(cache.lookup(SIZE-1)); ASSERT_FALSE(cache.lookup(SIZE)); ASSERT_TRUE(cache.lookup(SIZE+1).get()); ASSERT_EQ((int)SIZE+1, *cache.lookup(SIZE+1)); cache.purge(0); ASSERT_FALSE(cache.lookup(0)); std::shared_ptr<int> ptr2 = cache.add(0, new int(0), &existed); ASSERT_FALSE(ptr == ptr2); ptr = std::shared_ptr<int>(); ASSERT_TRUE(cache.lookup(0).get()); } // Local Variables: // compile-command: "cd ../.. ; make unittest_shared_cache && ./unittest_shared_cache # --gtest_filter=*.* --log-to-stderr=true" // End:
10,749
25.80798
128
cc
null
ceph-main/src/test/common/test_sharedptr_registry.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include <signal.h> #include "gtest/gtest.h" #include "common/Thread.h" #include "common/sharedptr_registry.hpp" #include "common/ceph_argparse.h" using namespace std; class SharedPtrRegistryTest : public SharedPtrRegistry<unsigned int, int> { public: ceph::mutex &get_lock() { return lock; } map<unsigned int, pair<std::weak_ptr<int>, int*> > &get_contents() { return contents; } }; class SharedPtrRegistry_all : public ::testing::Test { public: class Thread_wait : public Thread { public: SharedPtrRegistryTest &registry; unsigned int key; int value; std::shared_ptr<int> ptr; enum in_method_t { LOOKUP, LOOKUP_OR_CREATE } in_method; Thread_wait(SharedPtrRegistryTest& _registry, unsigned int _key, int _value, in_method_t _in_method) : registry(_registry), key(_key), value(_value), in_method(_in_method) { } void *entry() override { switch(in_method) { case LOOKUP_OR_CREATE: if (value) ptr = registry.lookup_or_create<int>(key, value); else ptr = registry.lookup_or_create(key); break; case LOOKUP: ptr = std::shared_ptr<int>(new int); *ptr = value; ptr = registry.lookup(key); break; } return NULL; } }; static const useconds_t DELAY_MAX = 20 * 1000 * 1000; static useconds_t delay; bool wait_for(SharedPtrRegistryTest &registry, int waiting) { do { // // the delay variable is supposed to be initialized to zero. It would be fine // to usleep(0) but we take this opportunity to test the loop. It will try // again and therefore show that the logic ( increasing the delay ) actually // works. // if (delay > 0) usleep(delay); { std::lock_guard l(registry.get_lock()); if (registry.waiting == waiting) break; } if (delay > 0) cout << "delay " << delay << "us, is not long enough, try again\n"; } while (( delay = delay * 2 + 1) < DELAY_MAX); return delay < DELAY_MAX; } }; useconds_t SharedPtrRegistry_all::delay = 0; TEST_F(SharedPtrRegistry_all, lookup_or_create) { SharedPtrRegistryTest registry; unsigned int key = 1; int value = 2; std::shared_ptr<int> ptr = registry.lookup_or_create(key); *ptr = value; ASSERT_EQ(value, *registry.lookup_or_create(key)); } TEST_F(SharedPtrRegistry_all, wait_lookup_or_create) { SharedPtrRegistryTest registry; // // simulate the following: The last reference to a shared_ptr goes // out of scope and the shared_ptr object is about to be removed and // marked as such. The weak_ptr stored in the registry will show // that it has expired(). However, the SharedPtrRegistry::OnRemoval // object has not yet been called and did not get a chance to // acquire the lock. The lookup_or_create and lookup methods must // detect that situation and wait until the weak_ptr is removed from // the registry. // { unsigned int key = 1; { std::shared_ptr<int> ptr(new int); registry.get_contents()[key] = make_pair(ptr, ptr.get()); } EXPECT_FALSE(registry.get_contents()[key].first.lock()); Thread_wait t(registry, key, 0, Thread_wait::LOOKUP_OR_CREATE); t.create("wait_lookcreate"); ASSERT_TRUE(wait_for(registry, 1)); EXPECT_FALSE(t.ptr); // waiting on a key does not block lookups on other keys EXPECT_TRUE(registry.lookup_or_create(key + 12345).get()); registry.remove(key); ASSERT_TRUE(wait_for(registry, 0)); t.join(); EXPECT_TRUE(t.ptr.get()); } { unsigned int key = 2; int value = 3; { std::shared_ptr<int> ptr(new int); registry.get_contents()[key] = make_pair(ptr, ptr.get()); } EXPECT_FALSE(registry.get_contents()[key].first.lock()); Thread_wait t(registry, key, value, Thread_wait::LOOKUP_OR_CREATE); t.create("wait_lookcreate"); ASSERT_TRUE(wait_for(registry, 1)); EXPECT_FALSE(t.ptr); // waiting on a key does not block lookups on other keys { int other_value = value + 1; unsigned int other_key = key + 1; std::shared_ptr<int> ptr = registry.lookup_or_create<int>(other_key, other_value); EXPECT_TRUE(ptr.get()); EXPECT_EQ(other_value, *ptr); } registry.remove(key); ASSERT_TRUE(wait_for(registry, 0)); t.join(); EXPECT_TRUE(t.ptr.get()); EXPECT_EQ(value, *t.ptr); } } TEST_F(SharedPtrRegistry_all, lookup) { SharedPtrRegistryTest registry; unsigned int key = 1; { std::shared_ptr<int> ptr = registry.lookup_or_create(key); int value = 2; *ptr = value; ASSERT_EQ(value, *registry.lookup(key)); } ASSERT_FALSE(registry.lookup(key)); } TEST_F(SharedPtrRegistry_all, wait_lookup) { SharedPtrRegistryTest registry; unsigned int key = 1; int value = 2; { std::shared_ptr<int> ptr(new int); registry.get_contents()[key] = make_pair(ptr, ptr.get()); } EXPECT_FALSE(registry.get_contents()[key].first.lock()); Thread_wait t(registry, key, value, Thread_wait::LOOKUP); t.create("wait_lookup"); ASSERT_TRUE(wait_for(registry, 1)); EXPECT_EQ(value, *t.ptr); // waiting on a key does not block lookups on other keys EXPECT_FALSE(registry.lookup(key + 12345)); registry.remove(key); ASSERT_TRUE(wait_for(registry, 0)); t.join(); EXPECT_FALSE(t.ptr); } TEST_F(SharedPtrRegistry_all, get_next) { { SharedPtrRegistry<unsigned int,int> registry; const unsigned int key = 0; pair<unsigned int, int> i; EXPECT_FALSE(registry.get_next(key, &i)); } { SharedPtrRegistryTest registry; const unsigned int key2 = 333; std::shared_ptr<int> ptr2 = registry.lookup_or_create(key2); const int value2 = *ptr2 = 400; // entries with expired pointers are silentely ignored const unsigned int key_gone = 222; registry.get_contents()[key_gone] = make_pair(std::shared_ptr<int>(), (int*)0); const unsigned int key1 = 111; std::shared_ptr<int> ptr1 = registry.lookup_or_create(key1); const int value1 = *ptr1 = 800; pair<unsigned int, int> i; EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key1, i.first); EXPECT_EQ(value1, i.second); EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); EXPECT_EQ(value2, i.second); EXPECT_FALSE(registry.get_next(i.first, &i)); } { // // http://tracker.ceph.com/issues/6117 // reproduce the issue. // SharedPtrRegistryTest registry; const unsigned int key1 = 111; std::shared_ptr<int> *ptr1 = new std::shared_ptr<int>(registry.lookup_or_create(key1)); const unsigned int key2 = 222; std::shared_ptr<int> ptr2 = registry.lookup_or_create(key2); pair<unsigned int, std::shared_ptr<int> > i; EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key1, i.first); delete ptr1; EXPECT_TRUE(registry.get_next(i.first, &i)); EXPECT_EQ(key2, i.first); } } TEST_F(SharedPtrRegistry_all, remove) { { SharedPtrRegistryTest registry; const unsigned int key1 = 1; std::shared_ptr<int> ptr1 = registry.lookup_or_create(key1); *ptr1 = 400; registry.remove(key1); std::shared_ptr<int> ptr2 = registry.lookup_or_create(key1); *ptr2 = 500; ptr1 = std::shared_ptr<int>(); std::shared_ptr<int> res = registry.lookup(key1); ceph_assert(res); ceph_assert(res == ptr2); ceph_assert(*res == 500); } { SharedPtrRegistryTest registry; const unsigned int key1 = 1; std::shared_ptr<int> ptr1 = registry.lookup_or_create(key1, 400); registry.remove(key1); std::shared_ptr<int> ptr2 = registry.lookup_or_create(key1, 500); ptr1 = std::shared_ptr<int>(); std::shared_ptr<int> res = registry.lookup(key1); ceph_assert(res); ceph_assert(res == ptr2); ceph_assert(*res == 500); } } class SharedPtrRegistry_destructor : public ::testing::Test { public: typedef enum { UNDEFINED, YES, NO } DieEnum; static DieEnum died; struct TellDie { TellDie() { died = NO; } ~TellDie() { died = YES; } int value = 0; }; void SetUp() override { died = UNDEFINED; } }; SharedPtrRegistry_destructor::DieEnum SharedPtrRegistry_destructor::died = SharedPtrRegistry_destructor::UNDEFINED; TEST_F(SharedPtrRegistry_destructor, destructor) { SharedPtrRegistry<int,TellDie> registry; EXPECT_EQ(UNDEFINED, died); int key = 101; { std::shared_ptr<TellDie> a = registry.lookup_or_create(key); EXPECT_EQ(NO, died); EXPECT_TRUE(a.get()); } EXPECT_EQ(YES, died); EXPECT_FALSE(registry.lookup(key)); } // Local Variables: // compile-command: "cd ../.. ; make unittest_sharedptr_registry && ./unittest_sharedptr_registry # --gtest_filter=*.* --log-to-stderr=true" // End:
9,518
27.758308
140
cc
null
ceph-main/src/test/common/test_shunique_lock.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 &smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2011 New Dream Network * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include <future> #include <mutex> #include <shared_mutex> #include <thread> #include "common/ceph_time.h" #include "common/shunique_lock.h" #include "gtest/gtest.h" template<typename SharedMutex> static bool test_try_lock(SharedMutex* sm) { if (!sm->try_lock()) return false; sm->unlock(); return true; } template<typename SharedMutex> static bool test_try_lock_shared(SharedMutex* sm) { if (!sm->try_lock_shared()) return false; sm->unlock_shared(); return true; } template<typename SharedMutex, typename AcquireType> static void check_conflicts(SharedMutex sm, AcquireType) { } template<typename SharedMutex> static void ensure_conflicts(SharedMutex& sm, ceph::acquire_unique_t) { auto ttl = &test_try_lock<std::shared_timed_mutex>; auto ttls = &test_try_lock_shared<std::shared_timed_mutex>; ASSERT_FALSE(std::async(std::launch::async, ttl, &sm).get()); ASSERT_FALSE(std::async(std::launch::async, ttls, &sm).get()); } template<typename SharedMutex> static void ensure_conflicts(SharedMutex& sm, ceph::acquire_shared_t) { auto ttl = &test_try_lock<std::shared_timed_mutex>; auto ttls = &test_try_lock_shared<std::shared_timed_mutex>; ASSERT_FALSE(std::async(std::launch::async, ttl, &sm).get()); ASSERT_TRUE(std::async(std::launch::async, ttls, &sm).get()); } template<typename SharedMutex> static void ensure_free(SharedMutex& sm) { auto ttl = &test_try_lock<std::shared_timed_mutex>; auto ttls = &test_try_lock_shared<std::shared_timed_mutex>; ASSERT_TRUE(std::async(std::launch::async, ttl, &sm).get()); ASSERT_TRUE(std::async(std::launch::async, ttls, &sm).get()); } template<typename SharedMutex, typename AcquireType> static void check_owns_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul, AcquireType) { } template<typename SharedMutex> static void check_owns_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul, ceph::acquire_unique_t) { ASSERT_TRUE(sul.mutex() == &sm); ASSERT_TRUE(sul.owns_lock()); ASSERT_TRUE(!!sul); } template<typename SharedMutex> static void check_owns_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul, ceph::acquire_shared_t) { ASSERT_TRUE(sul.owns_lock_shared()); ASSERT_TRUE(!!sul); } template<typename SharedMutex> static void check_abjures_lock(const SharedMutex& sm, const ceph::shunique_lock<SharedMutex>& sul) { ASSERT_EQ(sul.mutex(), &sm); ASSERT_FALSE(sul.owns_lock()); ASSERT_FALSE(sul.owns_lock_shared()); ASSERT_FALSE(!!sul); } template<typename SharedMutex> static void check_abjures_lock(const ceph::shunique_lock<SharedMutex>& sul) { ASSERT_EQ(sul.mutex(), nullptr); ASSERT_FALSE(sul.owns_lock()); ASSERT_FALSE(sul.owns_lock_shared()); ASSERT_FALSE(!!sul); } TEST(ShuniqueLock, DefaultConstructor) { typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; shunique_lock l; ASSERT_EQ(l.mutex(), nullptr); ASSERT_FALSE(l.owns_lock()); ASSERT_FALSE(!!l); ASSERT_THROW(l.lock(), std::system_error); ASSERT_THROW(l.try_lock(), std::system_error); ASSERT_THROW(l.lock_shared(), std::system_error); ASSERT_THROW(l.try_lock_shared(), std::system_error); ASSERT_THROW(l.unlock(), std::system_error); ASSERT_EQ(l.mutex(), nullptr); ASSERT_FALSE(l.owns_lock()); ASSERT_FALSE(!!l); ASSERT_EQ(l.release(), nullptr); ASSERT_EQ(l.mutex(), nullptr); ASSERT_FALSE(l.owns_lock()); ASSERT_FALSE(l.owns_lock_shared()); ASSERT_FALSE(!!l); } template<typename AcquireType> void lock_unlock(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); l.unlock(); check_abjures_lock(sm, l); ensure_free(sm); l.lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } TEST(ShuniqueLock, LockUnlock) { lock_unlock(ceph::acquire_unique); lock_unlock(ceph::acquire_shared); } template<typename AcquireType> void lock_destruct(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } ensure_free(sm); } TEST(ShuniqueLock, LockDestruct) { lock_destruct(ceph::acquire_unique); lock_destruct(ceph::acquire_shared); } template<typename AcquireType> void move_construct(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); shunique_lock o(std::move(l)); check_abjures_lock(l); check_owns_lock(sm, o, at); ensure_conflicts(sm, at); o.unlock(); shunique_lock c(std::move(o)); ASSERT_EQ(o.mutex(), nullptr); ASSERT_FALSE(!!o); check_abjures_lock(sm, c); ensure_free(sm); } } TEST(ShuniqueLock, MoveConstruct) { move_construct(ceph::acquire_unique); move_construct(ceph::acquire_shared); std::shared_timed_mutex sm; { std::unique_lock<std::shared_timed_mutex> ul(sm); ensure_conflicts(sm, ceph::acquire_unique); ceph::shunique_lock<std::shared_timed_mutex> l(std::move(ul)); check_owns_lock(sm, l, ceph::acquire_unique); ensure_conflicts(sm, ceph::acquire_unique); } { std::unique_lock<std::shared_timed_mutex> ul(sm, std::defer_lock); ensure_free(sm); ceph::shunique_lock<std::shared_timed_mutex> l(std::move(ul)); check_abjures_lock(sm, l); ensure_free(sm); } { std::unique_lock<std::shared_timed_mutex> ul; ceph::shunique_lock<std::shared_timed_mutex> l(std::move(ul)); check_abjures_lock(l); } { std::shared_lock<std::shared_timed_mutex> sl(sm); ensure_conflicts(sm, ceph::acquire_shared); ceph::shunique_lock<std::shared_timed_mutex> l(std::move(sl)); check_owns_lock(sm, l, ceph::acquire_shared); ensure_conflicts(sm, ceph::acquire_shared); } { std::shared_lock<std::shared_timed_mutex> sl; ceph::shunique_lock<std::shared_timed_mutex> l(std::move(sl)); check_abjures_lock(l); } } template<typename AcquireType> void move_assign(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); shunique_lock o; o = std::move(l); check_abjures_lock(l); check_owns_lock(sm, o, at); ensure_conflicts(sm, at); o.unlock(); shunique_lock c(std::move(o)); check_abjures_lock(o); check_abjures_lock(sm, c); ensure_free(sm); shunique_lock k; c = std::move(k); check_abjures_lock(k); check_abjures_lock(c); ensure_free(sm); } } TEST(ShuniqueLock, MoveAssign) { move_assign(ceph::acquire_unique); move_assign(ceph::acquire_shared); std::shared_timed_mutex sm; { std::unique_lock<std::shared_timed_mutex> ul(sm); ensure_conflicts(sm, ceph::acquire_unique); ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(ul); check_owns_lock(sm, l, ceph::acquire_unique); ensure_conflicts(sm, ceph::acquire_unique); } { std::unique_lock<std::shared_timed_mutex> ul(sm, std::defer_lock); ensure_free(sm); ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(ul); check_abjures_lock(sm, l); ensure_free(sm); } { std::unique_lock<std::shared_timed_mutex> ul; ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(ul); check_abjures_lock(l); } { std::shared_lock<std::shared_timed_mutex> sl(sm); ensure_conflicts(sm, ceph::acquire_shared); ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(sl); check_owns_lock(sm, l, ceph::acquire_shared); ensure_conflicts(sm, ceph::acquire_shared); } { std::shared_lock<std::shared_timed_mutex> sl; ceph::shunique_lock<std::shared_timed_mutex> l; l = std::move(sl); check_abjures_lock(l); } } template<typename AcquireType> void construct_deferred(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_free(sm); ASSERT_THROW(l.unlock(), std::system_error); check_abjures_lock(sm, l); ensure_free(sm); l.lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } { shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_free(sm); ASSERT_THROW(l.unlock(), std::system_error); check_abjures_lock(sm, l); ensure_free(sm); } ensure_free(sm); } TEST(ShuniqueLock, ConstructDeferred) { construct_deferred(ceph::acquire_unique); construct_deferred(ceph::acquire_shared); } template<typename AcquireType> void construct_try(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, at, std::try_to_lock); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } { std::unique_lock<std::shared_timed_mutex> l(sm); ensure_conflicts(sm, ceph::acquire_unique); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, at, std::try_to_lock); check_abjures_lock(sm, l); ensure_conflicts(sm, ceph::acquire_unique); }).get(); l.unlock(); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, at, std::try_to_lock); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); }).get(); } } TEST(ShuniqueLock, ConstructTry) { construct_try(ceph::acquire_unique); construct_try(ceph::acquire_shared); } template<typename AcquireType> void construct_adopt(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock d(sm, at); d.release(); } ensure_conflicts(sm, at); { shunique_lock l(sm, at, std::adopt_lock); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } ensure_free(sm); } TEST(ShuniqueLock, ConstructAdopt) { construct_adopt(ceph::acquire_unique); construct_adopt(ceph::acquire_shared); } template<typename AcquireType> void try_lock(AcquireType at) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, std::defer_lock); l.try_lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); } { std::unique_lock<std::shared_timed_mutex> l(sm); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, std::defer_lock); l.try_lock(at); check_abjures_lock(sm, l); ensure_conflicts(sm, ceph::acquire_unique); }).get(); l.unlock(); std::async(std::launch::async, [&sm, at]() { shunique_lock l(sm, std::defer_lock); l.try_lock(at); check_owns_lock(sm, l, at); ensure_conflicts(sm, at); }).get(); } } TEST(ShuniqueLock, TryLock) { try_lock(ceph::acquire_unique); try_lock(ceph::acquire_shared); } TEST(ShuniqueLock, Release) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, ceph::acquire_unique); check_owns_lock(sm, l, ceph::acquire_unique); ensure_conflicts(sm, ceph::acquire_unique); l.release(); check_abjures_lock(l); ensure_conflicts(sm, ceph::acquire_unique); } ensure_conflicts(sm, ceph::acquire_unique); sm.unlock(); ensure_free(sm); { shunique_lock l(sm, ceph::acquire_shared); check_owns_lock(sm, l, ceph::acquire_shared); ensure_conflicts(sm, ceph::acquire_shared); l.release(); check_abjures_lock(l); ensure_conflicts(sm, ceph::acquire_shared); } ensure_conflicts(sm, ceph::acquire_shared); sm.unlock_shared(); ensure_free(sm); sm.lock(); { shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_conflicts(sm, ceph::acquire_unique); l.release(); check_abjures_lock(l); ensure_conflicts(sm, ceph::acquire_unique); } ensure_conflicts(sm, ceph::acquire_unique); sm.unlock(); ensure_free(sm); { std::unique_lock<std::shared_timed_mutex> ul; shunique_lock l(sm, std::defer_lock); check_abjures_lock(sm, l); ensure_free(sm); ASSERT_NO_THROW(ul = l.release_to_unique()); check_abjures_lock(l); ASSERT_EQ(ul.mutex(), &sm); ASSERT_FALSE(ul.owns_lock()); ensure_free(sm); } ensure_free(sm); { std::unique_lock<std::shared_timed_mutex> ul; shunique_lock l; check_abjures_lock(l); ASSERT_NO_THROW(ul = l.release_to_unique()); check_abjures_lock(l); ASSERT_EQ(ul.mutex(), nullptr); ASSERT_FALSE(ul.owns_lock()); } } TEST(ShuniqueLock, NoRecursion) { std::shared_timed_mutex sm; typedef ceph::shunique_lock<std::shared_timed_mutex> shunique_lock; { shunique_lock l(sm, ceph::acquire_unique); ASSERT_THROW(l.lock(), std::system_error); ASSERT_THROW(l.try_lock(), std::system_error); ASSERT_THROW(l.lock_shared(), std::system_error); ASSERT_THROW(l.try_lock_shared(), std::system_error); } { shunique_lock l(sm, ceph::acquire_shared); ASSERT_THROW(l.lock(), std::system_error); ASSERT_THROW(l.try_lock(), std::system_error); ASSERT_THROW(l.lock_shared(), std::system_error); ASSERT_THROW(l.try_lock_shared(), std::system_error); } }
13,996
23.300347
77
cc
null
ceph-main/src/test/common/test_sloppy_crc_map.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <iostream> #include "common/SloppyCRCMap.h" #include "common/Formatter.h" #include <gtest/gtest.h> using namespace std; void dump(const SloppyCRCMap& scm) { auto f = Formatter::create_unique("json-pretty"); f->open_object_section("map"); scm.dump(f.get()); f->close_section(); f->flush(cout); } TEST(SloppyCRCMap, basic) { SloppyCRCMap scm(4); bufferlist a, b; a.append("The quick brown fox jumped over a fence whose color I forget."); b.append("asdf"); scm.write(0, a.length(), a); if (0) dump(scm); ASSERT_EQ(0, scm.read(0, a.length(), a, &cout)); scm.write(12, b.length(), b); if (0) dump(scm); ASSERT_EQ(0, scm.read(12, b.length(), b, &cout)); ASSERT_EQ(1, scm.read(0, a.length(), a, &cout)); } TEST(SloppyCRCMap, truncate) { SloppyCRCMap scm(4); bufferlist a, b; a.append("asdf"); b.append("qwer"); scm.write(0, a.length(), a); scm.write(4, a.length(), a); ASSERT_EQ(0, scm.read(4, 4, a, &cout)); ASSERT_EQ(1, scm.read(4, 4, b, &cout)); scm.truncate(4); ASSERT_EQ(0, scm.read(4, 4, b, &cout)); } TEST(SloppyCRCMap, zero) { SloppyCRCMap scm(4); bufferlist a, b; a.append("asdf"); b.append("qwer"); scm.write(0, a.length(), a); scm.write(4, a.length(), a); ASSERT_EQ(0, scm.read(4, 4, a, &cout)); ASSERT_EQ(1, scm.read(4, 4, b, &cout)); scm.zero(4, 4); ASSERT_EQ(1, scm.read(4, 4, a, &cout)); ASSERT_EQ(1, scm.read(4, 4, b, &cout)); bufferptr bp(4); bp.zero(); bufferlist c; c.append(bp); ASSERT_EQ(0, scm.read(0, 4, a, &cout)); ASSERT_EQ(0, scm.read(4, 4, c, &cout)); scm.zero(0, 15); ASSERT_EQ(1, scm.read(0, 4, a, &cout)); ASSERT_EQ(0, scm.read(0, 4, c, &cout)); } TEST(SloppyCRCMap, clone_range) { SloppyCRCMap src(4); SloppyCRCMap dst(4); bufferlist a, b; a.append("asdfghjkl"); b.append("qwertyui"); src.write(0, a.length(), a); src.write(8, a.length(), a); src.write(16, a.length(), a); dst.write(0, b.length(), b); dst.clone_range(0, 8, 0, src); ASSERT_EQ(2, dst.read(0, 8, b, &cout)); ASSERT_EQ(0, dst.read(8, 8, b, &cout)); dst.write(16, b.length(), b); ASSERT_EQ(2, dst.read(16, 8, a, &cout)); dst.clone_range(16, 8, 16, src); ASSERT_EQ(0, dst.read(16, 8, a, &cout)); dst.write(16, b.length(), b); ASSERT_EQ(1, dst.read(16, 4, a, &cout)); dst.clone_range(16, 8, 2, src); ASSERT_EQ(0, dst.read(16, 4, a, &cout)); dst.write(0, b.length(), b); dst.write(8, b.length(), b); ASSERT_EQ(2, dst.read(0, 8, a, &cout)); ASSERT_EQ(2, dst.read(8, 8, a, &cout)); dst.clone_range(2, 8, 0, src); ASSERT_EQ(0, dst.read(0, 8, a, &cout)); ASSERT_EQ(0, dst.read(8, 4, a, &cout)); }
2,761
22.606838
76
cc
null
ceph-main/src/test/common/test_split.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab ft=cpp /* * Ceph - scalable distributed file system * * Copyright (C) 2019 Red Hat, Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "common/split.h" #include <algorithm> #include <gtest/gtest.h> namespace ceph { using string_list = std::initializer_list<std::string_view>; bool operator==(const split& lhs, const string_list& rhs) { return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); } bool operator==(const string_list& lhs, const split& rhs) { return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); } TEST(split, split) { EXPECT_EQ(string_list({}), split("")); EXPECT_EQ(string_list({}), split(",")); EXPECT_EQ(string_list({}), split(",;")); EXPECT_EQ(string_list({"a"}), split("a,;")); EXPECT_EQ(string_list({"a"}), split(",a;")); EXPECT_EQ(string_list({"a"}), split(",;a")); EXPECT_EQ(string_list({"a", "b"}), split("a,b;")); EXPECT_EQ(string_list({"a", "b"}), split("a,;b")); EXPECT_EQ(string_list({"a", "b"}), split(",a;b")); } TEST(split, iterator_indirection) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); EXPECT_EQ("a", *i); // test operator* } TEST(split, iterator_dereference) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); EXPECT_EQ(1, i->size()); // test operator-> } TEST(split, iterator_pre_increment) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); ASSERT_EQ("a", *i); EXPECT_EQ("b", *++i); // test operator++() EXPECT_EQ("b", *i); } TEST(split, iterator_post_increment) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); ASSERT_EQ("a", *i); EXPECT_EQ("a", *i++); // test operator++(int) ASSERT_NE(parts.end(), i); EXPECT_EQ("b", *i); } TEST(split, iterator_singular) { const auto parts = split("a,b"); auto i = parts.begin(); // test comparions against default-constructed 'singular' iterators split::iterator j; split::iterator k; EXPECT_EQ(j, parts.end()); // singular == end EXPECT_EQ(j, k); // singular == singular EXPECT_NE(j, i); // singular != valid } TEST(split, iterator_multipass) { const auto parts = split("a,b"); auto i = parts.begin(); ASSERT_NE(i, parts.end()); // copy the iterator to test LegacyForwardIterator's multipass guarantee auto j = i; ASSERT_EQ(i, j); ASSERT_EQ("a", *i); ASSERT_NE(parts.end(), ++i); EXPECT_EQ("b", *i); ASSERT_EQ("a", *j); // test that ++i left j unmodified ASSERT_NE(parts.end(), ++j); EXPECT_EQ("b", *j); EXPECT_EQ(i, j); } } // namespace ceph
2,923
23.366667
74
cc
null
ceph-main/src/test/common/test_static_ptr.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2017 Red Hat, Inc. * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <compare> #include <gtest/gtest.h> #include "common/static_ptr.h" using ceph::static_ptr; using ceph::make_static; class base { public: virtual int func() = 0; virtual ~base() = default; }; class sibling1 : public base { public: int func() override { return 0; } }; class sibling2 : public base { public: int func() override { return 9; } virtual int call(int) = 0; }; class grandchild : public sibling2 { protected: int val; public: explicit grandchild(int val) : val(val) {} virtual int call(int n) override { return n * val; } }; class great_grandchild : public grandchild { public: explicit great_grandchild(int val) : grandchild(val) {} int call(int n) override { return n + val; } }; #ifdef __cpp_lib_three_way_comparison TEST(StaticPtr, EmptyCreation) { static_ptr<base, sizeof(grandchild)> p; EXPECT_FALSE(p); EXPECT_EQ(p, nullptr); EXPECT_EQ(nullptr, p); EXPECT_TRUE(p.get() == nullptr); } TEST(StaticPtr, CreationCall) { { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_TRUE(p); EXPECT_FALSE(p == nullptr); EXPECT_FALSE(nullptr == p); EXPECT_FALSE(p.get() == nullptr); EXPECT_EQ(p->func(), 0); EXPECT_EQ((*p).func(), 0); EXPECT_EQ((p.get())->func(), 0); } { auto p = make_static<base, sibling1>(); EXPECT_TRUE(p); EXPECT_FALSE(p == nullptr); EXPECT_FALSE(nullptr == p); EXPECT_FALSE(p.get() == nullptr); EXPECT_EQ(p->func(), 0); EXPECT_EQ((*p).func(), 0); EXPECT_EQ((p.get())->func(), 0); } } TEST(StaticPtr, CreateReset) { { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_EQ((p.get())->func(), 0); p.reset(); EXPECT_FALSE(p); EXPECT_EQ(p, nullptr); EXPECT_EQ(nullptr, p); EXPECT_TRUE(p.get() == nullptr); } { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_EQ((p.get())->func(), 0); p = nullptr; EXPECT_FALSE(p); EXPECT_EQ(p, nullptr); EXPECT_EQ(nullptr, p); EXPECT_TRUE(p.get() == nullptr); } } #endif // __cpp_lib_three_way_comparison TEST(StaticPtr, CreateEmplace) { static_ptr<base, sizeof(grandchild)> p(std::in_place_type_t<sibling1>{}); EXPECT_EQ((p.get())->func(), 0); p.emplace<grandchild>(30); EXPECT_EQ(p->func(), 9); } TEST(StaticPtr, Move) { // Won't compile. Good. // static_ptr<base, sizeof(base)> p1(std::in_place_type_t<grandchild>{}, 3); static_ptr<base, sizeof(base)> p1(std::in_place_type_t<sibling1>{}); static_ptr<base, sizeof(grandchild)> p2(std::in_place_type_t<grandchild>{}, 3); p2 = std::move(p1); EXPECT_EQ(p1->func(), 0); } TEST(StaticPtr, ImplicitUpcast) { static_ptr<base, sizeof(grandchild)> p1; static_ptr<sibling2, sizeof(grandchild)> p2(std::in_place_type_t<grandchild>{}, 3); p1 = std::move(p2); EXPECT_EQ(p1->func(), 9); p2.reset(); // Doesn't compile. Good. // p2 = p1; } TEST(StaticPtr, StaticCast) { static_ptr<base, sizeof(grandchild)> p1(std::in_place_type_t<grandchild>{}, 3); static_ptr<sibling2, sizeof(grandchild)> p2; p2 = ceph::static_pointer_cast<sibling2, sizeof(grandchild)>(std::move(p1)); EXPECT_EQ(p2->func(), 9); EXPECT_EQ(p2->call(10), 30); } TEST(StaticPtr, DynamicCast) { static constexpr auto sz = sizeof(great_grandchild); { static_ptr<base, sz> p1(std::in_place_type_t<grandchild>{}, 3); auto p2 = ceph::dynamic_pointer_cast<great_grandchild, sz>(std::move(p1)); EXPECT_FALSE(p2); } { static_ptr<base, sz> p1(std::in_place_type_t<grandchild>{}, 3); auto p2 = ceph::dynamic_pointer_cast<grandchild, sz>(std::move(p1)); EXPECT_TRUE(p2); EXPECT_EQ(p2->func(), 9); EXPECT_EQ(p2->call(10), 30); } } class constable { public: int foo() { return 2; } int foo() const { return 5; } }; TEST(StaticPtr, ConstCast) { static constexpr auto sz = sizeof(constable); { auto p1 = make_static<const constable>(); EXPECT_EQ(p1->foo(), 5); auto p2 = ceph::const_pointer_cast<constable, sz>(std::move(p1)); static_assert(!std::is_const<decltype(p2)::element_type>{}, "Things are more const than they ought to be."); EXPECT_TRUE(p2); EXPECT_EQ(p2->foo(), 2); } } TEST(StaticPtr, ReinterpretCast) { static constexpr auto sz = sizeof(grandchild); { auto p1 = make_static<grandchild>(3); auto p2 = ceph::reinterpret_pointer_cast<constable, sz>(std::move(p1)); static_assert(std::is_same<decltype(p2)::element_type, constable>{}, "Reinterpret is screwy."); auto p3 = ceph::reinterpret_pointer_cast<grandchild, sz>(std::move(p2)); static_assert(std::is_same<decltype(p3)::element_type, grandchild>{}, "Reinterpret is screwy."); EXPECT_EQ(p3->func(), 9); EXPECT_EQ(p3->call(10), 30); } } struct exceptional { exceptional() = default; exceptional(const exceptional& e) { throw std::exception(); } exceptional(exceptional&& e) { throw std::exception(); } }; TEST(StaticPtr, Exceptional) { static_ptr<exceptional> p1(std::in_place_type_t<exceptional>{}); EXPECT_ANY_THROW(static_ptr<exceptional> p2(std::move(p1))); }
5,651
25.046083
85
cc
null
ceph-main/src/test/common/test_str_map.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <gtest/gtest.h> #include "include/str_map.h" using namespace std; TEST(str_map, json) { map<string,string> str_map; stringstream ss; // well formatted ASSERT_EQ(0, get_json_str_map("{\"key\": \"value\"}", ss, &str_map)); ASSERT_EQ("value", str_map["key"]); // well formatted but not a JSON object ASSERT_EQ(-EINVAL, get_json_str_map("\"key\"", ss, &str_map)); ASSERT_NE(string::npos, ss.str().find("must be a JSON object")); } TEST(str_map, plaintext) { { map<string,string> str_map; ASSERT_EQ(0, get_str_map(" foo=bar\t\nfrob=nitz yeah right= \n\t", &str_map)); ASSERT_EQ(4u, str_map.size()); ASSERT_EQ("bar", str_map["foo"]); ASSERT_EQ("nitz", str_map["frob"]); ASSERT_EQ("", str_map["yeah"]); ASSERT_EQ("", str_map["right"]); } { map<string,string> str_map; ASSERT_EQ(0, get_str_map("that", &str_map)); ASSERT_EQ(1u, str_map.size()); ASSERT_EQ("", str_map["that"]); } { map<string,string> str_map; ASSERT_EQ(0, get_str_map(" \t \n ", &str_map)); ASSERT_EQ(0u, str_map.size()); ASSERT_EQ(0, get_str_map("", &str_map)); ASSERT_EQ(0u, str_map.size()); } { map<string,string> str_map; ASSERT_EQ(0, get_str_map(" key1=val1; key2=\tval2; key3\t = \t val3; \n ", &str_map, "\n;")); ASSERT_EQ(4u, str_map.size()); ASSERT_EQ("val1", str_map["key1"]); ASSERT_EQ("val2", str_map["key2"]); ASSERT_EQ("val3", str_map["key3"]); } } TEST(str_map, empty_values) { { map<string,string> str_map; ASSERT_EQ(0, get_str_map("M= P= L=", &str_map)); ASSERT_EQ(3u, str_map.size()); ASSERT_EQ("", str_map["M"]); ASSERT_EQ("", str_map["P"]); ASSERT_EQ("", str_map["L"]); } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_str_map && * valgrind --tool=memcheck --leak-check=full \ * ./unittest_str_map * " * End: */
2,485
26.622222
97
cc
null
ceph-main/src/test/common/test_tableformatter.cc
#include "gtest/gtest.h" #include "common/Formatter.h" #include <iostream> #include <sstream> #include <string> using namespace ceph; TEST(tableformatter, singleline) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, longfloat) { std::stringstream sout; TableFormatter formatter; formatter.dump_float("float", 1.0 / 7); formatter.flush(sout); std::string cmp = "" "+----------------------+\n" "| float |\n" "+----------------------+\n" "| 0.14285714285714285 |\n" "+----------------------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, multiline) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "| 20 | 20 | string |\n" "+----------+--------+---------+\n"; formatter.flush(sout); EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, multiflush) { std::stringstream sout1; std::stringstream sout2; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout1); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout1.str()); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.flush(sout2); cmp = "" "| 20 | 20 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout2.str()); } TEST(tableformatter, multireset) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.reset(); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 20 | 20 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, changingheaderlength) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "stringstring"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+----------+--------+---------------+\n" "| integer | float | string |\n" "+----------+--------+---------------+\n" "| 20 | 20 | stringstring |\n" "+----------+--------+---------------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, changingheader) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.dump_int("longinteger", 20); formatter.dump_float("double", 20.0); formatter.dump_string("char*", "stringstring"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+--------------+---------+---------------+\n" "| longinteger | double | char* |\n" "+--------------+---------+---------------+\n" "| 20 | 20 | stringstring |\n" "+--------------+---------+---------------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, extendingheader) { std::stringstream sout; TableFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.dump_string("char*", "abcde"); formatter.flush(sout); std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n" "+----------+--------+---------+--------+\n" "| integer | float | string | char* |\n" "+----------+--------+---------+--------+\n" "| 20 | 20 | string | abcde |\n" "+----------+--------+---------+--------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, stream) { std::stringstream sout; TableFormatter* formatter = (TableFormatter*) Formatter::create("table"); formatter->dump_stream("integer") << 10; formatter->dump_stream("float") << 10.0; formatter->dump_stream("string") << "string"; formatter->flush(sout); delete formatter; std::string cmp = "" "+----------+--------+---------+\n" "| integer | float | string |\n" "+----------+--------+---------+\n" "| 10 | 10 | string |\n" "+----------+--------+---------+\n"; EXPECT_EQ(cmp, sout.str()); } TEST(tableformatter, multiline_keyval) { std::stringstream sout; TableFormatter* formatter = (TableFormatter*) Formatter::create("table-kv"); formatter->dump_int("integer", 10); formatter->dump_float("float", 10.0); formatter->dump_string("string", "string"); formatter->dump_int("integer", 20); formatter->dump_float("float", 20.0); formatter->dump_string("string", "string"); formatter->flush(sout); delete formatter; std::string cmp = "" "key::integer=\"10\" key::float=\"10\" key::string=\"string\" \n" "key::integer=\"20\" key::float=\"20\" key::string=\"string\" \n"; EXPECT_EQ(cmp, sout.str()); } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_tableformatter && * ./unittest_tableformatter * ' * End: */
7,420
27.109848
78
cc
null
ceph-main/src/test/common/test_time.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <ctime> #include "common/ceph_time.h" #include "include/rados.h" #include "gtest/gtest.h" #include "include/stringify.h" using namespace std; using ceph::real_clock; using ceph::real_time; using ceph::real_clock; using ceph::real_time; using ceph::coarse_real_clock; using ceph::coarse_mono_clock; using ceph::timespan; using ceph::signedspan; using std::chrono::seconds; using std::chrono::microseconds; using std::chrono::nanoseconds; static_assert(!real_clock::is_steady, "ceph::real_clock must not be steady."); static_assert(!coarse_real_clock::is_steady, "ceph::coarse_real_clock must not be steady."); static_assert(mono_clock::is_steady, "ceph::mono_clock must be steady."); static_assert(coarse_mono_clock::is_steady, "ceph::coarse_mono_clock must be steady."); // Before this file was written. static constexpr uint32_t bs = 1440701569; static constexpr uint32_t bns = 123456789; static constexpr uint32_t bus = 123456; static constexpr time_t btt = bs; static constexpr struct timespec bts = { bs, bns }; static struct ceph_timespec bcts = { ceph_le32(bs), ceph_le32(bns) }; static constexpr struct timeval btv = { bs, bus }; static constexpr double bd = bs + ((double)bns / 1000000000.); template<typename Clock> static void system_clock_sanity() { static const typename Clock::time_point brt(seconds(bs) + nanoseconds(bns)); const typename Clock::time_point now(Clock::now()); ASSERT_GT(now, brt); ASSERT_GT(Clock::to_time_t(now), btt); ASSERT_GT(Clock::to_timespec(now).tv_sec, bts.tv_sec); ASSERT_LT(Clock::to_timespec(now).tv_nsec, 1000000000L); ASSERT_GT(Clock::to_ceph_timespec(now).tv_sec, bcts.tv_sec); ASSERT_LT(Clock::to_ceph_timespec(now).tv_nsec, 1000000000UL); ASSERT_GT(Clock::to_timeval(now).tv_sec, btv.tv_sec); ASSERT_LT(Clock::to_timeval(now).tv_usec, 1000000L); } template<typename Clock> static void system_clock_conversions() { static typename Clock::time_point brt(seconds(bs) + nanoseconds(bns)); ASSERT_EQ(Clock::to_time_t(brt), btt); ASSERT_EQ(Clock::from_time_t(btt) + nanoseconds(bns), brt); { const struct timespec tts = Clock::to_timespec(brt); ASSERT_EQ(tts.tv_sec, bts.tv_sec); ASSERT_EQ(tts.tv_nsec, bts.tv_nsec); } ASSERT_EQ(Clock::from_timespec(bts), brt); { struct timespec tts; Clock::to_timespec(brt, tts); ASSERT_EQ(tts.tv_sec, bts.tv_sec); ASSERT_EQ(tts.tv_nsec, bts.tv_nsec); } { const struct ceph_timespec tcts = Clock::to_ceph_timespec(brt); ASSERT_EQ(tcts.tv_sec, bcts.tv_sec); ASSERT_EQ(tcts.tv_nsec, bcts.tv_nsec); } ASSERT_EQ(Clock::from_ceph_timespec(bcts), brt); { struct ceph_timespec tcts; Clock::to_ceph_timespec(brt, tcts); ASSERT_EQ(tcts.tv_sec, bcts.tv_sec); ASSERT_EQ(tcts.tv_nsec, bcts.tv_nsec); } { const struct timeval ttv = Clock::to_timeval(brt); ASSERT_EQ(ttv.tv_sec, btv.tv_sec); ASSERT_EQ(ttv.tv_usec, btv.tv_usec); } ASSERT_EQ(Clock::from_timeval(btv), brt - nanoseconds(bns - bus * 1000)); { struct timeval ttv; Clock::to_timeval(brt, ttv); ASSERT_EQ(ttv.tv_sec, btv.tv_sec); ASSERT_EQ(ttv.tv_usec, btv.tv_usec); } ASSERT_EQ(Clock::to_double(brt), bd); // Fudge factor ASSERT_LT(std::abs((Clock::from_double(bd) - brt).count()), 30); } TEST(RealClock, Sanity) { system_clock_sanity<real_clock>(); } TEST(RealClock, Conversions) { system_clock_conversions<real_clock>(); } TEST(CoarseRealClock, Sanity) { system_clock_sanity<coarse_real_clock>(); } TEST(CoarseRealClock, Conversions) { system_clock_conversions<coarse_real_clock>(); } TEST(TimePoints, SignedSubtraciton) { ceph::real_time rta(std::chrono::seconds(3)); ceph::real_time rtb(std::chrono::seconds(5)); ceph::coarse_real_time crta(std::chrono::seconds(3)); ceph::coarse_real_time crtb(std::chrono::seconds(5)); ceph::mono_time mta(std::chrono::seconds(3)); ceph::mono_time mtb(std::chrono::seconds(5)); ceph::coarse_mono_time cmta(std::chrono::seconds(3)); ceph::coarse_mono_time cmtb(std::chrono::seconds(5)); ASSERT_LT(rta - rtb, ceph::signedspan::zero()); ASSERT_LT((rta - rtb).count(), 0); ASSERT_GT(rtb - rta, ceph::signedspan::zero()); ASSERT_GT((rtb - rta).count(), 0); ASSERT_LT(crta - crtb, ceph::signedspan::zero()); ASSERT_LT((crta - crtb).count(), 0); ASSERT_GT(crtb - crta, ceph::signedspan::zero()); ASSERT_GT((crtb - crta).count(), 0); ASSERT_LT(mta - mtb, ceph::signedspan::zero()); ASSERT_LT((mta - mtb).count(), 0); ASSERT_GT(mtb - mta, ceph::signedspan::zero()); ASSERT_GT((mtb - mta).count(), 0); ASSERT_LT(cmta - cmtb, ceph::signedspan::zero()); ASSERT_LT((cmta - cmtb).count(), 0); ASSERT_GT(cmtb - cmta, ceph::signedspan::zero()); ASSERT_GT((cmtb - cmta).count(), 0); } TEST(TimePoints, stringify) { ceph::real_clock::time_point tp(seconds(1556122013) + nanoseconds(39923122)); string s = stringify(tp); ASSERT_EQ(s.size(), strlen("2019-04-24T11:06:53.039923-0500")); ASSERT_TRUE(s[26] == '-' || s[26] == '+'); ASSERT_EQ(s.substr(0, 9), "2019-04-2"); ceph::coarse_real_clock::time_point ctp(seconds(1556122013) + nanoseconds(399000000)); s = stringify(ctp); ASSERT_EQ(s.size(), strlen("2019-04-24T11:06:53.399000-0500")); ASSERT_TRUE(s[26] == '-' || s[26] == '+'); ASSERT_EQ(s.substr(0, 9), "2019-04-2"); } namespace { template<typename Rep, typename Period> std::string to_string(const chrono::duration<Rep, Period>& t) { std::ostringstream ss; ss << t; return ss.str(); } void float_format_eq(string_view lhs, string_view rhs, unsigned precision) { const float TOLERANCE = 10.0F / pow(10.0F, static_cast<float>(precision)); ASSERT_FALSE(lhs.empty()); ASSERT_EQ(lhs.back(), 's'); float lhs_v = std::stof(string{lhs, 0, lhs.find('s')}); ASSERT_NE(lhs.npos, lhs.find('.')); ASSERT_EQ(precision, lhs.find('s') - lhs.find('.') - 1); ASSERT_FALSE(rhs.empty()); ASSERT_EQ(rhs.back(), 's'); float rhs_v = std::stof(string{rhs, 0, rhs.find('s')}); EXPECT_NEAR(lhs_v, rhs_v, TOLERANCE); ASSERT_NE(rhs.npos, rhs.find('.')); EXPECT_EQ(precision, rhs.find('s') - rhs.find('.') - 1); } } TEST(TimeDurations, print) { float_format_eq("0.123456700s", to_string(std::chrono::duration_cast<ceph::timespan>(0.1234567s)), 9); float_format_eq("-0.123456700s", to_string(std::chrono::duration_cast<ceph::signedspan>(-0.1234567s)), 9); EXPECT_EQ("42s", to_string(42s)); float_format_eq("0.123000000s", to_string(123ms), 9); }
7,094
29.063559
87
cc
null
ceph-main/src/test/common/test_url_escape.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/url_escape.h" #include "gtest/gtest.h" TEST(url_escape, escape) { ASSERT_EQ(url_escape("foo bar"), std::string("foo%20bar")); ASSERT_EQ(url_escape("foo\nbar"), std::string("foo%0abar")); } TEST(url_escape, unescape) { ASSERT_EQ(url_unescape("foo%20bar"), std::string("foo bar")); ASSERT_EQ(url_unescape("foo%0abar"), std::string("foo\nbar")); ASSERT_EQ(url_unescape("%20"), std::string(" ")); ASSERT_EQ(url_unescape("\0%20"), std::string("\0 ")); ASSERT_EQ(url_unescape("\x01%20"), std::string("\x01 ")); } TEST(url_escape, all_chars) { std::string a; for (unsigned j=0; j<256; ++j) { a.push_back((char)j); } std::string b = url_escape(a); std::cout << "escaped: " << b << std::endl; ASSERT_EQ(a, url_unescape(b)); } TEST(url_escape, invalid) { ASSERT_THROW(url_unescape("foo%xx"), std::runtime_error); ASSERT_THROW(url_unescape("foo%%"), std::runtime_error); ASSERT_THROW(url_unescape("foo%"), std::runtime_error); ASSERT_THROW(url_unescape("foo%0"), std::runtime_error); }
1,134
29.675676
70
cc
null
ceph-main/src/test/common/test_util.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2011 New Dream Network * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License version 2, as published by the Free Software * Foundation. See file COPYING. * */ #include <filesystem> #include "gtest/gtest.h" #include "common/ceph_context.h" #include "include/util.h" using namespace std; namespace fs = std::filesystem; #if defined(__linux__) TEST(util, collect_sys_info) { if (!fs::exists("/etc/os-release")) { GTEST_SKIP() << "skipping as '/etc/os-release' does not exist"; } map<string, string> sys_info; CephContext *cct = (new CephContext(CEPH_ENTITY_TYPE_CLIENT))->get(); collect_sys_info(&sys_info, cct); ASSERT_TRUE(sys_info.find("distro") != sys_info.end()); ASSERT_TRUE(sys_info.find("distro_description") != sys_info.end()); cct->put(); } #endif
1,025
22.860465
71
cc
null
ceph-main/src/test/common/test_weighted_priority_queue.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "gtest/gtest.h" #include "common/Formatter.h" #include "common/WeightedPriorityQueue.h" #include <numeric> #include <vector> #include <map> #include <list> #include <tuple> #define CEPH_OP_CLASS_STRICT 0 #define CEPH_OP_CLASS_NORMAL 0 #define CEPH_OP_QUEUE_BACK 0 #define CEPH_OP_QUEUE_FRONT 0 class WeightedPriorityQueueTest : public testing::Test { protected: typedef unsigned Klass; // tuple<Prio, Klass, OpID> so that we can verfiy the op typedef std::tuple<unsigned, unsigned, unsigned> Item; typedef unsigned Prio; typedef unsigned Kost; typedef WeightedPriorityQueue<Item, Klass> WQ; // Simulate queue structure typedef std::list<std::pair<Kost, Item> > ItemList; typedef std::map<Klass, ItemList> KlassItem; typedef std::map<Prio, KlassItem> LQ; typedef std::list<Item> Removed; const unsigned max_prios = 5; // (0-4) * 64 const unsigned klasses = 37; // Make prime to help get good coverage void fill_queue(WQ &wq, LQ &strictq, LQ &normq, unsigned item_size, bool randomize = false) { unsigned p, k, c, o, op_queue, fob; for (unsigned i = 1; i <= item_size; ++i) { // Choose priority, class, cost and 'op' for this op. if (randomize) { p = (rand() % max_prios) * 64; k = rand() % klasses; c = rand() % (1<<22); // 4M cost // Make some of the costs 0, but make sure small costs // still work ok. if (c > (1<<19) && c < (1<<20)) { c = 0; } op_queue = rand() % 10; fob = rand() % 10; } else { p = (i % max_prios) * 64; k = i % klasses; c = (i % 8 == 0 || i % 16 == 0) ? 0 : 1 << (i % 23); op_queue = i % 7; // Use prime numbers to fob = i % 11; // get better coverage } o = rand() % (1<<16); // Choose how to enqueue this op. switch (op_queue) { case 6 : // Strict Queue if (fob == 4) { // Queue to the front. strictq[p][k].push_front(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue_strict_front(Klass(k), p, std::make_tuple(p, k, o)); } else { //Queue to the back. strictq[p][k].push_back(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue_strict(Klass(k), p, std::make_tuple(p, k, o)); } break; default: // Normal queue if (fob == 4) { // Queue to the front. normq[p][k].push_front(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue_front(Klass(k), p, c, std::make_tuple(p, k, o)); } else { //Queue to the back. normq[p][k].push_back(std::make_pair( c, std::make_tuple(p, k, o))); wq.enqueue(Klass(k), p, c, std::make_tuple(p, k, o)); } break; } } } void test_queue(unsigned item_size, bool randomize = false) { // Due to the WRR queue having a lot of probabilistic logic // we can't determine the exact order OPs will be dequeued. // However, the queue should not dequeue a priority out of // order. It should also dequeue the strict priority queue // first and in order. In both the strict and normal queues // push front and back should be respected. Here we keep // track of the ops queued and make sure they dequeue // correctly. // Set up local tracking queues WQ wq(0, 0); LQ strictq, normq; fill_queue(wq, strictq, normq, item_size, randomize); // Test that the queue is dequeuing properly. typedef std::map<unsigned, unsigned> LastKlass; LastKlass last_strict, last_norm; while (!(wq.empty())) { Item r = wq.dequeue(); if (!(strictq.empty())) { // Check that there are no higher priorities // in the strict queue. LQ::reverse_iterator ri = strictq.rbegin(); EXPECT_EQ(std::get<0>(r), ri->first); // Check that if there are multiple classes in a priority // that it is not dequeueing the same class each time. LastKlass::iterator si = last_strict.find(std::get<0>(r)); if (strictq[std::get<0>(r)].size() > 1 && si != last_strict.end()) { EXPECT_NE(std::get<1>(r), si->second); } last_strict[std::get<0>(r)] = std::get<1>(r); Item t = strictq[std::get<0>(r)][std::get<1>(r)].front().second; EXPECT_EQ(std::get<2>(r), std::get<2>(t)); strictq[std::get<0>(r)][std::get<1>(r)].pop_front(); if (strictq[std::get<0>(r)][std::get<1>(r)].empty()) { strictq[std::get<0>(r)].erase(std::get<1>(r)); } if (strictq[std::get<0>(r)].empty()) { strictq.erase(std::get<0>(r)); } } else { // Check that if there are multiple classes in a priority // that it is not dequeueing the same class each time. LastKlass::iterator si = last_norm.find(std::get<0>(r)); if (normq[std::get<0>(r)].size() > 1 && si != last_norm.end()) { EXPECT_NE(std::get<1>(r), si->second); } last_norm[std::get<0>(r)] = std::get<1>(r); Item t = normq[std::get<0>(r)][std::get<1>(r)].front().second; EXPECT_EQ(std::get<2>(r), std::get<2>(t)); normq[std::get<0>(r)][std::get<1>(r)].pop_front(); if (normq[std::get<0>(r)][std::get<1>(r)].empty()) { normq[std::get<0>(r)].erase(std::get<1>(r)); } if (normq[std::get<0>(r)].empty()) { normq.erase(std::get<0>(r)); } } } } void SetUp() override { srand(time(0)); } void TearDown() override { } }; TEST_F(WeightedPriorityQueueTest, wpq_size){ WQ wq(0, 0); EXPECT_TRUE(wq.empty()); EXPECT_EQ(0u, wq.get_size_slow()); // Test the strict queue size. for (unsigned i = 1; i < 5; ++i) { wq.enqueue_strict(Klass(i),i, std::make_tuple(i, i, i)); EXPECT_FALSE(wq.empty()); EXPECT_EQ(i, wq.get_size_slow()); } // Test the normal queue size. for (unsigned i = 5; i < 10; ++i) { wq.enqueue(Klass(i), i, i, std::make_tuple(i, i, i)); EXPECT_FALSE(wq.empty()); EXPECT_EQ(i, wq.get_size_slow()); } // Test that as both queues are emptied // the size is correct. for (unsigned i = 8; i >0; --i) { wq.dequeue(); EXPECT_FALSE(wq.empty()); EXPECT_EQ(i, wq.get_size_slow()); } wq.dequeue(); EXPECT_TRUE(wq.empty()); EXPECT_EQ(0u, wq.get_size_slow()); } TEST_F(WeightedPriorityQueueTest, wpq_test_static) { test_queue(1000); } TEST_F(WeightedPriorityQueueTest, wpq_test_random) { test_queue(rand() % 500 + 500, true); } TEST_F(WeightedPriorityQueueTest, wpq_test_remove_by_class_null) { WQ wq(0, 0); LQ strictq, normq; unsigned num_items = 10; fill_queue(wq, strictq, normq, num_items); Removed wq_removed; // Pick a klass that was not enqueued wq.remove_by_class(klasses + 1, &wq_removed); EXPECT_EQ(0u, wq_removed.size()); } TEST_F(WeightedPriorityQueueTest, wpq_test_remove_by_class) { WQ wq(0, 0); LQ strictq, normq; unsigned num_items = 1000; fill_queue(wq, strictq, normq, num_items); unsigned num_to_remove = 0; const Klass k = 5; // Find how many ops are in the class for (LQ::iterator it = strictq.begin(); it != strictq.end(); ++it) { num_to_remove += it->second[k].size(); } for (LQ::iterator it = normq.begin(); it != normq.end(); ++it) { num_to_remove += it->second[k].size(); } Removed wq_removed; wq.remove_by_class(k, &wq_removed); // Check that the right ops were removed. EXPECT_EQ(num_to_remove, wq_removed.size()); EXPECT_EQ(num_items - num_to_remove, wq.get_size_slow()); for (Removed::iterator it = wq_removed.begin(); it != wq_removed.end(); ++it) { EXPECT_EQ(k, std::get<1>(*it)); } // Check that none were missed while (!(wq.empty())) { EXPECT_NE(k, std::get<1>(wq.dequeue())); } }
7,795
31.348548
76
cc
null
ceph-main/src/test/common/test_xmlformatter.cc
#include "gtest/gtest.h" #include "common/Formatter.h" #include <sstream> #include <string> using namespace ceph; TEST(xmlformatter, oneline) { std::stringstream sout; XMLFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout); std::string cmp = "<integer>10</integer><float>10</float><string>string</string>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, multiline) { std::stringstream sout; XMLFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); std::string cmp = "" "<integer>10</integer><float>10</float><string>string</string>" "<integer>20</integer><float>20</float><string>string</string>"; formatter.flush(sout); EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, multiflush) { std::stringstream sout1; std::stringstream sout2; XMLFormatter formatter; formatter.dump_int("integer", 10); formatter.dump_float("float", 10.0); formatter.dump_string("string", "string"); formatter.flush(sout1); std::string cmp = "" "<integer>10</integer>" "<float>10</float>" "<string>string</string>"; EXPECT_EQ(cmp, sout1.str()); formatter.dump_int("integer", 20); formatter.dump_float("float", 20.0); formatter.dump_string("string", "string"); formatter.flush(sout2); cmp = "" "<integer>20</integer>" "<float>20</float>" "<string>string</string>"; EXPECT_EQ(cmp, sout2.str()); } TEST(xmlformatter, pretty) { std::stringstream sout; XMLFormatter formatter( true, // pretty false, // lowercased false); // underscored formatter.open_object_section("xml"); formatter.dump_int("Integer", 10); formatter.dump_float("Float", 10.0); formatter.dump_string("String", "String"); formatter.close_section(); formatter.flush(sout); std::string cmp = "" "<xml>\n" " <Integer>10</Integer>\n" " <Float>10</Float>\n" " <String>String</String>\n" "</xml>\n\n"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, lowercased) { std::stringstream sout; XMLFormatter formatter( false, // pretty true, // lowercased false); // underscored formatter.dump_int("Integer", 10); formatter.dump_float("Float", 10.0); formatter.dump_string("String", "String"); formatter.flush(sout); std::string cmp = "" "<integer>10</integer>" "<float>10</float>" "<string>String</string>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, underscored) { std::stringstream sout; XMLFormatter formatter( false, // pretty false, // lowercased true); // underscored formatter.dump_int("Integer Item", 10); formatter.dump_float("Float Item", 10.0); formatter.dump_string("String Item", "String"); formatter.flush(sout); std::string cmp = "" "<Integer_Item>10</Integer_Item>" "<Float_Item>10</Float_Item>" "<String_Item>String</String_Item>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, lowercased_underscored) { std::stringstream sout; XMLFormatter formatter( false, // pretty true, // lowercased true); // underscored formatter.dump_int("Integer Item", 10); formatter.dump_float("Float Item", 10.0); formatter.dump_string("String Item", "String"); formatter.flush(sout); std::string cmp = "" "<integer_item>10</integer_item>" "<float_item>10</float_item>" "<string_item>String</string_item>"; EXPECT_EQ(cmp, sout.str()); } TEST(xmlformatter, pretty_lowercased_underscored) { std::stringstream sout; XMLFormatter formatter( true, // pretty true, // lowercased true); // underscored formatter.dump_int("Integer Item", 10); formatter.dump_float("Float Item", 10.0); formatter.dump_string("String Item", "String"); formatter.flush(sout); std::string cmp = "" "<integer_item>10</integer_item>\n" "<float_item>10</float_item>\n" "<string_item>String</string_item>\n\n"; EXPECT_EQ(cmp, sout.str()); }
4,221
24.433735
84
cc
null
ceph-main/src/test/compressor/compressor_example.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Alyona Kiseleva <[email protected]> * * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #ifndef CEPH_COMPRESSOR_EXAMPLE_H #define CEPH_COMPRESSOR_EXAMPLE_H #include <unistd.h> #include <errno.h> #include <algorithm> #include <sstream> #include "crush/CrushWrapper.h" #include "osd/osd_types.h" #include "compressor/Compressor.h" class CompressorExample : public Compressor { public: CompressorExample() : Compressor(COMP_ALG_NONE, "example") {} ~CompressorExample() override {} int compress(const bufferlist &in, bufferlist &out, std::optional<int32_t> &compressor_message) override { out = in; return 0; } int decompress(const bufferlist &in, bufferlist &out, std::optional<int32_t> compressor_message) override { out = in; return 0; } int decompress(bufferlist::const_iterator &p, size_t compressed_len, bufferlist &out, std::optional<int32_t> compressor_message) override { p.copy(std::min<size_t>(p.get_remaining(), compressed_len), out); return 0; } }; #endif
1,442
25.722222
139
h
null
ceph-main/src/test/compressor/compressor_plugin_example.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Alyona Kiseleva <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <unistd.h> #include "ceph_ver.h" #include "compressor/CompressionPlugin.h" #include "compressor_example.h" using namespace std; class CompressorPluginExample : public CompressionPlugin { public: explicit CompressorPluginExample(CephContext* cct) : CompressionPlugin(cct) {} int factory(CompressorRef *cs, ostream *ss) override { if (compressor == 0) { CompressorExample *interface = new CompressorExample(); compressor = CompressorRef(interface); } *cs = compressor; return 0; } }; // ----------------------------------------------------------------------------- const char *__ceph_plugin_version() { return CEPH_GIT_NICE_VER; } // ----------------------------------------------------------------------------- int __ceph_plugin_init(CephContext *cct, const std::string& type, const std::string& name) { PluginRegistry *instance = cct->get_plugin_registry(); return instance->add(type, name, new CompressorPluginExample(cct)); }
1,555
24.933333
80
cc
null
ceph-main/src/test/compressor/test_compression.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 Mirantis, Inc. * * Author: Alyona Kiseleva <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <signal.h> #include <stdlib.h> #include "gtest/gtest.h" #include "common/ceph_context.h" #include "common/config.h" #include "compressor/Compressor.h" #include "compressor/CompressionPlugin.h" #include "global/global_context.h" #include "osd/OSDMap.h" using namespace std; class CompressorTest : public ::testing::Test, public ::testing::WithParamInterface<const char*> { public: std::string plugin; CompressorRef compressor; bool old_zlib_isal; CompressorTest() { // note for later old_zlib_isal = g_conf()->compressor_zlib_isal; plugin = GetParam(); size_t pos = plugin.find('/'); if (pos != std::string::npos) { string isal = plugin.substr(pos + 1); plugin = plugin.substr(0, pos); if (isal == "isal") { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); } else if (isal == "noisal") { g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); } else { ceph_abort_msg("bad option"); } } cout << "[plugin " << plugin << " (" << GetParam() << ")]" << std::endl; } ~CompressorTest() override { g_conf().set_val("compressor_zlib_isal", old_zlib_isal ? "true" : "false"); g_ceph_context->_conf.apply_changes(nullptr); } void SetUp() override { compressor = Compressor::create(g_ceph_context, plugin); ASSERT_TRUE(compressor); } void TearDown() override { compressor.reset(); } }; TEST_P(CompressorTest, load_plugin) { } TEST_P(CompressorTest, small_round_trip) { bufferlist orig; orig.append("This is a short string. There are many strings like it but this one is mine."); bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(orig, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } TEST_P(CompressorTest, big_round_trip_repeated) { unsigned len = 1048576 * 4; bufferlist orig; while (orig.length() < len) { orig.append("This is a short string. There are many strings like it but this one is mine."); } bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(orig, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } TEST_P(CompressorTest, big_round_trip_randomish) { unsigned len = 1048576 * 10;//269; bufferlist orig; const char *alphabet = "abcdefghijklmnopqrstuvwxyz"; if (false) { while (orig.length() < len) { orig.append(alphabet[rand() % 10]); } } else { bufferptr bp(len); char *p = bp.c_str(); for (unsigned i=0; i<len; ++i) { p[i] = alphabet[rand() % 10]; } orig.append(bp); } bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(orig, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } #if 0 TEST_P(CompressorTest, big_round_trip_file) { bufferlist orig; int fd = ::open("bin/ceph-osd", O_RDONLY); struct stat st; ::fstat(fd, &st); orig.read_fd(fd, st.st_size); bufferlist compressed; int r = compressor->compress(orig, compressed); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), orig.length()); ASSERT_TRUE(decompressed.contents_equal(orig)); cout << "orig " << orig.length() << " compressed " << compressed.length() << " with " << GetParam() << std::endl; } #endif TEST_P(CompressorTest, round_trip_osdmap) { #include "osdmaps/osdmap.2982809.h" auto compressor = Compressor::create(g_ceph_context, plugin); bufferlist orig; orig.append((char*)osdmap_a, sizeof(osdmap_a)); cout << "orig length " << orig.length() << std::endl; uint32_t size = 128*1024; OSDMap *o = new OSDMap; o->decode(orig); bufferlist fbl; o->encode(fbl, o->get_encoding_features() | CEPH_FEATURE_RESERVED); ASSERT_TRUE(fbl.contents_equal(orig)); for (int j = 0; j < 3; j++) { bufferlist chunk; uint32_t l = std::min(size, fbl.length() - j*size); chunk.substr_of(fbl, j*size, l); //fbl.rebuild(); bufferlist compressed; std::optional<int32_t> compressor_message; int r = compressor->compress(chunk, compressed, compressor_message); ASSERT_EQ(0, r); bufferlist decompressed; r = compressor->decompress(compressed, decompressed, compressor_message); ASSERT_EQ(0, r); ASSERT_EQ(decompressed.length(), chunk.length()); if (!decompressed.contents_equal(chunk)) { cout << "FAILED, orig bl was\n" << fbl << std::endl; ASSERT_TRUE(decompressed.contents_equal(chunk)); } cout << "chunk " << chunk.length() << " compressed " << compressed.length() << " decompressed " << decompressed.length() << " with " << plugin << std::endl; } delete o; } TEST_P(CompressorTest, compress_decompress) { const char* test = "This is test text"; int res; int len = strlen(test); bufferlist in, out; bufferlist after; bufferlist exp; in.append(test, len); std::optional<int32_t> compressor_message; res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); res = compressor->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); exp.append(test); EXPECT_TRUE(exp.contents_equal(after)); after.clear(); size_t compressed_len = out.length(); out.append_zero(12); auto it = out.cbegin(); res = compressor->decompress(it, compressed_len, after, compressor_message); EXPECT_EQ(res, 0); EXPECT_TRUE(exp.contents_equal(after)); //large block and non-begin iterator for continuous block std::string data; data.resize(0x10000 * 1); for(size_t i = 0; i < data.size(); i++) data[i] = i / 256; in.clear(); out.clear(); in.append(data); exp = in; res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); compressed_len = out.length(); out.append_zero(0x10000 - out.length()); after.clear(); out.c_str(); bufferlist prefix; prefix.append(string("some prefix")); size_t prefix_len = prefix.length(); prefix.claim_append(out); out.swap(prefix); it = out.cbegin(); it += prefix_len; res = compressor->decompress(it, compressed_len, after, compressor_message); EXPECT_EQ(res, 0); EXPECT_TRUE(exp.contents_equal(after)); } TEST_P(CompressorTest, sharded_input_decompress) { const size_t small_prefix_size=3; string test(128*1024,0); int len = test.size(); bufferlist in, out; in.append(test.c_str(), len); std::optional<int32_t> compressor_message; int res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); EXPECT_GT(out.length(), small_prefix_size); bufferlist out2, tmp; tmp.substr_of(out, 0, small_prefix_size ); out2.append( tmp ); size_t left = out.length()-small_prefix_size; size_t offs = small_prefix_size; while( left > 0 ){ size_t shard_size = std::min<size_t>(2048, left); tmp.substr_of(out, offs, shard_size ); out2.append( tmp ); left -= shard_size; offs += shard_size; } bufferlist after; res = compressor->decompress(out2, after, compressor_message); EXPECT_EQ(res, 0); } void test_compress(CompressorRef compressor, size_t size) { char* data = (char*) malloc(size); for (size_t t = 0; t < size; t++) { data[t] = (t & 0xff) | (t >> 8); } bufferlist in; in.append(data, size); for (size_t t = 0; t < 10000; t++) { bufferlist out; std::optional<int32_t> compressor_message; int res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); } free(data); } void test_decompress(CompressorRef compressor, size_t size) { char* data = (char*) malloc(size); for (size_t t = 0; t < size; t++) { data[t] = (t & 0xff) | (t >> 8); } bufferlist in, out; in.append(data, size); std::optional<int32_t> compressor_message; int res = compressor->compress(in, out, compressor_message); EXPECT_EQ(res, 0); for (size_t t = 0; t < 10000; t++) { bufferlist out_dec; int res = compressor->decompress(out, out_dec, compressor_message); EXPECT_EQ(res, 0); } free(data); } TEST_P(CompressorTest, compress_1024) { test_compress(compressor, 1024); } TEST_P(CompressorTest, compress_2048) { test_compress(compressor, 2048); } TEST_P(CompressorTest, compress_4096) { test_compress(compressor, 4096); } TEST_P(CompressorTest, compress_8192) { test_compress(compressor, 8192); } TEST_P(CompressorTest, compress_16384) { test_compress(compressor, 16384); } TEST_P(CompressorTest, decompress_1024) { test_decompress(compressor, 1024); } TEST_P(CompressorTest, decompress_2048) { test_decompress(compressor, 2048); } TEST_P(CompressorTest, decompress_4096) { test_decompress(compressor, 4096); } TEST_P(CompressorTest, decompress_8192) { test_decompress(compressor, 8192); } TEST_P(CompressorTest, decompress_16384) { test_decompress(compressor, 16384); } INSTANTIATE_TEST_SUITE_P( Compressor, CompressorTest, ::testing::Values( #ifdef HAVE_LZ4 "lz4", #endif #if defined(__x86_64__) || defined(__aarch64__) "zlib/isal", #endif "zlib/noisal", "snappy", #ifdef HAVE_BROTLI "brotli", #endif "zstd")); #if defined(__x86_64__) || defined(__aarch64__) TEST(ZlibCompressor, zlib_isal_compatibility) { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef isal = Compressor::create(g_ceph_context, "zlib"); if (!isal) { // skip the test if the plugin is not ready return; } g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef zlib = Compressor::create(g_ceph_context, "zlib"); char test[101]; srand(time(0)); for (int i=0; i<100; ++i) test[i] = 'a' + rand()%26; test[100] = '\0'; int len = strlen(test); bufferlist in, out; in.append(test, len); // isal -> zlib std::optional<int32_t> compressor_message; int res = isal->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = zlib->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(static_cast<char*>(test)); EXPECT_TRUE(exp.contents_equal(after)); after.clear(); out.clear(); exp.clear(); // zlib -> isal res = zlib->compress(in, out, compressor_message); EXPECT_EQ(res, 0); res = isal->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); exp.append(static_cast<char*>(test)); EXPECT_TRUE(exp.contents_equal(after)); } #endif TEST(CompressionPlugin, all) { CompressorRef compressor; PluginRegistry *reg = g_ceph_context->get_plugin_registry(); EXPECT_TRUE(reg); CompressionPlugin *factory = dynamic_cast<CompressionPlugin*>(reg->get_with_load("compressor", "invalid")); EXPECT_FALSE(factory); factory = dynamic_cast<CompressionPlugin*>(reg->get_with_load("compressor", "example")); ASSERT_TRUE(factory); stringstream ss; EXPECT_EQ(0, factory->factory(&compressor, &ss)); EXPECT_TRUE(compressor.get()); { std::lock_guard l(reg->lock); EXPECT_EQ(-ENOENT, reg->remove("compressor", "does not exist")); EXPECT_EQ(0, reg->remove("compressor", "example")); EXPECT_EQ(0, reg->load("compressor", "example")); } } #if defined(__x86_64__) || defined(__aarch64__) TEST(ZlibCompressor, isal_compress_zlib_decompress_random) { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef isal = Compressor::create(g_ceph_context, "zlib"); if (!isal) { // skip the test if the plugin is not ready return; } g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef zlib = Compressor::create(g_ceph_context, "zlib"); for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; char test[size]; for (int i=0; i<size; ++i) test[i] = rand()%256; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = isal->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = zlib->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } TEST(ZlibCompressor, isal_compress_zlib_decompress_walk) { g_conf().set_val("compressor_zlib_isal", "true"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef isal = Compressor::create(g_ceph_context, "zlib"); if (!isal) { // skip the test if the plugin is not ready return; } g_conf().set_val("compressor_zlib_isal", "false"); g_ceph_context->_conf.apply_changes(nullptr); CompressorRef zlib = Compressor::create(g_ceph_context, "zlib"); for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; int range = 1; char test[size]; test[0] = rand()%256; for (int i=1; i<size; ++i) test[i] = test[i-1] + rand()%(range*2+1) - range; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = isal->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = zlib->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } #endif // __x86_64__ #ifdef HAVE_QATZIP TEST(QAT, enc_qat_dec_noqat) { #ifdef HAVE_LZ4 const char* alg_collection[] = {"zlib", "lz4", "snappy"}; #else const char* alg_collection[] = {"zlib", "snappy"}; #endif for (auto alg : alg_collection) { g_conf().set_val("qat_compressor_enabled", "true"); CompressorRef q = Compressor::create(g_ceph_context, alg); g_conf().set_val("qat_compressor_enabled", "false"); CompressorRef noq = Compressor::create(g_ceph_context, alg); // generate random buffer for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; char test[size]; for (int i=0; i<size; ++i) test[i] = rand()%256; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = q->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = noq->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } } TEST(QAT, enc_noqat_dec_qat) { #ifdef HAVE_LZ4 const char* alg_collection[] = {"zlib", "lz4", "snappy"}; #else const char* alg_collection[] = {"zlib", "snappy"}; #endif for (auto alg : alg_collection) { g_conf().set_val("qat_compressor_enabled", "true"); CompressorRef q = Compressor::create(g_ceph_context, alg); g_conf().set_val("qat_compressor_enabled", "false"); CompressorRef noq = Compressor::create(g_ceph_context, alg); // generate random buffer for (int cnt=0; cnt<100; cnt++) { srand(cnt + 1000); int log2 = (rand()%18) + 1; int size = (rand() % (1 << log2)) + 1; char test[size]; for (int i=0; i<size; ++i) test[i] = rand()%256; bufferlist in, out; in.append(test, size); std::optional<int32_t> compressor_message; int res = noq->compress(in, out, compressor_message); EXPECT_EQ(res, 0); bufferlist after; res = q->decompress(out, after, compressor_message); EXPECT_EQ(res, 0); bufferlist exp; exp.append(test, size); EXPECT_TRUE(exp.contents_equal(after)); } } } #endif // HAVE_QATZIP
17,393
27.375204
109
cc
null
ceph-main/src/test/compressor/osdmaps/osdmap.2982809.h
unsigned char osdmap_a[] = { 0x8,0x7,0xdf,0x56,0x9,0x0,0x7,0x1,0x91,0x47,0x5,0x0,0xb4,0xf4,0x63,0xa0, 0xc6,0x71,0x43,0xa8,0xbd,0x36,0xe4,0xa,0xb8,0xd2,0x33,0xd2,0x99,0x83,0x2d,0x0, 0x6d,0x34,0x16,0x52,0xe8,0x59,0x97,0x1c,0xa,0x4d,0x4e,0x5e,0x13,0x5c,0x3b,0x35, 0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x20,0xe, 0x0,0x0,0x1,0x3,0x0,0x2,0x0,0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x83,0x2d,0x0,0x76,0x4a,0x1,0x0,0x0,0x0, 0x0,0x0,0x40,0x83,0x2d,0x0,0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1e, 0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x28, 0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x39, 0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x53, 0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x6d, 0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x71, 0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x72, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x72, 0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x7a, 0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x7b, 0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x7d, 0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x7e, 0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x81, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x81, 0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x86, 0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x87, 0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x88, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x91, 0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x92, 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x94, 0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x95, 0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x95, 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x95, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x97, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x99, 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x9a, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x9b, 0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x9b, 0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x9d, 0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x9f, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x9f, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xa3, 0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa4, 0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xa6, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xa6, 0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xa7, 0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xa7, 0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xa8, 0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xa9, 0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xae, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xb0, 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xb0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xb1, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xb2, 0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xb2, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xb3, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xb6, 0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xbb, 0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xbb, 0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xbc, 0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xbf, 0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xc0, 0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xc0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xc2, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xc6, 0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xc7, 0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xd7, 0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xe1, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xe1, 0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xe5, 0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xe5, 0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xe5, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xe8, 0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xe9, 0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xec, 0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xee, 0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xee, 0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xf0, 0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xf0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xf0, 0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xf1, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xf1, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2, 0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xf2, 0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xf4, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xf7, 0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xf7, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xf9, 0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xfa, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xfb, 0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0xad,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x3, 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x3, 0x1,0x0,0x0,0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x5, 0x1,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x7, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x7, 0x1,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x8, 0x1,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x8, 0x1,0x0,0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x9, 0x1,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x9, 0x1,0x0,0x0,0x0,0x0,0x0,0x73,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xa, 0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xa, 0x1,0x0,0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc, 0x1,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xc, 0x1,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xd, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xd, 0x1,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xe, 0x1,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xe, 0x1,0x0,0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xf, 0x1,0x0,0x0,0x0,0x0,0x0,0x91,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x12, 0x1,0x0,0x0,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x14, 0x1,0x0,0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x15, 0x1,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x16, 0x1,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x17, 0x1,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x18, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x19, 0x1,0x0,0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x1a, 0x1,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x1b, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x1b, 0x1,0x0,0x0,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x1d, 0x1,0x0,0x0,0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1f, 0x1,0x0,0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1f, 0x1,0x0,0x0,0x0,0x0,0x0,0x32,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x21, 0x1,0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x23, 0x1,0x0,0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x24, 0x1,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x26, 0x1,0x0,0x0,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x27, 0x1,0x0,0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x28, 0x1,0x0,0x0,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x2a, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2a, 0x1,0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x2a, 0x1,0x0,0x0,0x0,0x0,0x0,0x74,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x30, 0x1,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x30, 0x1,0x0,0x0,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x32, 0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x32, 0x1,0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x35, 0x1,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x36, 0x1,0x0,0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x38, 0x1,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x38, 0x1,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x39, 0x1,0x0,0x0,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3c, 0x1,0x0,0x0,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x3d, 0x1,0x0,0x0,0x0,0x0,0x0,0x7d,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x42, 0x1,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x42, 0x1,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x42, 0x1,0x0,0x0,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x43, 0x1,0x0,0x0,0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x45, 0x1,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x45, 0x1,0x0,0x0,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x48, 0x1,0x0,0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x4a, 0x1,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,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,0x0, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,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,0xfa,0x21,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x27,0x9,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x34, 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x15,0x41,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x42,0x41,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x42,0x41,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0x0,0x0,0x0,0x72,0x62,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x10,0xda,0x0,0x0, 0x1,0x3,0x0,0x2,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x90,0x83,0x2d,0x0,0x98,0xbc,0x22,0x0,0x0,0x0,0x0,0x0, 0x90,0x83,0x2d,0x0,0x0,0x0,0x0,0x0,0x8f,0xd,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xee,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x2,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x15,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0xd3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1e,0x0,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1e,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x20,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x21,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x22,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x23,0x0,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x24,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x26,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x27,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x28,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x28,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x28,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x29,0x0,0x0, 0x0,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x2a,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x2b,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x2c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x2e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x2f,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2f,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x2f,0x0,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x30,0x0,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x31,0x0,0x0, 0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x35,0x0,0x0, 0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x36,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x36,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x36,0x0,0x0, 0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x38,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x38,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x38,0x0,0x0, 0x0,0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3a,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3c,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3c,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x3d,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3e,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3e,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3f,0x0,0x0, 0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x40,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x41,0x0,0x0, 0x0,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x43,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x44,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x48,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x4d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x4d,0x0,0x0, 0x0,0x0,0x0,0x0,0xbc,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x56,0x0,0x0, 0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x56,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x56,0x0,0x0, 0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x57,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x57,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5b,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x5d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x5d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x60,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x60,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x67,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0xed,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x6a,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x6a,0x0,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x99,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x6d,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x6e,0x0,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x6e,0x0,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x70,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x72,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x72,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x73,0x0,0x0, 0x0,0x0,0x0,0x0,0x86,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x75,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x76,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x77,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x77,0x0,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x78,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x79,0x0,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x79,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x7a,0x0,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x7a,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x7b,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x7c,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x7d,0x0,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x7e,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x7e,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7f,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x7f,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x80,0x0,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x81,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x82,0x0,0x0, 0x0,0x0,0x0,0x0,0x65,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x87,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x90,0x0,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x90,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x91,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x92,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x92,0x0,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x92,0x0,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x93,0x0,0x0, 0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x95,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x96,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x96,0x0,0x0, 0x0,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x98,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x99,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x99,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x9b,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x9b,0x0,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x9b,0x0,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x9c,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x9d,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x9d,0x0,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x9e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x9e,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x9e,0x0,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x9f,0x0,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xa0,0x0,0x0, 0x0,0x0,0x0,0x0,0xba,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xa2,0x0,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xa2,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xa2,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xa3,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xa3,0x0,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xa4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xa5,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xa5,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xa5,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xab,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xab,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xac,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xac,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xac,0x0,0x0, 0x0,0x0,0x0,0x0,0xcd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xae,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xaf,0x0,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xb0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xb1,0x0,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xb2,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xb2,0x0,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xb2,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xb3,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xb6,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb8,0x0,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xb8,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xb9,0x0,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xb9,0x0,0x0, 0x0,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xbb,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xbf,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xbf,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xc1,0x0,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xc1,0x0,0x0, 0x0,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xc4,0x0,0x0, 0x0,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x8e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0xdc,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xdc,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xdc,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x3e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xe1,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xe1,0x0,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xe9,0x0,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xe9,0x0,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xea,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xeb,0x0,0x0, 0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xeb,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xec,0x0,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xed,0x0,0x0, 0x0,0x0,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xf1,0x0,0x0, 0x0,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xf5,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xf6,0x0,0x0, 0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xf6,0x0,0x0, 0x0,0x0,0x0,0x0,0x89,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xfe,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xfe,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1,0x1,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2,0x1,0x0, 0x0,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3,0x1,0x0, 0x0,0x0,0x0,0x0,0x25,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xa,0x1,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xb,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xb,0x1,0x0, 0x0,0x0,0x0,0x0,0x33,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xe,0x1,0x0, 0x0,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x10,0x1,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x11,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x13,0x1,0x0, 0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x14,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x16,0x1,0x0, 0x0,0x0,0x0,0x0,0xd9,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1c,0x1,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x1d,0x1,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x1e,0x1,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1f,0x1,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x1f,0x1,0x0, 0x0,0x0,0x0,0x0,0x76,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x22,0x1,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x22,0x1,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x22,0x1,0x0, 0x0,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x24,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x24,0x1,0x0, 0x0,0x0,0x0,0x0,0x96,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x31,0x1,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x33,0x1,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x34,0x1,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x34,0x1,0x0, 0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x35,0x1,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x36,0x1,0x0, 0x0,0x0,0x0,0x0,0xeb,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x3e,0x1,0x0, 0x0,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x43,0x1,0x0, 0x0,0x0,0x0,0x0,0x8b,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x50,0x1,0x0, 0x0,0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x53,0x1,0x0, 0x0,0x0,0x0,0x0,0x24,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x54,0x1,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x54,0x1,0x0, 0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x55,0x1,0x0, 0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x58,0x1,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x58,0x1,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x59,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x63,0x1,0x0, 0x0,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x66,0x1,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x66,0x1,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x66,0x1,0x0, 0x0,0x0,0x0,0x0,0x8b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x68,0x1,0x0, 0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x69,0x1,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x69,0x1,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x6a,0x1,0x0, 0x0,0x0,0x0,0x0,0xa,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x71,0x1,0x0, 0x0,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x74,0x1,0x0, 0x0,0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x77,0x1,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x77,0x1,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x77,0x1,0x0, 0x0,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x7a,0x1,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x7b,0x1,0x0, 0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x7e,0x1,0x0, 0x0,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x83,0x1,0x0, 0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x84,0x1,0x0, 0x0,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x86,0x1,0x0, 0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x89,0x1,0x0, 0x0,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x8d,0x1,0x0, 0x0,0x0,0x0,0x0,0x70,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x91,0x1,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x91,0x1,0x0, 0x0,0x0,0x0,0x0,0xb2,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x9c,0x1,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x9d,0x1,0x0, 0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x9f,0x1,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x9f,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x9f,0x1,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xa0,0x1,0x0, 0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xa1,0x1,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xa1,0x1,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xa1,0x1,0x0, 0x0,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xa4,0x1,0x0, 0x0,0x0,0x0,0x0,0x9a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xa7,0x1,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xa8,0x1,0x0, 0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xa9,0x1,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xaa,0x1,0x0, 0x0,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xab,0x1,0x0, 0x0,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0xad,0x1,0x0, 0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xb0,0x1,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xb0,0x1,0x0, 0x0,0x0,0x0,0x0,0x7b,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xb8,0x1,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xb8,0x1,0x0, 0x0,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xbb,0x1,0x0, 0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xbd,0x1,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xbe,0x1,0x0, 0x0,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xc0,0x1,0x0, 0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xc1,0x1,0x0, 0x0,0x0,0x0,0x0,0x91,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xc5,0x1,0x0, 0x0,0x0,0x0,0x0,0x2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xcd,0x1,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xcd,0x1,0x0, 0x0,0x0,0x0,0x0,0x35,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xd5,0x1,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xd6,0x1,0x0, 0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0xd6,0x1,0x0, 0x0,0x0,0x0,0x0,0x57,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xe0,0x1,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xe2,0x1,0x0, 0x0,0x0,0x0,0x0,0x3d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0xe4,0x1,0x0, 0x0,0x0,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xe6,0x1,0x0, 0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xe9,0x1,0x0, 0x0,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xea,0x1,0x0, 0x0,0x0,0x0,0x0,0x43,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xf0,0x1,0x0, 0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xf3,0x1,0x0, 0x0,0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xf4,0x1,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xf5,0x1,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xf5,0x1,0x0, 0x0,0x0,0x0,0x0,0xdf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xf8,0x1,0x0, 0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xfa,0x1,0x0, 0x0,0x0,0x0,0x0,0x9d,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x5,0x2,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x5,0x2,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x6,0x2,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x6,0x2,0x0, 0x0,0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x8,0x2,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x8,0x2,0x0, 0x0,0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xa,0x2,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xb,0x2,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xb,0x2,0x0, 0x0,0x0,0x0,0x0,0xfa,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x11,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x11,0x2,0x0, 0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x14,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x17,0x2,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x18,0x2,0x0, 0x0,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x19,0x2,0x0, 0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1e,0x2,0x0, 0x0,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x22,0x2,0x0, 0x0,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x24,0x2,0x0, 0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x25,0x2,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x25,0x2,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x26,0x2,0x0, 0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x27,0x2,0x0, 0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x28,0x2,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x29,0x2,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x29,0x2,0x0, 0x0,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x2a,0x2,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x2b,0x2,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x2b,0x2,0x0, 0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x2e,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2f,0x2,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x30,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x30,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x30,0x2,0x0, 0x0,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x31,0x2,0x0, 0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x37,0x2,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x37,0x2,0x0, 0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x38,0x2,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x39,0x2,0x0, 0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3a,0x2,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3a,0x2,0x0, 0x0,0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x3c,0x2,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3d,0x2,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x3e,0x2,0x0, 0x0,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x42,0x2,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x43,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x46,0x2,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x46,0x2,0x0, 0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x47,0x2,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x47,0x2,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x48,0x2,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x48,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x48,0x2,0x0, 0x0,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x49,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x49,0x2,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x49,0x2,0x0, 0x0,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x4c,0x2,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x4d,0x2,0x0, 0x0,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x4e,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x4e,0x2,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x4e,0x2,0x0, 0x0,0x0,0x0,0x0,0xc3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x53,0x2,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x53,0x2,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x53,0x2,0x0, 0x0,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x55,0x2,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x55,0x2,0x0, 0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x56,0x2,0x0, 0x0,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x5b,0x2,0x0, 0x0,0x0,0x0,0x0,0xb5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x5d,0x2,0x0, 0x0,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x5f,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x60,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x60,0x2,0x0, 0x0,0x0,0x0,0x0,0xb7,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x67,0x2,0x0, 0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x68,0x2,0x0, 0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x6a,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6a,0x2,0x0, 0x0,0x0,0x0,0x0,0x41,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x74,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x74,0x2,0x0, 0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x75,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x75,0x2,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x75,0x2,0x0, 0x0,0x0,0x0,0x0,0x73,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x77,0x2,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x77,0x2,0x0, 0x0,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x79,0x2,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x79,0x2,0x0, 0x0,0x0,0x0,0x0,0x8f,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x7f,0x2,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x80,0x2,0x0, 0x0,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x82,0x2,0x0, 0x0,0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x85,0x2,0x0, 0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x85,0x2,0x0, 0x0,0x0,0x0,0x0,0x40,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x87,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x89,0x2,0x0, 0x0,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x8a,0x2,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x8a,0x2,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x8a,0x2,0x0, 0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x8b,0x2,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x8c,0x2,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x8c,0x2,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x8c,0x2,0x0, 0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x8d,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x8d,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x8d,0x2,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x8e,0x2,0x0, 0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8f,0x2,0x0, 0x0,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x90,0x2,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x90,0x2,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x91,0x2,0x0, 0x0,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x91,0x2,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x92,0x2,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x93,0x2,0x0, 0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x96,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x96,0x2,0x0, 0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x9a,0x2,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x9b,0x2,0x0, 0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x9d,0x2,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x9e,0x2,0x0, 0x0,0x0,0x0,0x0,0x73,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xa9,0x2,0x0, 0x0,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xac,0x2,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xad,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xaf,0x2,0x0, 0x0,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xb0,0x2,0x0, 0x0,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xb2,0x2,0x0, 0x0,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xb6,0x2,0x0, 0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xb7,0x2,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb7,0x2,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xb8,0x2,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xb9,0x2,0x0, 0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xba,0x2,0x0, 0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xbc,0x2,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xbc,0x2,0x0, 0x0,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xc1,0x2,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xc2,0x2,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xc3,0x2,0x0, 0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc6,0x2,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xc6,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xc6,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xc7,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xc7,0x2,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xc7,0x2,0x0, 0x0,0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xc8,0x2,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xc9,0x2,0x0, 0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xca,0x2,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xcb,0x2,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xcc,0x2,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xcc,0x2,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xcd,0x2,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xce,0x2,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xcf,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xcf,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xcf,0x2,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xd0,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xd0,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xd1,0x2,0x0, 0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xd3,0x2,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xd3,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xd3,0x2,0x0, 0x0,0x0,0x0,0x0,0xe8,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0xd6,0x2,0x0, 0x0,0x0,0x0,0x0,0x72,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xd7,0x2,0x0, 0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xd8,0x2,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xda,0x2,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xda,0x2,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xdb,0x2,0x0, 0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xdc,0x2,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xdd,0x2,0x0, 0x0,0x0,0x0,0x0,0xce,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xdf,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xdf,0x2,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xdf,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xe0,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xe1,0x2,0x0, 0x0,0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xe3,0x2,0x0, 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xe4,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xe5,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xe6,0x2,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xe7,0x2,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xe8,0x2,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xe9,0x2,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xea,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xea,0x2,0x0, 0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xec,0x2,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xed,0x2,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xed,0x2,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xee,0x2,0x0, 0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xef,0x2,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xf0,0x2,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0xf0,0x2,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf0,0x2,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xf1,0x2,0x0, 0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xf1,0x2,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xf2,0x2,0x0, 0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xf3,0x2,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xf4,0x2,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xf4,0x2,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xf5,0x2,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xf6,0x2,0x0, 0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xf8,0x2,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xf8,0x2,0x0, 0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xfa,0x2,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xfa,0x2,0x0, 0x0,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xfc,0x2,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xfc,0x2,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xfc,0x2,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xfd,0x2,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xfd,0x2,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xfd,0x2,0x0, 0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xfe,0x2,0x0, 0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xfe,0x2,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xff,0x2,0x0, 0x0,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1,0x3,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x3,0x0, 0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x6,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x3,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x7,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x7,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x8,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x9,0x3,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xa,0x3,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xb,0x3,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xd,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xd,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xd,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xe,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xe,0x3,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xf,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x10,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x10,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x10,0x3,0x0, 0x0,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x11,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x12,0x3,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x13,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x13,0x3,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x14,0x3,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x14,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x14,0x3,0x0, 0x0,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x16,0x3,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x17,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x17,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x17,0x3,0x0, 0x0,0x0,0x0,0x0,0x61,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1b,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1b,0x3,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x1b,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x3,0x0, 0x0,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1e,0x3,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x1e,0x3,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x1f,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x20,0x3,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x20,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x20,0x3,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x21,0x3,0x0, 0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x24,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x24,0x3,0x0, 0x0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x25,0x3,0x0, 0x0,0x0,0x0,0x0,0xa5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x27,0x3,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x28,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x29,0x3,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x2a,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x2b,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x2b,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2b,0x3,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x2c,0x3,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2d,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x2d,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2d,0x3,0x0, 0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x2e,0x3,0x0, 0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2f,0x3,0x0, 0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x2f,0x3,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2f,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x30,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x31,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x31,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x31,0x3,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x32,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x33,0x3,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x33,0x3,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x34,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x36,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x36,0x3,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x36,0x3,0x0, 0x0,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x37,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x37,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x37,0x3,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x38,0x3,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x39,0x3,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x39,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x3a,0x3,0x0, 0x0,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3b,0x3,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x3b,0x3,0x0, 0x0,0x0,0x0,0x0,0x79,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x3e,0x3,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3e,0x3,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3e,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0x3,0x0, 0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x3f,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x3f,0x3,0x0, 0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x41,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x41,0x3,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x41,0x3,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x42,0x3,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x43,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x43,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x43,0x3,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x45,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x45,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x45,0x3,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x46,0x3,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x47,0x3,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x47,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x47,0x3,0x0, 0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x4a,0x3,0x0, 0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x4e,0x3,0x0, 0x0,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x4f,0x3,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x50,0x3,0x0, 0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x53,0x3,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x54,0x3,0x0, 0x0,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x56,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x56,0x3,0x0, 0x0,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x58,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x58,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x59,0x3,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x59,0x3,0x0, 0x0,0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x5a,0x3,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x5b,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x5c,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x5d,0x3,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x3,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x5e,0x3,0x0, 0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x5f,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x5f,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x60,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x60,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x60,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x61,0x3,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x61,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x61,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x63,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x63,0x3,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x64,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x65,0x3,0x0, 0x0,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x3,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x67,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x67,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x68,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x68,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x68,0x3,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x69,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x69,0x3,0x0, 0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x6a,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x6a,0x3,0x0, 0x0,0x0,0x0,0x0,0xad,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x6b,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x6c,0x3,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x6c,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x6c,0x3,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x6d,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x6d,0x3,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x6d,0x3,0x0, 0x0,0x0,0x0,0x0,0x35,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x73,0x3,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x73,0x3,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x74,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x74,0x3,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x74,0x3,0x0, 0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x77,0x3,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x78,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x79,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x79,0x3,0x0, 0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7a,0x3,0x0, 0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x7d,0x3,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x3,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x7e,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7f,0x3,0x0, 0x0,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x80,0x3,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x81,0x3,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x81,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x81,0x3,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x82,0x3,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x83,0x3,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x84,0x3,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x84,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x84,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x85,0x3,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x85,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x85,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x86,0x3,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x86,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x86,0x3,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x87,0x3,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x87,0x3,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x87,0x3,0x0, 0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x8a,0x3,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x8a,0x3,0x0, 0x0,0x0,0x0,0x0,0x61,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x8c,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x90,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x92,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x95,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x95,0x3,0x0, 0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x96,0x3,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x98,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x99,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x9a,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x9a,0x3,0x0, 0x0,0x0,0x0,0x0,0xc9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x9c,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x9d,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x9d,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x9d,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x9e,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x9e,0x3,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x9f,0x3,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x9f,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xa0,0x3,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xa1,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xa1,0x3,0x0, 0x0,0x0,0x0,0x0,0x3b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xa2,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xa5,0x3,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xa5,0x3,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xa6,0x3,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xa7,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xa7,0x3,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xa9,0x3,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xaa,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xaa,0x3,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xaa,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xab,0x3,0x0, 0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xac,0x3,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xad,0x3,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xae,0x3,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xaf,0x3,0x0, 0x0,0x0,0x0,0x0,0x27,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xb1,0x3,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xb1,0x3,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xb2,0x3,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xb3,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xb4,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xb4,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xb5,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xb6,0x3,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xb6,0x3,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xb6,0x3,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xb7,0x3,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xb8,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xb8,0x3,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xb8,0x3,0x0, 0x0,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xba,0x3,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xbb,0x3,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xbc,0x3,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xbd,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xbe,0x3,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xbe,0x3,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xbe,0x3,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xbf,0x3,0x0, 0x0,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xc0,0x3,0x0, 0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xc2,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xc3,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xc4,0x3,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xc6,0x3,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xc6,0x3,0x0, 0x0,0x0,0x0,0x0,0x52,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xc7,0x3,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xc7,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xc7,0x3,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xc8,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc8,0x3,0x0, 0x0,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xca,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xca,0x3,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xca,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xcb,0x3,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xcc,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xcc,0x3,0x0, 0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xce,0x3,0x0, 0x0,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xcf,0x3,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xcf,0x3,0x0, 0x0,0x0,0x0,0x0,0x49,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xd2,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xd2,0x3,0x0, 0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xd3,0x3,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xd3,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xd4,0x3,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xd4,0x3,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd4,0x3,0x0, 0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xd6,0x3,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xd6,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xd7,0x3,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xd8,0x3,0x0, 0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xdb,0x3,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xdb,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xdd,0x3,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xde,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xde,0x3,0x0, 0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xdf,0x3,0x0, 0x0,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xe1,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xe1,0x3,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xe1,0x3,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xe2,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xe2,0x3,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0xe2,0x3,0x0, 0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xe3,0x3,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xe5,0x3,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xe5,0x3,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xe6,0x3,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xe6,0x3,0x0, 0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xe8,0x3,0x0, 0x0,0x0,0x0,0x0,0x53,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xe9,0x3,0x0, 0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xec,0x3,0x0, 0x0,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xec,0x3,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xed,0x3,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0xee,0x3,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xef,0x3,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xf0,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xf0,0x3,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xf0,0x3,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xf1,0x3,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xf2,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xf3,0x3,0x0, 0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xf5,0x3,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xf5,0x3,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xf5,0x3,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf6,0x3,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xf7,0x3,0x0, 0x0,0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xfb,0x3,0x0, 0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xfd,0x3,0x0, 0x0,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x2,0x4,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x3,0x4,0x0, 0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x4,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x4,0x4,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x5,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x6,0x4,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x6,0x4,0x0, 0x0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7,0x4,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x7,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7,0x4,0x0, 0x0,0x0,0x0,0x0,0xad,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x9,0x4,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x9,0x4,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xa,0x4,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xb,0x4,0x0, 0x0,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc,0x4,0x0, 0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xd,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xd,0x4,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe,0x4,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xf,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x10,0x4,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x10,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x10,0x4,0x0, 0x0,0x0,0x0,0x0,0xa3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x12,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x13,0x4,0x0, 0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x14,0x4,0x0, 0x0,0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x17,0x4,0x0, 0x0,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x18,0x4,0x0, 0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1a,0x4,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1b,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1b,0x4,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1b,0x4,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1c,0x4,0x0, 0x0,0x0,0x0,0x0,0x6b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x1e,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x1e,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x1e,0x4,0x0, 0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x1f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1f,0x4,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x20,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x20,0x4,0x0, 0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x22,0x4,0x0, 0x0,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x25,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x25,0x4,0x0, 0x0,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x27,0x4,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x28,0x4,0x0, 0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x29,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x29,0x4,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2a,0x4,0x0, 0x0,0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x2c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x2d,0x4,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x2e,0x4,0x0, 0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x30,0x4,0x0, 0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x30,0x4,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x31,0x4,0x0, 0x0,0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x32,0x4,0x0, 0x0,0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x34,0x4,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x34,0x4,0x0, 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x34,0x4,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x35,0x4,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x36,0x4,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x36,0x4,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x36,0x4,0x0, 0x0,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x38,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x38,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x38,0x4,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x39,0x4,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x39,0x4,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3a,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x3a,0x4,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x3b,0x4,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x3b,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x3c,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3c,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x3c,0x4,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x3d,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x3d,0x4,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3e,0x4,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x3e,0x4,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x3f,0x4,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3f,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3f,0x4,0x0, 0x0,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x41,0x4,0x0, 0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x42,0x4,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x43,0x4,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x43,0x4,0x0, 0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x44,0x4,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x44,0x4,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x45,0x4,0x0, 0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x47,0x4,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x47,0x4,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x48,0x4,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x49,0x4,0x0, 0x0,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x4a,0x4,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x4a,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x4a,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x4b,0x4,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x4c,0x4,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x4d,0x4,0x0, 0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x4f,0x4,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x50,0x4,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x51,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x53,0x4,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x54,0x4,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x54,0x4,0x0, 0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x54,0x4,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x55,0x4,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x55,0x4,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x55,0x4,0x0, 0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x56,0x4,0x0, 0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x5b,0x4,0x0, 0x0,0x0,0x0,0x0,0xb7,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x62,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x73,0x4,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x74,0x4,0x0, 0x0,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x77,0x4,0x0, 0x0,0x0,0x0,0x0,0x3d,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x7f,0x4,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x9d,0x4,0x0, 0x0,0x0,0x0,0x0,0xb4,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xa6,0x4,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xa6,0x4,0x0, 0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xa8,0x4,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa8,0x4,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xa8,0x4,0x0, 0x0,0x0,0x0,0x0,0x82,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xb5,0x4,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xb5,0x4,0x0, 0x0,0x0,0x0,0x0,0xd1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xb9,0x4,0x0, 0x0,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xbd,0x4,0x0, 0x0,0x0,0x0,0x0,0xd2,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xee,0x4,0x0, 0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xee,0x4,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xee,0x4,0x0, 0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf1,0x4,0x0, 0x0,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xf3,0x4,0x0, 0x0,0x0,0x0,0x0,0xb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xf8,0x4,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xf8,0x4,0x0, 0x0,0x0,0x0,0x0,0x41,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xfe,0x4,0x0, 0x0,0x0,0x0,0x0,0x31,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x10,0x5,0x0, 0x0,0x0,0x0,0x0,0x1c,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x23,0x5,0x0, 0x0,0x0,0x0,0x0,0x7b,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x2f,0x5,0x0, 0x0,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x33,0x5,0x0, 0x0,0x0,0x0,0x0,0x81,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x45,0x5,0x0, 0x0,0x0,0x0,0x0,0xd2,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x6c,0x5,0x0, 0x0,0x0,0x0,0x0,0x1a,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xad,0x5,0x0, 0x0,0x0,0x0,0x0,0x4e,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1b,0x6,0x0, 0x0,0x0,0x0,0x0,0x96,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x2e,0x6,0x0, 0x0,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x30,0x6,0x0, 0x0,0x0,0x0,0x0,0x60,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x37,0x6,0x0, 0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x38,0x6,0x0, 0x0,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x39,0x6,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x39,0x6,0x0, 0x0,0x0,0x0,0x0,0xd6,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x5b,0x6,0x0, 0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x60,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x60,0x6,0x0, 0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x61,0x6,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x62,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x62,0x6,0x0, 0x0,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x64,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x64,0x6,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x64,0x6,0x0, 0x0,0x0,0x0,0x0,0x86,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x6c,0x6,0x0, 0x0,0x0,0x0,0x0,0xc8,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x76,0x6,0x0, 0x0,0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x78,0x6,0x0, 0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x79,0x6,0x0, 0x0,0x0,0x0,0x0,0x10,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x80,0x6,0x0, 0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x82,0x6,0x0, 0x0,0x0,0x0,0x0,0xab,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x8d,0x6,0x0, 0x0,0x0,0x0,0x0,0x3c,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xa9,0x6,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xaa,0x6,0x0, 0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xae,0x6,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xae,0x6,0x0, 0x0,0x0,0x0,0x0,0x6b,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xb8,0x6,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xb8,0x6,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xb8,0x6,0x0, 0x0,0x0,0x0,0x0,0xa2,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xc2,0x6,0x0, 0x0,0x0,0x0,0x0,0x31,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xca,0x6,0x0, 0x0,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xcb,0x6,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xcc,0x6,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xcc,0x6,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xcc,0x6,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xcd,0x6,0x0, 0x0,0x0,0x0,0x0,0x44,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xf0,0x6,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xf0,0x6,0x0, 0x0,0x0,0x0,0x0,0x3e,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xf7,0x6,0x0, 0x0,0x0,0x0,0x0,0x88,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1,0x7,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x7,0x0, 0x0,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x2,0x7,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x7,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x3,0x7,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x7,0x0, 0x0,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x5,0x7,0x0, 0x0,0x0,0x0,0x0,0x7,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xb,0x7,0x0, 0x0,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xd,0x7,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xd,0x7,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xd,0x7,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xe,0x7,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2b,0x7,0x0, 0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x2d,0x7,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2e,0x7,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2e,0x7,0x0, 0x0,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x34,0x7,0x0, 0x0,0x0,0x0,0x0,0xf1,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x43,0x7,0x0, 0x0,0x0,0x0,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x4b,0x7,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x4b,0x7,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x4c,0x7,0x0, 0x0,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x4e,0x7,0x0, 0x0,0x0,0x0,0x0,0xf9,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x60,0x7,0x0, 0x0,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x62,0x7,0x0, 0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x63,0x7,0x0, 0x0,0x0,0x0,0x0,0x85,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x69,0x7,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x69,0x7,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x69,0x7,0x0, 0x0,0x0,0x0,0x0,0x39,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x70,0x7,0x0, 0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x71,0x7,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x71,0x7,0x0, 0x0,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x76,0x7,0x0, 0x0,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x78,0x7,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x78,0x7,0x0, 0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x79,0x7,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x79,0x7,0x0, 0x0,0x0,0x0,0x0,0x8e,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x7f,0x7,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x80,0x7,0x0, 0x0,0x0,0x0,0x0,0x75,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x95,0x7,0x0, 0x0,0x0,0x0,0x0,0x92,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x97,0x7,0x0, 0x0,0x0,0x0,0x0,0xf7,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xa3,0x7,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xa4,0x7,0x0, 0x0,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xa5,0x7,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x7,0x0, 0x0,0x0,0x0,0x0,0x8b,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xac,0x7,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xac,0x7,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xac,0x7,0x0, 0x0,0x0,0x0,0x0,0x4e,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xba,0x7,0x0, 0x0,0x0,0x0,0x0,0x6a,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc2,0x7,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc3,0x7,0x0, 0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xc6,0x7,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xe3,0x7,0x0, 0x0,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xe4,0x7,0x0, 0x0,0x0,0x0,0x0,0xef,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xee,0x7,0x0, 0x0,0x0,0x0,0x0,0xb0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xf8,0x7,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xf8,0x7,0x0, 0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf9,0x7,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xf9,0x7,0x0, 0x0,0x0,0x0,0x0,0x97,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1,0x8,0x0, 0x0,0x0,0x0,0x0,0xa5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x3,0x8,0x0, 0x0,0x0,0x0,0x0,0x5e,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xc,0x8,0x0, 0x0,0x0,0x0,0x0,0x65,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x2b,0x8,0x0, 0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2d,0x8,0x0, 0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x2e,0x8,0x0, 0x0,0x0,0x0,0x0,0xc8,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x36,0x8,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x36,0x8,0x0, 0x0,0x0,0x0,0x0,0x78,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x42,0x8,0x0, 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x42,0x8,0x0, 0x0,0x0,0x0,0x0,0xad,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x58,0x8,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x58,0x8,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x58,0x8,0x0, 0x0,0x0,0x0,0x0,0x52,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x65,0x8,0x0, 0x0,0x0,0x0,0x0,0x27,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x6b,0x8,0x0, 0x0,0x0,0x0,0x0,0x45,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x76,0x8,0x0, 0x0,0x0,0x0,0x0,0x45,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x80,0x8,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x80,0x8,0x0, 0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x82,0x8,0x0, 0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x84,0x8,0x0, 0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x86,0x8,0x0, 0x0,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x8b,0x8,0x0, 0x0,0x0,0x0,0x0,0x43,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x97,0x8,0x0, 0x0,0x0,0x0,0x0,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xa0,0x8,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa1,0x8,0x0, 0x0,0x0,0x0,0x0,0xf,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xb7,0x8,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xb7,0x8,0x0, 0x0,0x0,0x0,0x0,0xcb,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xbf,0x8,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xc0,0x8,0x0, 0x0,0x0,0x0,0x0,0xd5,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x8,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0xca,0x8,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xcb,0x8,0x0, 0x0,0x0,0x0,0x0,0x4f,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xd5,0x8,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xd5,0x8,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xd6,0x8,0x0, 0x0,0x0,0x0,0x0,0x8f,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xdd,0x8,0x0, 0x0,0x0,0x0,0x0,0xdc,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xe6,0x8,0x0, 0x0,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xeb,0x8,0x0, 0x0,0x0,0x0,0x0,0xe7,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x9,0x9,0x0, 0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xc,0x9,0x0, 0x0,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x11,0x9,0x0, 0x0,0x0,0x0,0x0,0xd,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x1f,0x9,0x0, 0x0,0x0,0x0,0x0,0x44,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x2b,0x9,0x0, 0x0,0x0,0x0,0x0,0xd5,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x51,0x9,0x0, 0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x52,0x9,0x0, 0x0,0x0,0x0,0x0,0x40,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x6b,0x9,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x6b,0x9,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x6b,0x9,0x0, 0x0,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x70,0x9,0x0, 0x0,0x0,0x0,0x0,0xe8,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x77,0x9,0x0, 0x0,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x79,0x9,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x7a,0x9,0x0, 0x0,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x7f,0x9,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x7f,0x9,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x7f,0x9,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x80,0x9,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x80,0x9,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x80,0x9,0x0, 0x0,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x82,0x9,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x82,0x9,0x0, 0x0,0x0,0x0,0x0,0x4e,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x8c,0x9,0x0, 0x0,0x0,0x0,0x0,0x6a,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xb7,0x9,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xb8,0x9,0x0, 0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xba,0x9,0x0, 0x0,0x0,0x0,0x0,0xb4,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xc6,0x9,0x0, 0x0,0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xc8,0x9,0x0, 0x0,0x0,0x0,0x0,0x72,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xf2,0x9,0x0, 0x0,0x0,0x0,0x0,0x2e,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xff,0x9,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x0,0xa,0x0, 0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x2,0xa,0x0, 0x0,0x0,0x0,0x0,0xa7,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xb,0xa,0x0, 0x0,0x0,0x0,0x0,0xd5,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x16,0xa,0x0, 0x0,0x0,0x0,0x0,0x9b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x53,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x39,0xa,0x0, 0x0,0x0,0x0,0x0,0x8e,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x47,0xa,0x0, 0x0,0x0,0x0,0x0,0xa2,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x4e,0xa,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x4f,0xa,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x4f,0xa,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x50,0xa,0x0, 0x0,0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x55,0xa,0x0, 0x0,0x0,0x0,0x0,0xdb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5b,0xa,0x0, 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x5b,0xa,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x5b,0xa,0x0, 0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x5e,0xa,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x5f,0xa,0x0, 0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x62,0xa,0x0, 0x0,0x0,0x0,0x0,0x84,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x71,0xa,0x0, 0x0,0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x75,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x78,0xa,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x79,0xa,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x79,0xa,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x79,0xa,0x0, 0x0,0x0,0x0,0x0,0x53,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x7f,0xa,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x80,0xa,0x0, 0x0,0x0,0x0,0x0,0xc4,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x8b,0xa,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x8c,0xa,0x0, 0x0,0x0,0x0,0x0,0x68,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x8e,0xa,0x0, 0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x8f,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x8f,0xa,0x0, 0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x91,0xa,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x92,0xa,0x0, 0x0,0x0,0x0,0x0,0xc4,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x9e,0xa,0x0, 0x0,0x0,0x0,0x0,0xca,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xa1,0xa,0x0, 0x0,0x0,0x0,0x0,0x16,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xaa,0xa,0x0, 0x0,0x0,0x0,0x0,0x7d,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xb4,0xa,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xb4,0xa,0x0, 0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xb6,0xa,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xb7,0xa,0x0, 0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xb9,0xa,0x0, 0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xba,0xa,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xba,0xa,0x0, 0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xbc,0xa,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xbd,0xa,0x0, 0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xbe,0xa,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xbe,0xa,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xbf,0xa,0x0, 0x0,0x0,0x0,0x0,0x3c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xc3,0xa,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xc3,0xa,0x0, 0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xc5,0xa,0x0, 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xc6,0xa,0x0, 0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xc8,0xa,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xc9,0xa,0x0, 0x0,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xca,0xa,0x0, 0x0,0x0,0x0,0x0,0x82,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xcd,0xa,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xcd,0xa,0x0, 0x0,0x0,0x0,0x0,0x4a,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xd7,0xa,0x0, 0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xd8,0xa,0x0, 0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xd9,0xa,0x0, 0x0,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xdb,0xa,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xdc,0xa,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xdc,0xa,0x0, 0x0,0x0,0x0,0x0,0xf7,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xe5,0xa,0x0, 0x0,0x0,0x0,0x0,0xc9,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xfb,0xa,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xfc,0xa,0x0, 0x0,0x0,0x0,0x0,0x81,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x13,0xb,0x0, 0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x14,0xb,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x14,0xb,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x15,0xb,0x0, 0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x16,0xb,0x0, 0x0,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x17,0xb,0x0, 0x0,0x0,0x0,0x0,0x74,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x1d,0xb,0x0, 0x0,0x0,0x0,0x0,0x8c,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2b,0xb,0x0, 0x0,0x0,0x0,0x0,0xc8,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x46,0xb,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x47,0xb,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x48,0xb,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x49,0xb,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x4a,0xb,0x0, 0x0,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x4a,0xb,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x4a,0xb,0x0, 0x0,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x4b,0xb,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x4b,0xb,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x4b,0xb,0x0, 0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x4e,0xb,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x4f,0xb,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x4f,0xb,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x4f,0xb,0x0, 0x0,0x0,0x0,0x0,0xab,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x53,0xb,0x0, 0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x53,0xb,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x53,0xb,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x54,0xb,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x55,0xb,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x56,0xb,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x57,0xb,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x58,0xb,0x0, 0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x5a,0xb,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x5b,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x5e,0xb,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x5e,0xb,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x5e,0xb,0x0, 0x0,0x0,0x0,0x0,0x44,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x60,0xb,0x0, 0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x61,0xb,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x62,0xb,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x63,0xb,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x64,0xb,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x65,0xb,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x65,0xb,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x65,0xb,0x0, 0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x69,0xb,0x0, 0x0,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x6c,0xb,0x0, 0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x6d,0xb,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6e,0xb,0x0, 0x0,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x6f,0xb,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x70,0xb,0x0, 0x0,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x71,0xb,0x0, 0x0,0x0,0x0,0x0,0xfb,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x83,0xb,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x83,0xb,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x83,0xb,0x0, 0x0,0x0,0x0,0x0,0xcf,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x90,0xb,0x0, 0x0,0x0,0x0,0x0,0x66,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x9b,0xb,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x9b,0xb,0x0, 0x0,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x9c,0xb,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x9c,0xb,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x9d,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x9d,0xb,0x0, 0x0,0x0,0x0,0x0,0xdf,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xa4,0xb,0x0, 0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xa4,0xb,0x0, 0x0,0x0,0x0,0x0,0x7d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xa7,0xb,0x0, 0x0,0x0,0x0,0x0,0x58,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xb0,0xb,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xb1,0xb,0x0, 0x0,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xb2,0xb,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0xb3,0xb,0x0, 0x0,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xb5,0xb,0x0, 0x0,0x0,0x0,0x0,0x53,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xbb,0xb,0x0, 0x0,0x0,0x0,0x0,0x32,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xc1,0xb,0x0, 0x0,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xc6,0xb,0x0, 0x0,0x0,0x0,0x0,0x45,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xcf,0xb,0x0, 0x0,0x0,0x0,0x0,0xc5,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xf8,0xb,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xf8,0xb,0x0, 0x0,0x0,0x0,0x0,0x2d,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x21,0xc,0x0, 0x0,0x0,0x0,0x0,0x1f,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x43,0xc,0x0, 0x0,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x49,0xc,0x0, 0x0,0x0,0x0,0x0,0x34,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x57,0xc,0x0, 0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x58,0xc,0x0, 0x0,0x0,0x0,0x0,0xa1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x61,0xc,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x62,0xc,0x0, 0x0,0x0,0x0,0x0,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x6c,0xc,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x6c,0xc,0x0, 0x0,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x6e,0xc,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x6f,0xc,0x0, 0x0,0x0,0x0,0x0,0x22,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x7a,0xc,0x0, 0x0,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x7c,0xc,0x0, 0x0,0x0,0x0,0x0,0x45,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xa0,0xc,0x0, 0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xa0,0xc,0x0, 0x0,0x0,0x0,0x0,0xda,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xad,0xc,0x0, 0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xaf,0xc,0x0, 0x0,0x0,0x0,0x0,0x95,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xb5,0xc,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xb5,0xc,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xb6,0xc,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xb6,0xc,0x0, 0x0,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xb9,0xc,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xb9,0xc,0x0, 0x0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xba,0xc,0x0, 0x0,0x0,0x0,0x0,0xa1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xbf,0xc,0x0, 0x0,0x0,0x0,0x0,0xdf,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xc5,0xc,0x0, 0x0,0x0,0x0,0x0,0xfa,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xd4,0xc,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xd5,0xc,0x0, 0x0,0x0,0x0,0x0,0x3,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xf7,0xc,0x0, 0x0,0x0,0x0,0x0,0x9d,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x5,0xd,0x0, 0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x8,0xd,0x0, 0x0,0x0,0x0,0x0,0xe1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x11,0xd,0x0, 0x0,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x14,0xd,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x14,0xd,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x14,0xd,0x0, 0x0,0x0,0x0,0x0,0x1b,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1e,0xd,0x0, 0x0,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x21,0xd,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x21,0xd,0x0, 0x0,0x0,0x0,0x0,0xb4,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x2e,0xd,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x2e,0xd,0x0, 0x0,0x0,0x0,0x0,0xa,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x5d,0xd,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x5e,0xd,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5e,0xd,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x5e,0xd,0x0, 0x0,0x0,0x0,0x0,0xb1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x60,0xd,0x0, 0x0,0x0,0x0,0x0,0xb5,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x82,0xd,0x0, 0x0,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x84,0xd,0x0, 0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x85,0xd,0x0, 0x0,0x0,0x0,0x0,0x6c,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xa7,0xd,0x0, 0x0,0x0,0x0,0x0,0xed,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xab,0xd,0x0, 0x0,0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xaf,0xd,0x0, 0x0,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xb4,0xd,0x0, 0x0,0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xb5,0xd,0x0, 0x0,0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xb7,0xd,0x0, 0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xb8,0xd,0x0, 0x0,0x0,0x0,0x0,0x25,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xc3,0xd,0x0, 0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xc3,0xd,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0xc3,0xd,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xc4,0xd,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xc4,0xd,0x0, 0x0,0x0,0x0,0x0,0x78,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xd2,0xd,0x0, 0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xd3,0xd,0x0, 0x0,0x0,0x0,0x0,0xc9,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xdb,0xd,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xdb,0xd,0x0, 0x0,0x0,0x0,0x0,0xed,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xdd,0xd,0x0, 0x0,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xdd,0xd,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xde,0xd,0x0, 0x0,0x0,0x0,0x0,0x27,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xf5,0xd,0x0, 0x0,0x0,0x0,0x0,0x6d,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x1,0xe,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x2,0xe,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3,0xe,0x0, 0x0,0x0,0x0,0x0,0xab,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x4,0xe,0x0, 0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x6,0xe,0x0, 0x0,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x8,0xe,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x8,0xe,0x0, 0x0,0x0,0x0,0x0,0xdb,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x10,0xe,0x0, 0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x11,0xe,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x12,0xe,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x12,0xe,0x0, 0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x14,0xe,0x0, 0x0,0x0,0x0,0x0,0xbb,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x1b,0xe,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1b,0xe,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1b,0xe,0x0, 0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1d,0xe,0x0, 0x0,0x0,0x0,0x0,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x20,0xe,0x0, 0x0,0x0,0x0,0x0,0xc,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x27,0xe,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x27,0xe,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x27,0xe,0x0, 0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x28,0xe,0x0, 0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x29,0xe,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x29,0xe,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x2b,0xe,0x0, 0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x2c,0xe,0x0, 0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2c,0xe,0x0, 0x0,0x0,0x0,0x0,0x22,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x36,0xe,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x36,0xe,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x37,0xe,0x0, 0x0,0x0,0x0,0x0,0x86,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x43,0xe,0x0, 0x0,0x0,0x0,0x0,0x45,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x5b,0xe,0x0, 0x0,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xe,0x0, 0x0,0x0,0x0,0x0,0x9c,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x67,0xe,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x68,0xe,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x68,0xe,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6a,0xe,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x6a,0xe,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x6a,0xe,0x0, 0x0,0x0,0x0,0x0,0x73,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x73,0xe,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x73,0xe,0x0, 0x0,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x75,0xe,0x0, 0x0,0x0,0x0,0x0,0x73,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x80,0xe,0x0, 0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x82,0xe,0x0, 0x0,0x0,0x0,0x0,0x64,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x8c,0xe,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x8c,0xe,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x8c,0xe,0x0, 0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x8f,0xe,0x0, 0x0,0x0,0x0,0x0,0xe5,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xb4,0xe,0x0, 0x0,0x0,0x0,0x0,0xbd,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xcc,0xe,0x0, 0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xcc,0xe,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xce,0xe,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xce,0xe,0x0, 0x0,0x0,0x0,0x0,0xe4,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xdf,0xe,0x0, 0x0,0x0,0x0,0x0,0xdd,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xe5,0xe,0x0, 0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xe7,0xe,0x0, 0x0,0x0,0x0,0x0,0xa4,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xfe,0xe,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xfe,0xe,0x0, 0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xfe,0xe,0x0, 0x0,0x0,0x0,0x0,0xe3,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xb,0xf,0x0, 0x0,0x0,0x0,0x0,0x8f,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x15,0xf,0x0, 0x0,0x0,0x0,0x0,0x9f,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x24,0xf,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x25,0xf,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x25,0xf,0x0, 0x0,0x0,0x0,0x0,0x45,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x30,0xf,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x30,0xf,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x31,0xf,0x0, 0x0,0x0,0x0,0x0,0x71,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x5a,0xf,0x0, 0x0,0x0,0x0,0x0,0xe1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x64,0xf,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x64,0xf,0x0, 0x0,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x68,0xf,0x0, 0x0,0x0,0x0,0x0,0x9a,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x6e,0xf,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x6e,0xf,0x0, 0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x6f,0xf,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x70,0xf,0x0, 0x0,0x0,0x0,0x0,0x5c,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x7a,0xf,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x7a,0xf,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x7a,0xf,0x0, 0x0,0x0,0x0,0x0,0xac,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xbb,0xf,0x0, 0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xbc,0xf,0x0, 0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xbd,0xf,0x0, 0x0,0x0,0x0,0x0,0x30,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xc6,0xf,0x0, 0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xc9,0xf,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xc9,0xf,0x0, 0x0,0x0,0x0,0x0,0xa7,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xe1,0xf,0x0, 0x0,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xe2,0xf,0x0, 0x0,0x0,0x0,0x0,0x7f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xe4,0xf,0x0, 0x0,0x0,0x0,0x0,0x57,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x8,0x10,0x0, 0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x9,0x10,0x0, 0x0,0x0,0x0,0x0,0xd7,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x16,0x10,0x0, 0x0,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x17,0x10,0x0, 0x0,0x0,0x0,0x0,0xaf,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x20,0x10,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x20,0x10,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x20,0x10,0x0, 0x0,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x22,0x10,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x22,0x10,0x0, 0x0,0x0,0x0,0x0,0xcb,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3b,0x10,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x3b,0x10,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x3b,0x10,0x0, 0x0,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x3f,0x10,0x0, 0x0,0x0,0x0,0x0,0x2f,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x6d,0x10,0x0, 0x0,0x0,0x0,0x0,0x9c,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x74,0x10,0x0, 0x0,0x0,0x0,0x0,0x4d,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x7e,0x10,0x0, 0x0,0x0,0x0,0x0,0x8e,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x87,0x10,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x87,0x10,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x87,0x10,0x0, 0x0,0x0,0x0,0x0,0xe6,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x93,0x10,0x0, 0x0,0x0,0x0,0x0,0x10,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xa1,0x10,0x0, 0x0,0x0,0x0,0x0,0x65,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xba,0x10,0x0, 0x0,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xbd,0x10,0x0, 0x0,0x0,0x0,0x0,0x8d,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xc7,0x10,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xc7,0x10,0x0, 0x0,0x0,0x0,0x0,0xb4,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xd5,0x10,0x0, 0x0,0x0,0x0,0x0,0xc1,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xf0,0x10,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0x10,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xe,0x11,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xe,0x11,0x0, 0x0,0x0,0x0,0x0,0xd7,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x17,0x11,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x17,0x11,0x0, 0x0,0x0,0x0,0x0,0x17,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x22,0x11,0x0, 0x0,0x0,0x0,0x0,0x2e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x26,0x11,0x0, 0x0,0x0,0x0,0x0,0xb2,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x2e,0x11,0x0, 0x0,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x32,0x11,0x0, 0x0,0x0,0x0,0x0,0x3b,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x3b,0x11,0x0, 0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x3d,0x11,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3d,0x11,0x0, 0x0,0x0,0x0,0x0,0xe0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x48,0x11,0x0, 0x0,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x4a,0x11,0x0, 0x0,0x0,0x0,0x0,0xb9,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x52,0x11,0x0, 0x0,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x57,0x11,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x58,0x11,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x58,0x11,0x0, 0x0,0x0,0x0,0x0,0xa3,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x63,0x11,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x63,0x11,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x64,0x11,0x0, 0x0,0x0,0x0,0x0,0xb3,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x6e,0x11,0x0, 0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x6f,0x11,0x0, 0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x70,0x11,0x0, 0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x71,0x11,0x0, 0x0,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x73,0x11,0x0, 0x0,0x0,0x0,0x0,0xed,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x7a,0x11,0x0, 0x0,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x7c,0x11,0x0, 0x0,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x7e,0x11,0x0, 0x0,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x84,0x11,0x0, 0x0,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x87,0x11,0x0, 0x0,0x0,0x0,0x0,0x5b,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x91,0x11,0x0, 0x0,0x0,0x0,0x0,0x8,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xc7,0x11,0x0, 0x0,0x0,0x0,0x0,0xd2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xd0,0x11,0x0, 0x0,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0xd4,0x11,0x0, 0x0,0x0,0x0,0x0,0x7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xd7,0x11,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xd7,0x11,0x0, 0x0,0x0,0x0,0x0,0x30,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xeb,0x11,0x0, 0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xed,0x11,0x0, 0x0,0x0,0x0,0x0,0xef,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xf1,0x11,0x0, 0x0,0x0,0x0,0x0,0xc2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf9,0x11,0x0, 0x0,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xfc,0x11,0x0, 0x0,0x0,0x0,0x0,0xeb,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x22,0x12,0x0, 0x0,0x0,0x0,0x0,0x82,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x27,0x12,0x0, 0x0,0x0,0x0,0x0,0x21,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x3c,0x12,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x3c,0x12,0x0, 0x0,0x0,0x0,0x0,0xb1,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x71,0x12,0x0, 0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x73,0x12,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x73,0x12,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x74,0x12,0x0, 0x0,0x0,0x0,0x0,0xaa,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x7c,0x12,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x7d,0x12,0x0, 0x0,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x80,0x12,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x80,0x12,0x0, 0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x80,0x12,0x0, 0x0,0x0,0x0,0x0,0x3c,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x89,0x12,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x89,0x12,0x0, 0x0,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x8b,0x12,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x8b,0x12,0x0, 0x0,0x0,0x0,0x0,0x94,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x98,0x12,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x99,0x12,0x0, 0x0,0x0,0x0,0x0,0xd6,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xa7,0x12,0x0, 0x0,0x0,0x0,0x0,0x99,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xca,0x12,0x0, 0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xcb,0x12,0x0, 0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xcc,0x12,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xcc,0x12,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0xcd,0x12,0x0, 0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xce,0x12,0x0, 0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x12,0x0, 0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xd0,0x12,0x0, 0x0,0x0,0x0,0x0,0x9d,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xd8,0x12,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xda,0x12,0x0, 0x0,0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xdd,0x12,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xdd,0x12,0x0, 0x0,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xdf,0x12,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xe0,0x12,0x0, 0x0,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xe5,0x12,0x0, 0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xe6,0x12,0x0, 0x0,0x0,0x0,0x0,0x8b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xe9,0x12,0x0, 0x0,0x0,0x0,0x0,0xf8,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xf3,0x12,0x0, 0x0,0x0,0x0,0x0,0x6,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x13,0x0, 0x0,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x1,0x13,0x0, 0x0,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x3,0x13,0x0, 0x0,0x0,0x0,0x0,0x5f,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x21,0x13,0x0, 0x0,0x0,0x0,0x0,0x43,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x28,0x13,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x29,0x13,0x0, 0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x2a,0x13,0x0, 0x0,0x0,0x0,0x0,0xc9,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x35,0x13,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x37,0x13,0x0, 0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x38,0x13,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x38,0x13,0x0, 0x0,0x0,0x0,0x0,0xa9,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x41,0x13,0x0, 0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x42,0x13,0x0, 0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x43,0x13,0x0, 0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x44,0x13,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x44,0x13,0x0, 0x0,0x0,0x0,0x0,0x74,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x4f,0x13,0x0, 0x0,0x0,0x0,0x0,0x74,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x83,0x13,0x0, 0x0,0x0,0x0,0x0,0xb8,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x92,0x13,0x0, 0x0,0x0,0x0,0x0,0xe5,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x9f,0x13,0x0, 0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xa3,0x13,0x0, 0x0,0x0,0x0,0x0,0x35,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xbb,0x13,0x0, 0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xbe,0x13,0x0, 0x0,0x0,0x0,0x0,0xd9,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xe3,0x13,0x0, 0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xe7,0x13,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xe7,0x13,0x0, 0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xe7,0x13,0x0, 0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xe8,0x13,0x0, 0x0,0x0,0x0,0x0,0x6e,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xf0,0x13,0x0, 0x0,0x0,0x0,0x0,0xef,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x14,0x0, 0x0,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3,0x14,0x0, 0x0,0x0,0x0,0x0,0x7d,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x11,0x14,0x0, 0x0,0x0,0x0,0x0,0xae,0xee,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x0,0x15,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x0,0x15,0x0, 0x0,0x0,0x0,0x0,0xb3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x2,0x15,0x0, 0x0,0x0,0x0,0x0,0x97,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x1b,0x15,0x0, 0x0,0x0,0x0,0x0,0x59,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x26,0x15,0x0, 0x0,0x0,0x0,0x0,0x7a,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x40,0x15,0x0, 0x0,0x0,0x0,0x0,0x7a,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x5a,0x15,0x0, 0x0,0x0,0x0,0x0,0x64,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x69,0x15,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x6a,0x15,0x0, 0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x6a,0x15,0x0, 0x0,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x6b,0x15,0x0, 0x0,0x0,0x0,0x0,0x9,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x83,0x15,0x0, 0x0,0x0,0x0,0x0,0x7d,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x8f,0x15,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x90,0x15,0x0, 0x0,0x0,0x0,0x0,0x13,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xb9,0x15,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xb9,0x15,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xb9,0x15,0x0, 0x0,0x0,0x0,0x0,0xe1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0xc3,0x15,0x0, 0x0,0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xc6,0x15,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xc6,0x15,0x0, 0x0,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xc7,0x15,0x0, 0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xc8,0x15,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xc8,0x15,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xc9,0x15,0x0, 0x0,0x0,0x0,0x0,0xe0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0xd1,0x15,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xd1,0x15,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0xd2,0x15,0x0, 0x0,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xd3,0x15,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd4,0x15,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xd4,0x15,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xd4,0x15,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xd5,0x15,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xd5,0x15,0x0, 0x0,0x0,0x0,0x0,0xb8,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xdd,0x15,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xdd,0x15,0x0, 0x0,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xe0,0x15,0x0, 0x0,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe0,0x15,0x0, 0x0,0x0,0x0,0x0,0x94,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xe8,0x15,0x0, 0x0,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xec,0x15,0x0, 0x0,0x0,0x0,0x0,0x84,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x14,0x16,0x0, 0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x17,0x16,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x17,0x16,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x18,0x16,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x18,0x16,0x0, 0x0,0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1b,0x16,0x0, 0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1e,0x16,0x0, 0x0,0x0,0x0,0x0,0x6b,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x25,0x16,0x0, 0x0,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x29,0x16,0x0, 0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2a,0x16,0x0, 0x0,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x2c,0x16,0x0, 0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x2d,0x16,0x0, 0x0,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x2e,0x16,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2f,0x16,0x0, 0x0,0x0,0x0,0x0,0x8f,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x6c,0x16,0x0, 0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x6c,0x16,0x0, 0x0,0x0,0x0,0x0,0xc3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x6e,0x16,0x0, 0x0,0x0,0x0,0x0,0x22,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x78,0x16,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x78,0x16,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x79,0x16,0x0, 0x0,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x7a,0x16,0x0, 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x7b,0x16,0x0, 0x0,0x0,0x0,0x0,0xa5,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x94,0x16,0x0, 0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x95,0x16,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x95,0x16,0x0, 0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x96,0x16,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x96,0x16,0x0, 0x0,0x0,0x0,0x0,0xc3,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xa0,0x16,0x0, 0x0,0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xa1,0x16,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xa3,0x16,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xa3,0x16,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xa3,0x16,0x0, 0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xa6,0x16,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xa6,0x16,0x0, 0x0,0x0,0x0,0x0,0xdd,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xd5,0x16,0x0, 0x0,0x0,0x0,0x0,0x58,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xe3,0x16,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xe3,0x16,0x0, 0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0xe3,0x16,0x0, 0x0,0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xe5,0x16,0x0, 0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xe6,0x16,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xe6,0x16,0x0, 0x0,0x0,0x0,0x0,0xf0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xed,0x16,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xee,0x16,0x0, 0x0,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xef,0x16,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xf0,0x16,0x0, 0x0,0x0,0x0,0x0,0xbe,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xf9,0x16,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf9,0x16,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xf9,0x16,0x0, 0x0,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xfd,0x16,0x0, 0x0,0x0,0x0,0x0,0xd,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x1d,0x17,0x0, 0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x1d,0x17,0x0, 0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x1e,0x17,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1f,0x17,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1f,0x17,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x1f,0x17,0x0, 0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x20,0x17,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x21,0x17,0x0, 0x0,0x0,0x0,0x0,0x2e,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x2b,0x17,0x0, 0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x2d,0x17,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x2e,0x17,0x0, 0x0,0x0,0x0,0x0,0xf1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x37,0x17,0x0, 0x0,0x0,0x0,0x0,0x14,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x44,0x17,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x45,0x17,0x0, 0x0,0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x47,0x17,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x47,0x17,0x0, 0x0,0x0,0x0,0x0,0xbe,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x50,0x17,0x0, 0x0,0x0,0x0,0x0,0x10,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x77,0x17,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x77,0x17,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x78,0x17,0x0, 0x0,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x79,0x17,0x0, 0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x17,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x7b,0x17,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x7b,0x17,0x0, 0x0,0x0,0x0,0x0,0xe0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x93,0x17,0x0, 0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x94,0x17,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x94,0x17,0x0, 0x0,0x0,0x0,0x0,0x85,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xa9,0x17,0x0, 0x0,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xac,0x17,0x0, 0x0,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xae,0x17,0x0, 0x0,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xb3,0x17,0x0, 0x0,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xb8,0x17,0x0, 0x0,0x0,0x0,0x0,0xf6,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xd1,0x17,0x0, 0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xd2,0x17,0x0, 0x0,0x0,0x0,0x0,0x53,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xdd,0x17,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xdd,0x17,0x0, 0x0,0x0,0x0,0x0,0x98,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xe1,0x17,0x0, 0x0,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xe2,0x17,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe3,0x17,0x0, 0x0,0x0,0x0,0x0,0x6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xe7,0x17,0x0, 0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xe8,0x17,0x0, 0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xe8,0x17,0x0, 0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xe9,0x17,0x0, 0x0,0x0,0x0,0x0,0x12,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xee,0x17,0x0, 0x0,0x0,0x0,0x0,0x74,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xf3,0x17,0x0, 0x0,0x0,0x0,0x0,0xd0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xff,0x17,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xff,0x17,0x0, 0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x18,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x0,0x18,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x18,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1,0x18,0x0, 0x0,0x0,0x0,0x0,0x62,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xa,0x18,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xa,0x18,0x0, 0x0,0x0,0x0,0x0,0xd7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x10,0x18,0x0, 0x0,0x0,0x0,0x0,0x23,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x21,0x18,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x21,0x18,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x22,0x18,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x23,0x18,0x0, 0x0,0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x27,0x18,0x0, 0x0,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x28,0x18,0x0, 0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x28,0x18,0x0, 0x0,0x0,0x0,0x0,0xa6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x2d,0x18,0x0, 0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x2d,0x18,0x0, 0x0,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x33,0x18,0x0, 0x0,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x38,0x18,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x39,0x18,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3a,0x18,0x0, 0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x3a,0x18,0x0, 0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x3b,0x18,0x0, 0x0,0x0,0x0,0x0,0xf5,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x4c,0x18,0x0, 0x0,0x0,0x0,0x0,0xf4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x4e,0x18,0x0, 0x0,0x0,0x0,0x0,0xd6,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x68,0x18,0x0, 0x0,0x0,0x0,0x0,0x7e,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x74,0x18,0x0, 0x0,0x0,0x0,0x0,0x96,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x7e,0x18,0x0, 0x0,0x0,0x0,0x0,0x19,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x97,0x18,0x0, 0x0,0x0,0x0,0x0,0x7c,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xa0,0x18,0x0, 0x0,0x0,0x0,0x0,0xeb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xa5,0x18,0x0, 0x0,0x0,0x0,0x0,0xa5,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xb3,0x18,0x0, 0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xb5,0x18,0x0, 0x0,0x0,0x0,0x0,0x98,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xbf,0x18,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0xbf,0x18,0x0, 0x0,0x0,0x0,0x0,0x37,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xc0,0x18,0x0, 0x0,0x0,0x0,0x0,0x3b,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0xc8,0x18,0x0, 0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xcb,0x18,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xcb,0x18,0x0, 0x0,0x0,0x0,0x0,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xd5,0x18,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xd6,0x18,0x0, 0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xd6,0x18,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xd6,0x18,0x0, 0x0,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xd8,0x18,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xd8,0x18,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xd8,0x18,0x0, 0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xd9,0x18,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xd9,0x18,0x0, 0x0,0x0,0x0,0x0,0x95,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xe7,0x18,0x0, 0x0,0x0,0x0,0x0,0xc1,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x9,0x19,0x0, 0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x9,0x19,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0xa,0x19,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xa,0x19,0x0, 0x0,0x0,0x0,0x0,0x51,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x27,0x19,0x0, 0x0,0x0,0x0,0x0,0x3,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x86,0x19,0x0, 0x0,0x0,0x0,0x0,0xa4,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xa7,0x19,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xa8,0x19,0x0, 0x0,0x0,0x0,0x0,0x3c,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0xb1,0x19,0x0, 0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xb2,0x19,0x0, 0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xb3,0x19,0x0, 0x0,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xb4,0x19,0x0, 0x0,0x0,0x0,0x0,0xbf,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xc4,0x19,0x0, 0x0,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xc5,0x19,0x0, 0x0,0x0,0x0,0x0,0x13,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xe4,0x19,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xe4,0x19,0x0, 0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xe5,0x19,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xe5,0x19,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xe5,0x19,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xe6,0x19,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0xe6,0x19,0x0, 0x0,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xeb,0x19,0x0, 0x0,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xed,0x19,0x0, 0x0,0x0,0x0,0x0,0xe6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xf2,0x19,0x0, 0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xf4,0x19,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xf4,0x19,0x0, 0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xf4,0x19,0x0, 0x0,0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xf7,0x19,0x0, 0x0,0x0,0x0,0x0,0x65,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x19,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xfb,0x19,0x0, 0x0,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xfd,0x19,0x0, 0x0,0x0,0x0,0x0,0x36,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2,0x1a,0x0, 0x0,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x3,0x1a,0x0, 0x0,0x0,0x0,0x0,0x57,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1b,0x1a,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x1c,0x1a,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x1c,0x1a,0x0, 0x0,0x0,0x0,0x0,0x7a,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x24,0x1a,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x24,0x1a,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x24,0x1a,0x0, 0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x26,0x1a,0x0, 0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x2c,0x1a,0x0, 0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x2e,0x1a,0x0, 0x0,0x0,0x0,0x0,0x22,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x35,0x1a,0x0, 0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x37,0x1a,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x38,0x1a,0x0, 0x0,0x0,0x0,0x0,0x24,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x3e,0x1a,0x0, 0x0,0x0,0x0,0x0,0x40,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x57,0x1a,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x57,0x1a,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x57,0x1a,0x0, 0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x58,0x1a,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x58,0x1a,0x0, 0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x58,0x1a,0x0, 0x0,0x0,0x0,0x0,0x7,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x60,0x1a,0x0, 0x0,0x0,0x0,0x0,0x30,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x69,0x1a,0x0, 0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x6a,0x1a,0x0, 0x0,0x0,0x0,0x0,0x7d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x6e,0x1a,0x0, 0x0,0x0,0x0,0x0,0x63,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x78,0x1a,0x0, 0x0,0x0,0x0,0x0,0xe6,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x89,0x1a,0x0, 0x0,0x0,0x0,0x0,0x17,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x90,0x1a,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x90,0x1a,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x90,0x1a,0x0, 0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x93,0x1a,0x0, 0x0,0x0,0x0,0x0,0x3c,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x9a,0x1a,0x0, 0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x9b,0x1a,0x0, 0x0,0x0,0x0,0x0,0xa5,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xa3,0x1a,0x0, 0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xa4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xa5,0x1a,0x0, 0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xa7,0x1a,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xa7,0x1a,0x0, 0x0,0x0,0x0,0x0,0xd2,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xb7,0x1a,0x0, 0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xb8,0x1a,0x0, 0x0,0x0,0x0,0x0,0xd8,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0xd0,0x1a,0x0, 0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd1,0x1a,0x0, 0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0xd2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x31,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xd4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x55,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xda,0x1a,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xdb,0x1a,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xdb,0x1a,0x0, 0x0,0x0,0x0,0x0,0x67,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xe4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x2f,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xeb,0x1a,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xeb,0x1a,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xec,0x1a,0x0, 0x0,0x0,0x0,0x0,0xfe,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xf4,0x1a,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xf4,0x1a,0x0, 0x0,0x0,0x0,0x0,0xb,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x18,0x1b,0x0, 0x0,0x0,0x0,0x0,0xfd,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x22,0x1b,0x0, 0x0,0x0,0x0,0x0,0x52,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2b,0x1b,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2b,0x1b,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2c,0x1b,0x0, 0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2e,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5b,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x4c,0x1b,0x0, 0x0,0x0,0x0,0x0,0x2d,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x55,0x1b,0x0, 0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x5a,0x1b,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x5a,0x1b,0x0, 0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x5c,0x1b,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x5c,0x1b,0x0, 0x0,0x0,0x0,0x0,0xc0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x66,0x1b,0x0, 0x0,0x0,0x0,0x0,0xe,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x6f,0x1b,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x70,0x1b,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x70,0x1b,0x0, 0x0,0x0,0x0,0x0,0x23,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x76,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x79,0x1b,0x0, 0x0,0x0,0x0,0x0,0xa0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x96,0x1b,0x0, 0x0,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x98,0x1b,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x98,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x9b,0x1b,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x9b,0x1b,0x0, 0x0,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x9f,0x1b,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x9f,0x1b,0x0, 0x0,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xa5,0x1b,0x0, 0x0,0x0,0x0,0x0,0x55,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xa7,0x1b,0x0, 0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xa8,0x1b,0x0, 0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xa9,0x1b,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xaa,0x1b,0x0, 0x0,0x0,0x0,0x0,0xaf,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb3,0x1b,0x0, 0x0,0x0,0x0,0x0,0x98,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xbb,0x1b,0x0, 0x0,0x0,0x0,0x0,0x3b,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xcc,0x1b,0x0, 0x0,0x0,0x0,0x0,0x7f,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xd6,0x1b,0x0, 0x0,0x0,0x0,0x0,0xf2,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0xdf,0x1b,0x0, 0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xdf,0x1b,0x0, 0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0xe2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x22,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xeb,0x1b,0x0, 0x0,0x0,0x0,0x0,0xa7,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xf2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xf3,0x1b,0x0, 0x0,0x0,0x0,0x0,0xde,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xfc,0x1b,0x0, 0x0,0x0,0x0,0x0,0x1,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x18,0x1c,0x0, 0x0,0x0,0x0,0x0,0x97,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x25,0x1c,0x0, 0x0,0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x29,0x1c,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x2a,0x1c,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x2b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2b,0x1c,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x2c,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x2c,0x1c,0x0, 0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x2e,0x1c,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x2e,0x1c,0x0, 0x0,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x2f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x2f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x31,0x1c,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x31,0x1c,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x31,0x1c,0x0, 0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x33,0x1c,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x33,0x1c,0x0, 0x0,0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x37,0x1c,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x39,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x39,0x1c,0x0, 0x0,0x0,0x0,0x0,0x67,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x3d,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x3f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x3f,0x1c,0x0, 0x0,0x0,0x0,0x0,0xee,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x5a,0x1c,0x0, 0x0,0x0,0x0,0x0,0x63,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x62,0x1c,0x0, 0x0,0x0,0x0,0x0,0xed,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x69,0x1c,0x0, 0x0,0x0,0x0,0x0,0x83,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1c,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x75,0x1c,0x0, 0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x76,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x76,0x1c,0x0, 0x0,0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x79,0x1c,0x0, 0x0,0x0,0x0,0x0,0x74,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x7e,0x1c,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x7e,0x1c,0x0, 0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x7f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7f,0x1c,0x0, 0x0,0x0,0x0,0x0,0x50,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x8a,0x1c,0x0, 0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x8b,0x1c,0x0, 0x0,0x0,0x0,0x0,0xb5,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x99,0x1c,0x0, 0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x9a,0x1c,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x9b,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0xa0,0x1c,0x0, 0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xa1,0x1c,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xa1,0x1c,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xa1,0x1c,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xe1,0x1c,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xe2,0x1c,0x0, 0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xe3,0x1c,0x0, 0x0,0x0,0x0,0x0,0xec,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xec,0x1c,0x0, 0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xec,0x1c,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xed,0x1c,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xed,0x1c,0x0, 0x0,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xee,0x1c,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xef,0x1c,0x0, 0x0,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xf0,0x1c,0x0, 0x0,0x0,0x0,0x0,0x45,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xf5,0x1c,0x0, 0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xf8,0x1c,0x0, 0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xfa,0x1c,0x0, 0x0,0x0,0x0,0x0,0xa5,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x3,0x1d,0x0, 0x0,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x6,0x1d,0x0, 0x0,0x0,0x0,0x0,0x53,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x11,0x1d,0x0, 0x0,0x0,0x0,0x0,0xa,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x29,0x1d,0x0, 0x0,0x0,0x0,0x0,0x6f,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x34,0x1d,0x0, 0x0,0x0,0x0,0x0,0x8e,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x49,0x1d,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x49,0x1d,0x0, 0x0,0x0,0x0,0x0,0xf,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x62,0x1d,0x0, 0x0,0x0,0x0,0x0,0xf1,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x85,0x1d,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x85,0x1d,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x85,0x1d,0x0, 0x0,0x0,0x0,0x0,0x56,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8f,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x90,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x90,0x1d,0x0, 0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x91,0x1d,0x0, 0x0,0x0,0x0,0x0,0x80,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x99,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x9b,0x1d,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x9b,0x1d,0x0, 0x0,0x0,0x0,0x0,0x21,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x9f,0x1d,0x0, 0x0,0x0,0x0,0x0,0x5d,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xa9,0x1d,0x0, 0x0,0x0,0x0,0x0,0x9e,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xb4,0x1d,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0xb4,0x1d,0x0, 0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xb4,0x1d,0x0, 0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xb6,0x1d,0x0, 0x0,0x0,0x0,0x0,0x8f,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xca,0x1d,0x0, 0x0,0x0,0x0,0x0,0xff,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xd6,0x1d,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xd6,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd1,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xe2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe2,0x1d,0x0, 0x0,0x0,0x0,0x0,0xc2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xe7,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xe8,0x1d,0x0, 0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xe9,0x1d,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xe9,0x1d,0x0, 0x0,0x0,0x0,0x0,0xd6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xef,0x1d,0x0, 0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xef,0x1d,0x0, 0x0,0x0,0x0,0x0,0x5c,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xf7,0x1d,0x0, 0x0,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xf9,0x1d,0x0, 0x0,0x0,0x0,0x0,0x4a,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x4,0x1e,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x4,0x1e,0x0, 0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x5,0x1e,0x0, 0x0,0x0,0x0,0x0,0xc,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xe,0x1e,0x0, 0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x10,0x1e,0x0, 0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x10,0x1e,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x11,0x1e,0x0, 0x0,0x0,0x0,0x0,0xf4,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x19,0x1e,0x0, 0x0,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1b,0x1e,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1c,0x1e,0x0, 0x0,0x0,0x0,0x0,0xe0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x25,0x1e,0x0, 0x0,0x0,0x0,0x0,0x9c,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x2e,0x1e,0x0, 0x0,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x31,0x1e,0x0, 0x0,0x0,0x0,0x0,0x58,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3b,0x1e,0x0, 0x0,0x0,0x0,0x0,0x42,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x48,0x1e,0x0, 0x0,0x0,0x0,0x0,0xae,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x57,0x1e,0x0, 0x0,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x5c,0x1e,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x5c,0x1e,0x0, 0x0,0x0,0x0,0x0,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x64,0x1e,0x0, 0x0,0x0,0x0,0x0,0x65,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x71,0x1e,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x72,0x1e,0x0, 0x0,0x0,0x0,0x0,0x6,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x78,0x1e,0x0, 0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x7b,0x1e,0x0, 0x0,0x0,0x0,0x0,0x11,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x7d,0x1e,0x0, 0x0,0x0,0x0,0x0,0x37,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xbb,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd6,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xc9,0x1e,0x0, 0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xcc,0x1e,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xcc,0x1e,0x0, 0x0,0x0,0x0,0x0,0x94,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xd2,0x1e,0x0, 0x0,0x0,0x0,0x0,0x13,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0xd8,0x1e,0x0, 0x0,0x0,0x0,0x0,0xd,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xe3,0x1e,0x0, 0x0,0x0,0x0,0x0,0xdc,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x17,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x23,0x1f,0x0, 0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x24,0x1f,0x0, 0x0,0x0,0x0,0x0,0xb0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x2c,0x1f,0x0, 0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2d,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x2e,0x1f,0x0, 0x0,0x0,0x0,0x0,0xce,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x3b,0x1f,0x0, 0x0,0x0,0x0,0x0,0x55,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x41,0x1f,0x0, 0x0,0x0,0x0,0x0,0xd5,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x50,0x1f,0x0, 0x0,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x51,0x1f,0x0, 0x0,0x0,0x0,0x0,0x48,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x56,0x1f,0x0, 0x0,0x0,0x0,0x0,0x4c,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x60,0x1f,0x0, 0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x61,0x1f,0x0, 0x0,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x67,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x6c,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x6c,0x1f,0x0, 0x0,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x72,0x1f,0x0, 0x0,0x0,0x0,0x0,0xae,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x74,0x1f,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x75,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x75,0x1f,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x75,0x1f,0x0, 0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x76,0x1f,0x0, 0x0,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x7c,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x7d,0x1f,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x1f,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x7e,0x1f,0x0, 0x0,0x0,0x0,0x0,0x89,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x82,0x1f,0x0, 0x0,0x0,0x0,0x0,0x65,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x87,0x1f,0x0, 0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x88,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x88,0x1f,0x0, 0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8a,0x1f,0x0, 0x0,0x0,0x0,0x0,0xf1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x8d,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x8e,0x1f,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x8e,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa1,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xa5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xa5,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xa6,0x1f,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xa6,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xa6,0x1f,0x0, 0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xac,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xac,0x1f,0x0, 0x0,0x0,0x0,0x0,0x57,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xaf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xb0,0x1f,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xb1,0x1f,0x0, 0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xb3,0x1f,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xb3,0x1f,0x0, 0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xb3,0x1f,0x0, 0x0,0x0,0x0,0x0,0x8f,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xce,0x1f,0x0, 0x0,0x0,0x0,0x0,0x67,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xd0,0x1f,0x0, 0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0xd1,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xd4,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xd4,0x1f,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xd5,0x1f,0x0, 0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xd5,0x1f,0x0, 0x0,0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xd7,0x1f,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xd7,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xd8,0x1f,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xd8,0x1f,0x0, 0x0,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xda,0x1f,0x0, 0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xdb,0x1f,0x0, 0x0,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xde,0x1f,0x0, 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xdf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xdf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xdf,0x1f,0x0, 0x0,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xe0,0x1f,0x0, 0x0,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0xe1,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xe4,0x1f,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xe5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xe5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xe5,0x1f,0x0, 0x0,0x0,0x0,0x0,0x94,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xf1,0x1f,0x0, 0x0,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xf7,0x1f,0x0, 0x0,0x0,0x0,0x0,0x9d,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x0,0x20,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x0,0x20,0x0, 0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x1,0x20,0x0, 0x0,0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x7,0x20,0x0, 0x0,0x0,0x0,0x0,0x6,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x20,0x20,0x0, 0x0,0x0,0x0,0x0,0xa9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x25,0x20,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x25,0x20,0x0, 0x0,0x0,0x0,0x0,0x5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x27,0x20,0x0, 0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x29,0x20,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x29,0x20,0x0, 0x0,0x0,0x0,0x0,0x49,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x31,0x20,0x0, 0x0,0x0,0x0,0x0,0x6f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x36,0x20,0x0, 0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x37,0x20,0x0, 0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x37,0x20,0x0, 0x0,0x0,0x0,0x0,0x64,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x46,0x20,0x0, 0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x46,0x20,0x0, 0x0,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x4c,0x20,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x4c,0x20,0x0, 0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x4d,0x20,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4d,0x20,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x4d,0x20,0x0, 0x0,0x0,0x0,0x0,0x90,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x51,0x20,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x51,0x20,0x0, 0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x52,0x20,0x0, 0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x53,0x20,0x0, 0x0,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x54,0x20,0x0, 0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x57,0x20,0x0, 0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x57,0x20,0x0, 0x0,0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x59,0x20,0x0, 0x0,0x0,0x0,0x0,0xb9,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x66,0x20,0x0, 0x0,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x67,0x20,0x0, 0x0,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x6a,0x20,0x0, 0x0,0x0,0x0,0x0,0x96,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x6f,0x20,0x0, 0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x70,0x20,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x70,0x20,0x0, 0x0,0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x75,0x20,0x0, 0x0,0x0,0x0,0x0,0x33,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x80,0x20,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x80,0x20,0x0, 0x0,0x0,0x0,0x0,0xe7,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x9a,0x20,0x0, 0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x9b,0x20,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x9b,0x20,0x0, 0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x9c,0x20,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x9c,0x20,0x0, 0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xa2,0x20,0x0, 0x0,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xa7,0x20,0x0, 0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xa8,0x20,0x0, 0x0,0x0,0x0,0x0,0x60,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0xb9,0x20,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xb9,0x20,0x0, 0x0,0x0,0x0,0x0,0xa8,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xbd,0x20,0x0, 0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xbf,0x20,0x0, 0x0,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xc2,0x20,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0xc2,0x20,0x0, 0x0,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xc3,0x20,0x0, 0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xc4,0x20,0x0, 0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xc4,0x20,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xc4,0x20,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xc5,0x20,0x0, 0x0,0x0,0x0,0x0,0x14,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0xc9,0x20,0x0, 0x0,0x0,0x0,0x0,0x41,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0xd0,0x20,0x0, 0x0,0x0,0x0,0x0,0x94,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0xdb,0x20,0x0, 0x0,0x0,0x0,0x0,0x44,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xe5,0x20,0x0, 0x0,0x0,0x0,0x0,0x15,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0xec,0x20,0x0, 0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xf1,0x20,0x0, 0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf1,0x20,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xf2,0x20,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xf2,0x20,0x0, 0x0,0x0,0x0,0x0,0x8,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xf6,0x20,0x0, 0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xf7,0x20,0x0, 0x0,0x0,0x0,0x0,0xc6,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x5,0x21,0x0, 0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xa,0x21,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xa,0x21,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xa,0x21,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xb,0x21,0x0, 0x0,0x0,0x0,0x0,0xf,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x11,0x21,0x0, 0x0,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x14,0x21,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x14,0x21,0x0, 0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x16,0x21,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x17,0x21,0x0, 0x0,0x0,0x0,0x0,0x25,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1c,0x21,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x1c,0x21,0x0, 0x0,0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x1e,0x21,0x0, 0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1e,0x21,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1e,0x21,0x0, 0x0,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x23,0x21,0x0, 0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x24,0x21,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x24,0x21,0x0, 0x0,0x0,0x0,0x0,0xb2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x36,0x21,0x0, 0x0,0x0,0x0,0x0,0x1a,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x3c,0x21,0x0, 0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x3d,0x21,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x3e,0x21,0x0, 0x0,0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x41,0x21,0x0, 0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x41,0x21,0x0, 0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x41,0x21,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x42,0x21,0x0, 0x0,0x0,0x0,0x0,0xe6,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x6d,0x21,0x0, 0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x6d,0x21,0x0, 0x0,0x0,0x0,0x0,0x3c,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x82,0x21,0x0, 0x0,0x0,0x0,0x0,0xd7,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x8d,0x21,0x0, 0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x8d,0x21,0x0, 0x0,0x0,0x0,0x0,0xdd,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x98,0x21,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x98,0x21,0x0, 0x0,0x0,0x0,0x0,0x9b,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xb9,0x21,0x0, 0x0,0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xbe,0x21,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xbe,0x21,0x0, 0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xbf,0x21,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xbf,0x21,0x0, 0x0,0x0,0x0,0x0,0x6d,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0xc3,0x21,0x0, 0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xc3,0x21,0x0, 0x0,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xc6,0x21,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xc6,0x21,0x0, 0x0,0x0,0x0,0x0,0xab,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xc8,0x21,0x0, 0x0,0x0,0x0,0x0,0x58,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xcb,0x21,0x0, 0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x21,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0xcc,0x21,0x0, 0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xcd,0x21,0x0, 0x0,0x0,0x0,0x0,0x7e,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xd1,0x21,0x0, 0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd2,0x21,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0xd2,0x21,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xd2,0x21,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xd3,0x21,0x0, 0x0,0x0,0x0,0x0,0xdd,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xe5,0x21,0x0, 0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x21,0x0, 0x0,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xeb,0x21,0x0, 0x0,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xef,0x21,0x0, 0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xef,0x21,0x0, 0x0,0x0,0x0,0x0,0x90,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xf6,0x21,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xf7,0x21,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf7,0x21,0x0, 0x0,0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xf8,0x21,0x0, 0x0,0x0,0x0,0x0,0xd7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xfe,0x21,0x0, 0x0,0x0,0x0,0x0,0x84,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x22,0x0, 0x0,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x22,0x0, 0x0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x3,0x22,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x3,0x22,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x22,0x0, 0x0,0x0,0x0,0x0,0x7b,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x7,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x8,0x22,0x0, 0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x8,0x22,0x0, 0x0,0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa,0x22,0x0, 0x0,0x0,0x0,0x0,0x91,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xc,0x22,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xd,0x22,0x0, 0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0xe,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xf,0x22,0x0, 0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x10,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x12,0x22,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x13,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x13,0x22,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x13,0x22,0x0, 0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x14,0x22,0x0, 0x0,0x0,0x0,0x0,0x86,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x19,0x22,0x0, 0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1a,0x22,0x0, 0x0,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1a,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x1a,0x22,0x0, 0x0,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1b,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x1b,0x22,0x0, 0x0,0x0,0x0,0x0,0x2f,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x2c,0x22,0x0, 0x0,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2d,0x22,0x0, 0x0,0x0,0x0,0x0,0x79,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x32,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x32,0x22,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x32,0x22,0x0, 0x0,0x0,0x0,0x0,0x93,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x36,0x22,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x36,0x22,0x0, 0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x37,0x22,0x0, 0x0,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x37,0x22,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x38,0x22,0x0, 0x0,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x39,0x22,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x39,0x22,0x0, 0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x3b,0x22,0x0, 0x0,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x3d,0x22,0x0, 0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3d,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x3e,0x22,0x0, 0x0,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x43,0x22,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x43,0x22,0x0, 0x0,0x0,0x0,0x0,0x27,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x44,0x22,0x0, 0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x45,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x45,0x22,0x0, 0x0,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x45,0x22,0x0, 0x0,0x0,0x0,0x0,0xa3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x4a,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x4a,0x22,0x0, 0x0,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x4e,0x22,0x0, 0x0,0x0,0x0,0x0,0xb0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x56,0x22,0x0, 0x0,0x0,0x0,0x0,0x18,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x62,0x22,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x63,0x22,0x0, 0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x64,0x22,0x0, 0x0,0x0,0x0,0x0,0x15,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x68,0x22,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x68,0x22,0x0, 0x0,0x0,0x0,0x0,0x32,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x6a,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x6a,0x22,0x0, 0x0,0x0,0x0,0x0,0x26,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x6e,0x22,0x0, 0x0,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x6f,0x22,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x6f,0x22,0x0, 0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x70,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x70,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x70,0x22,0x0, 0x0,0x0,0x0,0x0,0x48,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x78,0x22,0x0, 0x0,0x0,0x0,0x0,0xbc,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x7b,0x22,0x0, 0x0,0x0,0x0,0x0,0x56,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x81,0x22,0x0, 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x81,0x22,0x0, 0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x82,0x22,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x82,0x22,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x82,0x22,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x83,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x83,0x22,0x0, 0x0,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x84,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x86,0x22,0x0, 0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x86,0x22,0x0, 0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x87,0x22,0x0, 0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x87,0x22,0x0, 0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x88,0x22,0x0, 0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x88,0x22,0x0, 0x0,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x8b,0x22,0x0, 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x8b,0x22,0x0, 0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x8c,0x22,0x0, 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x8c,0x22,0x0, 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x8c,0x22,0x0, 0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x8d,0x22,0x0, 0x0,0x0,0x0,0x0,0xc7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x92,0x22,0x0, 0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x92,0x22,0x0, 0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x92,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x93,0x22,0x0, 0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x94,0x22,0x0, 0x0,0x0,0x0,0x0,0xf1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x98,0x22,0x0, 0x0,0x0,0x0,0x0,0x31,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xa2,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xa2,0x22,0x0, 0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xa2,0x22,0x0, 0x0,0x0,0x0,0x0,0x87,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xaa,0x22,0x0, 0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0xaa,0x22,0x0, 0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xab,0x22,0x0, 0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xac,0x22,0x0, 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xac,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xac,0x22,0x0, 0x0,0x0,0x0,0x0,0xe4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xb0,0x22,0x0, 0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xb1,0x22,0x0, 0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xb2,0x22,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0xb2,0x22,0x0, 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xb2,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xb5,0x22,0x0, 0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0xb5,0x22,0x0, 0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xb6,0x22,0x0, 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0xb6,0x22,0x0, 0x0,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xb7,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xb7,0x22,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xb8,0x22,0x0, 0x0,0x0,0x0,0x0,0x44,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x71,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2,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,0x0,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,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,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x27,0x9,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x34,0x0,0x0, 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x18,0x5,0x41,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x75,0x32,0x41,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x75,0x32,0x41,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x72,0x62,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x7d,0x2,0x0,0x0,0x1,0x3, 0x3,0x2,0x0,0x20,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x54,0x3d,0x2d,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x3d, 0x2d,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x71,0x20,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,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,0x0,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,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,0x1a,0x6,0x0,0x0,0x35,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0, 0x27,0x9,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x1,0x59,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x41,0x1,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x32,0x41,0x2,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x32,0x41,0x6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x61,0x67,0x67,0x72,0x65,0x73,0x73,0x69,0x76, 0x65,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6c,0x7a,0x34, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x72,0x62,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x5,0x1,0x1,0x0,0x0,0x1,0x3,0x0,0x2,0x0,0x4,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x32,0x2a, 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x35,0x1a,0x0,0x0,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x20,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,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,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,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,0x1a, 0x6,0x0,0x0,0x35,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,0xc0,0x27,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x74,0x65,0x73,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x76,0x6f,0x6c,0x75,0x6d,0x65, 0x73,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x69,0x6d,0x61, 0x67,0x65,0x73,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x63, 0x69,0x6e,0x64,0x65,0x72,0x2d,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x74,0x65,0x73,0x74,0x4e,0x0, 0x0,0x0,0x0,0x80,0x58,0x0,0xc4,0x5,0x0,0x0,0xc4,0x5,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x5,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc4,0x5, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x27,0xad, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xb3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x2f,0x99,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xb0,0x4d,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x89,0xa7,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xb8,0xab,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x4,0xae,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0xd5,0x9a,0x0,0x0,0xcd,0xcc,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xb9,0xad,0x0,0x0,0x99,0xd9,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x34,0xf3,0x0,0x0,0x0,0x0, 0x1,0x0,0x99,0xd9,0x0,0x0,0x0,0x0,0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0, 0x1,0x0,0x32,0x96,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x64,0xa0,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xff,0xbf,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0xc0,0x0,0x0,0xaf,0x98,0x0,0x0,0x0,0x0,0x1,0x0,0x33,0xf3, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0xc2,0x9a,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x37,0x74, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x66,0xe6,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x66,0xe6, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0xc3,0x91,0x0,0x0,0x33,0xf3,0x0,0x0,0x29,0xb5, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xff,0xbf, 0x0,0x0,0x0,0x0,0x1,0x0,0x99,0xd9,0x0,0x0,0x1,0x90,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x47,0xaa,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xc1,0xa5,0x0,0x0,0x66,0xe6, 0x0,0x0,0x0,0x0,0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xbb,0xb0,0x0,0x0,0x0,0x0, 0x1,0x0,0x33,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x34,0xf3,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x0,0xc4,0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb8,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x61,0x99,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x1e,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0xb1,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5d,0x99,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0xe7,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8, 0x52,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7,0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x1e,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x99,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x66,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1, 0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0x99,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7a,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x1e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xc4,0x1f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d, 0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x59,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xb3,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x6b, 0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdf,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf6,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x31,0x3a, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x97,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xf9,0x2f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b, 0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe3,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd, 0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x56,0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe2,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0x69,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xb3, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x93,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7, 0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4b,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x98,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6b,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e, 0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x99,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xc8,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0xa4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa1,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8c,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x51,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb9,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0xc8,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x15, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x99,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x81,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbc,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x51,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x86, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb0,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x51,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x52,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcb,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x48,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbe,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5e,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xba,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x51,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26, 0x52,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa9,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xce,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xb1,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x16,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2, 0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb5,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xc7,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x60,0xa4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xbd,0x2b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd9,0xf7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x4e,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10, 0xfa,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc6,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xd5,0x2b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x4b, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x92,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1, 0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xbd,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe8,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xa4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3d,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x11,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x85,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80, 0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xec,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x27,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd5,0x2b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe5,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc7,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x2,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x20,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfa,0x1f,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x4d,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xb6, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0x9b,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x3e,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x98,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x6c,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfb,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3e,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x15, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xd9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xef,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xff,0x3e,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x1e,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdf,0xb2,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9c,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b, 0x4e,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x62,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x97,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x3f,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x34,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x19,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd9,0x1e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x68,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23, 0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf3,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x62,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5b,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1, 0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x2,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x25,0x3f,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb4,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xb4,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x49,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e, 0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x99,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x73,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3,0x37,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xb6,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70, 0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc5,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x33,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x59,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb1,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x39,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x59,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x72,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf8,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15, 0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x51,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc8, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x45,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xe9,0x3, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa6,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69, 0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x80,0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7b,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x70,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd0,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x7c,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x7e,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x80, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa1,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8,0x84,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x86,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9e,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0x8c,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x90,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfb,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9d,0x92,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xda,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0x95,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xde,0x99,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18, 0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xa4,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x6c,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b, 0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfc,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0xc0,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xa8, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xec,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc3,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbf,0xc6,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89, 0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcd,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xcb,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0xce,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x49,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x85,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x51, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x70,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1, 0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x53,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x56,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0x59,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa2,0x28,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa4,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x61,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0x9b,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13, 0x3f,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xae,0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5c,0x66,0x1a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x69, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe3,0x6f,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x74,0xe,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x77,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x57,0x7a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x61,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x6c,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x7f,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x82,0xe,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad, 0x84,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x64,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe7,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd9,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4c,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2a,0x16,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6a,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d,0x16,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x2d,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62, 0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x10, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x93,0x32,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x69,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x13,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x37,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2e,0xbd,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80, 0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc,0x3,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84, 0x16,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x56,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x72,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x3a,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x18,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa4,0xc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x88, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d, 0xe1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xe3,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x3f, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x71,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x15,0x6c,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x23,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaa,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x42,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x26,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x58,0x31,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xeb, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1, 0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0x47,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb8,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x29,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x31,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xd9, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5c,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xfa,0x2f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x2,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0x4a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb7,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x31,0x3a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x28,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa0,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x66,0x1a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x39,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2f,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xb4,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x62,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe6,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x59,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x79, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdb,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x59,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x48,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbf,0x14,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x59,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0x79,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x66,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa8,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x4c,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x73, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4a,0xb2,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x15,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x59,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x71,0x2e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xc8,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xff,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x73,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xf3, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5d,0x1f,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xb4,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x4f,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x57,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xc8,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xb4,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x62, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xba,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x59,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x79,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x34,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xb4,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xcd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x62,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0x36,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x77,0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0xf5,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xb, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xce,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x22,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x52,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4,0xb7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf6,0xb7,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x59,0x25,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x57,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x3c, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfc,0x13,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x2a,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xc1,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x3e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x17,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed, 0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe8,0x0,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9e,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x2d,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbc,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x50, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4d,0x59,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc4,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbf,0x41,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x19,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0x3,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0x30,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x5b,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xc6, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xa0,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x4a,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x10,0x1c,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x5,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9, 0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x18,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x64,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0x6c,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0x5d,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xa3,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x77,0xcd,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x22,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x93,0x36,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xcb,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xc8, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xa5,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x69,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x61,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8, 0xcf,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbe,0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a, 0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa8,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xd4,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd0,0xa8,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19, 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xe,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x41,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc6,0x3b,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89, 0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xec,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38, 0xd2,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xba,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x51,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x52, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe5,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xde,0xd7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xab,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x11,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x80,0xd5,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe8,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x3f,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb, 0x4d,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf8,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x60,0xb1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa4,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x2d,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x44,0xda,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0x17,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xee,0x54,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x78,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd2,0xd7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0xb3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa8,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x41,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3, 0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x18,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa4,0xdc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcc,0xb6,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x78, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x62,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4d,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3d,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x28,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2c,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xe1,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb1,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa3,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x94,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xdf,0x3f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0x19,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd0,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x94,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb8,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xec,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9f,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5a,0x44,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe1, 0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4e,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc, 0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x47,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfa,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x94,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0xbc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf4,0xa,0x1c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xeb,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc9,0xc1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19, 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xc4,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xe9,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0x57,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x29,0x2e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x86,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a, 0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xc7,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x5b, 0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe8,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x40,0xf3,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97, 0x5d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9b,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a, 0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xcc,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0xd3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19, 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xd5,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x67,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbc,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6d,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7, 0xe6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xaf,0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x70,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xde, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0x39,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x72,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x24,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22, 0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x3b, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xef,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x78,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb8,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x83,0x3e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa8,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf1,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x7a,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xff,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xf9,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xee,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x50,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xef,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xee, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x42,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x25,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x90,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xee,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfd,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9, 0xb,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x25,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x84,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x7,0x80,0x8e, 0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x1,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x85, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x10,0x80,0x8e,0x17,0x48,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0x86,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x14,0x80,0x8e,0x17, 0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x80,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xff,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd6,0x4e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x1,0xd,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f, 0xb,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6e,0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x94,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x2,0x2a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x4, 0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x18,0xe,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xdd,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xfc,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0xce,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb7,0xd8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xd3,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x9e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30, 0xd2,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x14,0xd7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xdc,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xd9,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc0, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x74,0x10,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x63,0xdb,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xde,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x28,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd1,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x41,0xd6,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb4,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x8e,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7, 0xc3,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x60,0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x11,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x5f, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x17,0x91,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd2,0xa6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xd,0x2a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x1c,0x15, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4f,0x62,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xa9,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0xab,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x67,0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc0,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xcb,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xae, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0xa5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa8,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xd2,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xa,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x44,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2,0xb1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd5,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71, 0xd5,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe4,0xd7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc0,0xcf,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xd4,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xdf,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x2c,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xd0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3b,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xdf,0x3e,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x47,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x1d,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x39,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6e,0x41,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x38,0x49,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x21,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0x3f,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x4b,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0x29,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x43,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0xd,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, 0x3e,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc,0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0x3c,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x44,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x15,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x40,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x73, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa9,0xb6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe2,0x46,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x19, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x39,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x42,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x9,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x3a,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x3d,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x18,0x44,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x11,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x3b,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa5,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x3e,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x3f,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e, 0x41,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x28,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x3a,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcc,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd8,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x33, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb5,0x35,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x3c,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x28,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x75,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x34,0x38,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x75,0x32,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x3b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x0,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x36,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0xb9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb3,0xfe,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0xfd,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x37,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x34, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb5,0xa,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x1c,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x13,0xfd,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x3,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xbe,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0xff,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd0,0x2,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x15,0x34,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x30,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63, 0x40,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x24,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x77,0x4,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0x31,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x1,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xfb,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x7, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd7,0x9,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x13,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x24,0x1,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x8,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x6,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0xfc,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xcb,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf, 0xcd,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x11,0xcc,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x63,0xca,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xf7,0x39,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xce, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf1,0xd2,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x24,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4d,0xc6,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xc3,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc9,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0xcc,0x30, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6a,0x7b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xc7,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xd1,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0x20,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xc8,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad, 0xc4,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xde,0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3d,0xc2,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xcf,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0xc5,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xd0, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x11,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd,0xc3,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6,0x25,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xff,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7f,0xf8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xfd,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x8,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6a,0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x1,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xf6, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x52,0x5,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xfc,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xf7,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xc3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x18,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a, 0x22,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0x15,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0x12,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x16,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0x1c, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4c,0x90,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x72,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb0,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xd3,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xcf,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x64,0xd1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xcc,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5, 0xd5,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdd,0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb4,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc8,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xca, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x27,0xda,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x98,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x7c,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xd1,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x19,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf3,0x85,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xf5,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1b,0x20,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xe8,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16, 0xf4,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf6,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfd,0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9c,0xe7,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0xec,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0xce,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0xe5, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd0,0xd3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x19, 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0xf2,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xea,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xed,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3c,0xe9,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0xf6,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x24,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xeb,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xf1,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xd0,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26, 0xd6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x51,0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd8,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xdb,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xd8, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd5,0x70,0x27,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17, 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x88,0x4e,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x28, 0x80,0x8e,0x17,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcc,0xf9,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6d,0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x12, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x33,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x35,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xcf,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xda,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8f,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xbf,0x1b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x44,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xe0,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3d,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x88,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x75,0x1f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19, 0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa3,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xed,0xf2,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbe,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0x35,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x7d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8c,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x7d, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0xbf,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x94,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa5,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xe0, 0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2d,0x9e,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb,0x7d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xe0,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe0,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9,0x7d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf1,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xbd, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb9,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfe,0x7c,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xbc,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x91,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0x9e,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93, 0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0xbf,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xbd,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9b,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfa,0x7c,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1f,0x35,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0xa2,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xfc,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0xbf,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x53,0xcf,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xe8,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9b,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x33,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x33,0xba,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xce,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28, 0xba,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x39,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe,0xba,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xba,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0x98,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x11,0xe7,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0xbc,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe7,0x80,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xde, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7e,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0xe7,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x78,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x4a,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x3f, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x36,0x98,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x9b,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x23,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdf,0x57,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x1c,0x80,0x8e,0xa1,0xde, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x1e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xba,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x50,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x0,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x1e, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x79,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xbc,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x55,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x14,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x24,0x98,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb5,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xe7,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4d,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x65,0x53,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b, 0xc,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x98,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7d,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x31,0xe7,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x2,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x5a,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x4d,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf4,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x14,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xea,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0x9b,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe6,0x4b,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe6,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x1f,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8,0xe7,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x39,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x4f,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfc,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x86,0x2d,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x3f,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5,0x36,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa2,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x28,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x4, 0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x6b,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xa4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x2, 0x2,0x0,0x0,0x5b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x16,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb9,0x3,0x0,0x0, 0x2,0x2,0x0,0x0,0x26,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x52,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x34,0x5,0x0, 0x0,0xc8,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xee,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xaf,0x2, 0x0,0x0,0x40,0x3,0x0,0x0,0xfb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfe,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x90, 0x0,0x0,0x0,0x2,0x2,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x55,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x63,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x2,0x2,0x0,0x0,0xbf,0x2,0x0,0x0,0x29,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x16,0x1,0x0,0x0,0xfd,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x94,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x3d,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x86,0x5,0x0,0x0,0x2,0x2,0x0,0x0,0x18,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x6c,0x5,0x0,0x0,0x7d,0x1,0x0,0x0,0x2,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x34,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0xf2,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x4c,0x2,0x0,0x0,0x6c,0x5,0x0,0x0,0xb9,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xe1,0x4,0x0,0x0,0x2,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x94,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa6,0x5,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x85,0x2, 0x0,0x0,0x27,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x17, 0x5,0x0,0x0,0x32,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2d,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb1,0x5,0x0,0x0, 0x32,0x1,0x0,0x0,0x2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa9,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x45,0x1,0x0, 0x0,0x28,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8f,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x1, 0x0,0x0,0x2,0x2,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x96,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48, 0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0xa9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa4,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x2,0x2,0x0,0x0,0xe,0x3,0x0,0x0,0xe8,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc4,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x5c,0x2,0x0,0x0,0x2,0x2,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0xef,0x4,0x0,0x0,0xb3,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0xf9,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0xc3,0x0,0x0,0x0,0x70,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x2,0x2,0x0,0x0,0x9a,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x9e,0x5,0x0,0x0,0x71,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x9d,0x2,0x0,0x0,0xe9,0x4,0x0,0x0,0x1f, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0x25,0x0,0x0,0x0, 0x16,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x55,0x1,0x0, 0x0,0x2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x5,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xa9,0xf3,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x0,0x0,0x5,0x0,0x0,0x0,0xc4,0x5,0x0, 0x0,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6,0x0,0x5,0x0,0x97,0xc7,0x78, 0x19,0x2,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0x1e,0xfb,0xeb, 0x14,0x79,0xcc,0x8c,0x4,0x5,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x4,0x0,0x5, 0x0,0x1e,0xfb,0xeb,0x14,0x6,0x0,0x0,0x0,0xb8,0xff,0xff,0xff,0xfc,0xff,0xff, 0xff,0xfa,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xf2,0xff,0xff,0xff,0x6d,0xff,0xff, 0xff,0x1b,0x47,0x95,0x3,0x84,0x47,0x95,0x3,0x48,0x41,0x95,0x3,0x30,0x3d,0x12, 0x3,0x57,0xea,0x84,0x3,0xb0,0x3,0x95,0x3,0x5,0x0,0x0,0x0,0xfd,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xe1,0x0,0x0, 0x0,0xec,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x13,0x1,0x0,0x0,0x55,0x1,0x0, 0x0,0x70,0x1,0x0,0x0,0x8f,0x1,0x0,0x0,0xb6,0x1,0x0,0x0,0xcc,0x1,0x0, 0x0,0xf5,0x1,0x0,0x0,0x13,0x2,0x0,0x0,0x20,0x4,0x0,0x0,0x72,0x5,0x0, 0x0,0x7a,0x5,0x0,0x0,0x83,0x5,0x0,0x0,0x8b,0x5,0x0,0x0,0x92,0x5,0x0, 0x0,0x9a,0x5,0x0,0x0,0xa2,0x5,0x0,0x0,0xaa,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xfc,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x84,0x47,0x95,0x3,0x7,0x0,0x0, 0x0,0xfd,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0xef,0xff,0xff, 0xff,0xe9,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0x30,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x5,0x0,0x0,0x0,0xfb,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x24,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0x4a,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x80,0x0,0x0, 0x0,0x97,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0xba,0x0,0x0, 0x0,0xcb,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x8b,0x1,0x0, 0x0,0xa3,0x1,0x0,0x0,0xc5,0x1,0x0,0x0,0xe0,0x1,0x0,0x0,0xfc,0x1,0x0, 0x0,0xe,0x2,0x0,0x0,0x1d,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xfa,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x87,0x41,0x95,0x3,0x7,0x0,0x0, 0x0,0xfb,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xec,0xff,0xff, 0xff,0xeb,0xff,0xff,0xff,0xe5,0xff,0xff,0xff,0xe4,0xff,0xff,0xff,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x19,0x4,0x83,0x0,0x5,0x0,0x0,0x0,0xf9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1d,0x0,0x0, 0x0,0x22,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x42,0x0,0x0, 0x0,0x4b,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x82,0x0,0x0, 0x0,0x9e,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0xbc,0x0,0x0, 0x0,0xca,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x7a,0x1,0x0,0x0,0x92,0x1,0x0, 0x0,0xae,0x1,0x0,0x0,0xd1,0x1,0x0,0x0,0xe7,0x1,0x0,0x0,0x2,0x2,0x0, 0x0,0x12,0x2,0x0,0x0,0x21,0x2,0x0,0x0,0xbe,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xf8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x9f,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0xc,0x1,0x0,0x0,0x10,0x1,0x0, 0x0,0x2c,0x1,0x0,0x0,0x34,0x1,0x0,0x0,0x38,0x1,0x0,0x0,0x3d,0x1,0x0, 0x0,0x44,0x1,0x0,0x0,0x49,0x1,0x0,0x0,0x26,0x2,0x0,0x0,0x2a,0x2,0x0, 0x0,0x2e,0x2,0x0,0x0,0x34,0x2,0x0,0x0,0x38,0x2,0x0,0x0,0x3f,0x2,0x0, 0x0,0x44,0x2,0x0,0x0,0x4a,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x55,0x2,0x0, 0x0,0x5a,0x2,0x0,0x0,0x5e,0x2,0x0,0x0,0x62,0x2,0x0,0x0,0x66,0x2,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xf7,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x6e,0x3d,0x12, 0x3,0x6,0x0,0x0,0x0,0xf8,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xe1,0xff,0xff, 0xff,0xe0,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf4,0xff,0xff,0xff,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83, 0x0,0x3d,0xa,0x83,0x0,0x5,0x0,0x0,0x0,0xf6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x4,0x1,0x0, 0x0,0xb,0x1,0x0,0x0,0xf,0x1,0x0,0x0,0x1a,0x1,0x0,0x0,0x31,0x1,0x0, 0x0,0x37,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x41,0x1,0x0,0x0,0x46,0x1,0x0, 0x0,0x4d,0x1,0x0,0x0,0x27,0x2,0x0,0x0,0x2b,0x2,0x0,0x0,0x30,0x2,0x0, 0x0,0x36,0x2,0x0,0x0,0x3a,0x2,0x0,0x0,0x42,0x2,0x0,0x0,0x48,0x2,0x0, 0x0,0x4c,0x2,0x0,0x0,0x52,0x2,0x0,0x0,0x57,0x2,0x0,0x0,0x5c,0x2,0x0, 0x0,0x60,0x2,0x0,0x0,0x64,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xf5,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x1e,0x0,0x0, 0x0,0x2c,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x3c,0x0,0x0, 0x0,0x3f,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x4d,0x0,0x0, 0x0,0x52,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x62,0x0,0x0, 0x0,0x63,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x67,0x0,0x0, 0x0,0x68,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xf4,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x6b,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x6e,0x0,0x0, 0x0,0x6f,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x72,0x0,0x0, 0x0,0x73,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x76,0x0,0x0, 0x0,0x77,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x83,0x0,0x0, 0x0,0x84,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x87,0x0,0x0, 0x0,0x89,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x8d,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xf3,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0xad,0x0,0x0, 0x0,0xc6,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x22,0x1,0x0, 0x0,0x29,0x1,0x0,0x0,0x3e,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x5d,0x1,0x0, 0x0,0x6c,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0x85,0x2,0x0,0x0,0x90,0x2,0x0, 0x0,0x9d,0x2,0x0,0x0,0xaa,0x2,0x0,0x0,0xb6,0x2,0x0,0x0,0xc1,0x2,0x0, 0x0,0xcc,0x2,0x0,0x0,0xd7,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0xed,0x2,0x0, 0x0,0xfa,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xf2,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x57,0xea,0x84,0x3,0x7,0x0,0x0,0x0,0xf3,0xff,0xff,0xff,0xee,0xff,0xff, 0xff,0xea,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe2,0xff,0xff,0xff,0xdf,0xff,0xff, 0xff,0xde,0xff,0xff,0xff,0x3d,0xa,0x83,0x0,0x7b,0x94,0x7d,0x0,0x2f,0xe,0x83, 0x0,0x3d,0xa,0x83,0x0,0x7b,0x94,0x7d,0x0,0x3d,0xa,0x83,0x0,0x7b,0x94,0x7d, 0x0,0x5,0x0,0x0,0x0,0xf1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x16,0x0,0x0, 0x0,0xd9,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x3,0x1,0x0, 0x0,0x16,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x8a,0x1,0x0,0x0,0xaa,0x1,0x0, 0x0,0xca,0x1,0x0,0x0,0xe9,0x1,0x0,0x0,0x10,0x2,0x0,0x0,0x24,0x2,0x0, 0x0,0x74,0x5,0x0,0x0,0x7f,0x5,0x0,0x0,0x86,0x5,0x0,0x0,0x90,0x5,0x0, 0x0,0x98,0x5,0x0,0x0,0xa0,0x5,0x0,0x0,0xa8,0x5,0x0,0x0,0xb0,0x5,0x0, 0x0,0xb6,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xf0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xc,0x0,0x0, 0x0,0x15,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0xee,0x0,0x0, 0x0,0x1,0x1,0x0,0x0,0x14,0x1,0x0,0x0,0x5a,0x1,0x0,0x0,0x77,0x1,0x0, 0x0,0x97,0x1,0x0,0x0,0xbd,0x1,0x0,0x0,0xd6,0x1,0x0,0x0,0xf8,0x1,0x0, 0x0,0x19,0x2,0x0,0x0,0x71,0x5,0x0,0x0,0x79,0x5,0x0,0x0,0x81,0x5,0x0, 0x0,0x89,0x5,0x0,0x0,0x91,0x5,0x0,0x0,0x99,0x5,0x0,0x0,0xa1,0x5,0x0, 0x0,0xa9,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xef,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x5,0x0,0x0, 0x0,0xf,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0xea,0x0,0x0, 0x0,0xf7,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x54,0x1,0x0,0x0,0x6b,0x1,0x0, 0x0,0x86,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0xc0,0x1,0x0,0x0,0xd8,0x1,0x0, 0x0,0xfb,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x73,0x5,0x0,0x0,0x7b,0x5,0x0, 0x0,0x82,0x5,0x0,0x0,0x8a,0x5,0x0,0x0,0x93,0x5,0x0,0x0,0x9b,0x5,0x0, 0x0,0xab,0x5,0x0,0x0,0xb2,0x5,0x0,0x0,0x60,0x0,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xee,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x91,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xd7,0x0,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x24,0x1,0x0,0x0,0x2d,0x1,0x0, 0x0,0x4b,0x1,0x0,0x0,0x53,0x1,0x0,0x0,0x60,0x1,0x0,0x0,0x6a,0x2,0x0, 0x0,0x73,0x2,0x0,0x0,0x8c,0x2,0x0,0x0,0x92,0x2,0x0,0x0,0xa1,0x2,0x0, 0x0,0xab,0x2,0x0,0x0,0xba,0x2,0x0,0x0,0xc4,0x2,0x0,0x0,0xcf,0x2,0x0, 0x0,0xd9,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0xf6,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xed,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0x27,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x3e,0x0,0x0, 0x0,0x49,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x81,0x0,0x0, 0x0,0x9d,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0xbe,0x0,0x0, 0x0,0xcc,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x95,0x1,0x0, 0x0,0xb2,0x1,0x0,0x0,0xd2,0x1,0x0,0x0,0xeb,0x1,0x0,0x0,0x3,0x2,0x0, 0x0,0x14,0x2,0x0,0x0,0x3c,0x2,0x0,0x0,0xc0,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xec,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x1a,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x3a,0x0,0x0, 0x0,0x47,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x7c,0x0,0x0, 0x0,0x96,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xb8,0x0,0x0, 0x0,0xc0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x82,0x1,0x0, 0x0,0x9d,0x1,0x0,0x0,0xbb,0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0xf0,0x1,0x0, 0x0,0x6,0x2,0x0,0x0,0x18,0x2,0x0,0x0,0xb9,0x5,0x0,0x0,0xc1,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xeb,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x31,0x0,0x0, 0x0,0x3b,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x5a,0x0,0x0, 0x0,0x7b,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0xac,0x0,0x0, 0x0,0xb9,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x71,0x1,0x0, 0x0,0x89,0x1,0x0,0x0,0x9e,0x1,0x0,0x0,0xbc,0x1,0x0,0x0,0xd9,0x1,0x0, 0x0,0xf1,0x1,0x0,0x0,0xa,0x2,0x0,0x0,0x17,0x2,0x0,0x0,0xba,0x5,0x0, 0x0,0xc2,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xea,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x2f,0xe,0x83,0x0,0x18,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0xb1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x1b,0x1,0x0, 0x0,0x23,0x1,0x0,0x0,0x2a,0x1,0x0,0x0,0x3f,0x1,0x0,0x0,0x51,0x1,0x0, 0x0,0x5e,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x93,0x2,0x0, 0x0,0xa0,0x2,0x0,0x0,0xae,0x2,0x0,0x0,0xb9,0x2,0x0,0x0,0xc3,0x2,0x0, 0x0,0xd8,0x2,0x0,0x0,0xe2,0x2,0x0,0x0,0xee,0x2,0x0,0x0,0xfd,0x2,0x0, 0x0,0x1b,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x3f,0x75,0x5,0x0,0x44,0x7a,0x5,0x0,0x5,0x0,0x0,0x0,0xe9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0xd,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0xe6,0x0,0x0, 0x0,0xf4,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x52,0x1,0x0,0x0,0x5c,0x1,0x0, 0x0,0x7f,0x1,0x0,0x0,0xa0,0x1,0x0,0x0,0xbf,0x1,0x0,0x0,0xdb,0x1,0x0, 0x0,0x0,0x2,0x0,0x0,0x23,0x2,0x0,0x0,0x77,0x5,0x0,0x0,0x7e,0x5,0x0, 0x0,0x87,0x5,0x0,0x0,0x8f,0x5,0x0,0x0,0x96,0x5,0x0,0x0,0x9f,0x5,0x0, 0x0,0xa7,0x5,0x0,0x0,0xad,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xe8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xdf,0x0,0x0, 0x0,0xeb,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x57,0x1,0x0, 0x0,0x73,0x1,0x0,0x0,0x91,0x1,0x0,0x0,0xcd,0x1,0x0,0x0,0xf3,0x1,0x0, 0x0,0x16,0x2,0x0,0x0,0x70,0x5,0x0,0x0,0x78,0x5,0x0,0x0,0x80,0x5,0x0, 0x0,0x88,0x5,0x0,0x0,0x8c,0x5,0x0,0x0,0x95,0x5,0x0,0x0,0x9d,0x5,0x0, 0x0,0xa5,0x5,0x0,0x0,0xae,0x5,0x0,0x0,0xb7,0x5,0x0,0x0,0x44,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xe7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x64,0x0,0x0, 0x0,0xda,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x9,0x1,0x0, 0x0,0x17,0x1,0x0,0x0,0x5f,0x1,0x0,0x0,0x84,0x1,0x0,0x0,0xa1,0x1,0x0, 0x0,0xc9,0x1,0x0,0x0,0xe4,0x1,0x0,0x0,0x8,0x2,0x0,0x0,0x20,0x2,0x0, 0x0,0x76,0x5,0x0,0x0,0x7c,0x5,0x0,0x0,0x84,0x5,0x0,0x0,0x8e,0x5,0x0, 0x0,0x97,0x5,0x0,0x0,0x9e,0x5,0x0,0x0,0xa6,0x5,0x0,0x0,0xb5,0x5,0x0, 0x0,0xaf,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xe6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x9c,0x0,0x0, 0x0,0xb7,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x1e,0x1,0x0, 0x0,0x26,0x1,0x0,0x0,0x2e,0x1,0x0,0x0,0x47,0x1,0x0,0x0,0x56,0x1,0x0, 0x0,0x62,0x1,0x0,0x0,0x69,0x2,0x0,0x0,0x72,0x2,0x0,0x0,0x8a,0x2,0x0, 0x0,0x96,0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0xb1,0x2,0x0,0x0,0xbb,0x2,0x0, 0x0,0xc6,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0xdc,0x2,0x0,0x0,0xeb,0x2,0x0, 0x0,0xf4,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xe5,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x19,0x0,0x0, 0x0,0x25,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x41,0x0,0x0, 0x0,0x4f,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x88,0x0,0x0, 0x0,0xa0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xbf,0x0,0x0, 0x0,0xcf,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x98,0x1,0x0, 0x0,0xc4,0x1,0x0,0x0,0xdf,0x1,0x0,0x0,0xf7,0x1,0x0,0x0,0xb,0x2,0x0, 0x0,0x1b,0x2,0x0,0x0,0xbb,0x5,0x0,0x0,0xc3,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xe4,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xc,0x4,0x83,0x0,0x18,0x0,0x0, 0x0,0x28,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x4c,0x0,0x0, 0x0,0x56,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xa7,0x0,0x0, 0x0,0xb0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x76,0x1,0x0, 0x0,0xa6,0x1,0x0,0x0,0xc6,0x1,0x0,0x0,0xe2,0x1,0x0,0x0,0xf,0x2,0x0, 0x0,0x1e,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0x0,0x0, 0x0,0x1c,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x32,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5, 0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5, 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe2,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x9a,0x0,0x0, 0x0,0xb3,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x1d,0x1,0x0, 0x0,0x25,0x1,0x0,0x0,0x2b,0x1,0x0,0x0,0x42,0x1,0x0,0x0,0x58,0x1,0x0, 0x0,0x63,0x1,0x0,0x0,0x6b,0x2,0x0,0x0,0x77,0x2,0x0,0x0,0x88,0x2,0x0, 0x0,0x98,0x2,0x0,0x0,0xa6,0x2,0x0,0x0,0xaf,0x2,0x0,0x0,0xbe,0x2,0x0, 0x0,0xc8,0x2,0x0,0x0,0xd4,0x2,0x0,0x0,0xdd,0x2,0x0,0x0,0xe7,0x2,0x0, 0x0,0xf8,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xe1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0xd,0x1,0x0, 0x0,0x19,0x1,0x0,0x0,0x2f,0x1,0x0,0x0,0x32,0x1,0x0,0x0,0x39,0x1,0x0, 0x0,0x3c,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x48,0x1,0x0,0x0,0x4f,0x1,0x0, 0x0,0x28,0x2,0x0,0x0,0x2c,0x2,0x0,0x0,0x33,0x2,0x0,0x0,0x37,0x2,0x0, 0x0,0x3b,0x2,0x0,0x0,0x43,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x4d,0x2,0x0, 0x0,0x53,0x2,0x0,0x0,0x59,0x2,0x0,0x0,0x5d,0x2,0x0,0x0,0x61,0x2,0x0, 0x0,0x65,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xe0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x5,0x1,0x0, 0x0,0xe,0x1,0x0,0x0,0x18,0x1,0x0,0x0,0x30,0x1,0x0,0x0,0x35,0x1,0x0, 0x0,0x3a,0x1,0x0,0x0,0x40,0x1,0x0,0x0,0x45,0x1,0x0,0x0,0x4a,0x1,0x0, 0x0,0x25,0x2,0x0,0x0,0x29,0x2,0x0,0x0,0x2f,0x2,0x0,0x0,0x35,0x2,0x0, 0x0,0x39,0x2,0x0,0x0,0x41,0x2,0x0,0x0,0x47,0x2,0x0,0x0,0x4b,0x2,0x0, 0x0,0x51,0x2,0x0,0x0,0x56,0x2,0x0,0x0,0x5b,0x2,0x0,0x0,0x5f,0x2,0x0, 0x0,0x63,0x2,0x0,0x0,0x67,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xdf,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x93,0x0,0x0, 0x0,0xa4,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xff,0x0,0x0, 0x0,0x20,0x1,0x0,0x0,0x27,0x1,0x0,0x0,0x33,0x1,0x0,0x0,0x4c,0x1,0x0, 0x0,0x5b,0x1,0x0,0x0,0x6a,0x1,0x0,0x0,0x6c,0x2,0x0,0x0,0x7b,0x2,0x0, 0x0,0x8e,0x2,0x0,0x0,0x99,0x2,0x0,0x0,0xa7,0x2,0x0,0x0,0xb2,0x2,0x0, 0x0,0xbf,0x2,0x0,0x0,0xc5,0x2,0x0,0x0,0xd2,0x2,0x0,0x0,0xdb,0x2,0x0, 0x0,0xe9,0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0xfe,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xde,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x94,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xdb,0x0,0x0, 0x0,0xa,0x1,0x0,0x0,0x21,0x1,0x0,0x0,0x28,0x1,0x0,0x0,0x36,0x1,0x0, 0x0,0x4e,0x1,0x0,0x0,0x59,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x6d,0x2,0x0, 0x0,0x81,0x2,0x0,0x0,0x8f,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0xa9,0x2,0x0, 0x0,0xb4,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,0xc9,0x2,0x0,0x0,0xd5,0x2,0x0, 0x0,0xde,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xdd,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x65,0x1,0x0, 0x0,0x67,0x1,0x0,0x0,0x68,0x1,0x0,0x0,0x69,0x1,0x0,0x0,0x9c,0x1,0x0, 0x0,0x30,0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0xbc,0x3,0x0,0x0,0x10,0x4,0x0, 0x0,0x59,0x4,0x0,0x0,0xd2,0x4,0x0,0x0,0xd3,0x4,0x0,0x0,0xd4,0x4,0x0, 0x0,0xd5,0x4,0x0,0x0,0xd6,0x4,0x0,0x0,0xd7,0x4,0x0,0x0,0xd8,0x4,0x0, 0x0,0xd9,0x4,0x0,0x0,0xda,0x4,0x0,0x0,0xdb,0x4,0x0,0x0,0xdc,0x4,0x0, 0x0,0xdd,0x4,0x0,0x0,0xde,0x4,0x0,0x0,0xdf,0x4,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xdc,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xe0,0x4,0x0,0x0,0xe7,0x4,0x0,0x0,0xec,0x4,0x0,0x0,0xf0,0x4,0x0, 0x0,0xf8,0x4,0x0,0x0,0xfc,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x7,0x5,0x0, 0x0,0xc,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x16,0x5,0x0,0x0,0x1c,0x5,0x0, 0x0,0x21,0x5,0x0,0x0,0x26,0x5,0x0,0x0,0x2c,0x5,0x0,0x0,0x31,0x5,0x0, 0x0,0x36,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x46,0x5,0x0, 0x0,0x4a,0x5,0x0,0x0,0x4f,0x5,0x0,0x0,0x53,0x5,0x0,0x0,0x5a,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xdb,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xad,0x9,0x83, 0x0,0x18,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0xe6,0x4,0x0,0x0,0xeb,0x4,0x0, 0x0,0xf2,0x4,0x0,0x0,0xf7,0x4,0x0,0x0,0xfd,0x4,0x0,0x0,0x2,0x5,0x0, 0x0,0x6,0x5,0x0,0x0,0xd,0x5,0x0,0x0,0x10,0x5,0x0,0x0,0x14,0x5,0x0, 0x0,0x19,0x5,0x0,0x0,0x1e,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x29,0x5,0x0, 0x0,0x2e,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x3a,0x5,0x0,0x0,0x3e,0x5,0x0, 0x0,0x44,0x5,0x0,0x0,0x4b,0x5,0x0,0x0,0x55,0x5,0x0,0x0,0x5b,0x5,0x0, 0x0,0xc9,0x3,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x3f,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xda,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0xe9,0x4,0x0, 0x0,0xed,0x4,0x0,0x0,0xf3,0x4,0x0,0x0,0xf6,0x4,0x0,0x0,0xfb,0x4,0x0, 0x0,0x1,0x5,0x0,0x0,0x5,0x5,0x0,0x0,0xb,0x5,0x0,0x0,0x11,0x5,0x0, 0x0,0x15,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1f,0x5,0x0,0x0,0x23,0x5,0x0, 0x0,0x2a,0x5,0x0,0x0,0x30,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0x3c,0x5,0x0, 0x0,0x40,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x49,0x5,0x0,0x0,0x4e,0x5,0x0, 0x0,0x54,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xe4,0x4,0x0, 0x0,0xe5,0x4,0x0,0x0,0xea,0x4,0x0,0x0,0xef,0x4,0x0,0x0,0xf4,0x4,0x0, 0x0,0xf9,0x4,0x0,0x0,0xfe,0x4,0x0,0x0,0x4,0x5,0x0,0x0,0x9,0x5,0x0, 0x0,0xe,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x18,0x5,0x0,0x0,0x1d,0x5,0x0, 0x0,0x22,0x5,0x0,0x0,0x28,0x5,0x0,0x0,0x2d,0x5,0x0,0x0,0x32,0x5,0x0, 0x0,0x37,0x5,0x0,0x0,0x3d,0x5,0x0,0x0,0x42,0x5,0x0,0x0,0x47,0x5,0x0, 0x0,0x4c,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x56,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xd8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xe3,0x4,0x0,0x0,0xe8,0x4,0x0,0x0,0xee,0x4,0x0,0x0,0xf1,0x4,0x0, 0x0,0xf5,0x4,0x0,0x0,0xfa,0x4,0x0,0x0,0xff,0x4,0x0,0x0,0x8,0x5,0x0, 0x0,0xa,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1b,0x5,0x0, 0x0,0x20,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x2b,0x5,0x0,0x0,0x2f,0x5,0x0, 0x0,0x34,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x3f,0x5,0x0,0x0,0x43,0x5,0x0, 0x0,0x48,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x52,0x5,0x0,0x0,0x58,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xd7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x57,0x5,0x0,0x0,0x5c,0x5,0x0, 0x0,0x38,0x5,0x0,0x0,0x5f,0x5,0x0,0x0,0x5e,0x5,0x0,0x0,0x60,0x5,0x0, 0x0,0x3,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x27,0x5,0x0,0x0,0x62,0x5,0x0, 0x0,0x63,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x65,0x5,0x0,0x0,0x66,0x5,0x0, 0x0,0x67,0x5,0x0,0x0,0x68,0x5,0x0,0x0,0x69,0x5,0x0,0x0,0x6a,0x5,0x0, 0x0,0x6b,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x6e,0x5,0x0, 0x0,0x6f,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd6,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0xcd,0x46,0x95,0x3,0x7,0x0,0x0,0x0,0xdd,0xff,0xff,0xff,0xdc,0xff,0xff, 0xff,0xdb,0xff,0xff,0xff,0xda,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xd8,0xff,0xff, 0xff,0xd7,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0xad,0x9,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x5,0x0,0x0,0x0,0xd5,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x11,0x0,0x0, 0x0,0xd4,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x13,0x1,0x0,0x0,0x55,0x1,0x0,0x0,0x70,0x1,0x0,0x0,0x8f,0x1,0x0, 0x0,0xb6,0x1,0x0,0x0,0xcc,0x1,0x0,0x0,0xf5,0x1,0x0,0x0,0x13,0x2,0x0, 0x0,0x20,0x4,0x0,0x0,0x72,0x5,0x0,0x0,0x7a,0x5,0x0,0x0,0x83,0x5,0x0, 0x0,0x8b,0x5,0x0,0x0,0x92,0x5,0x0,0x0,0x9a,0x5,0x0,0x0,0xa2,0x5,0x0, 0x0,0xaa,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd4,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xb,0x0,0x0, 0x0,0x16,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xf1,0x0,0x0, 0x0,0x3,0x1,0x0,0x0,0x16,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x8a,0x1,0x0, 0x0,0xaa,0x1,0x0,0x0,0xca,0x1,0x0,0x0,0xe9,0x1,0x0,0x0,0x10,0x2,0x0, 0x0,0x24,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x7f,0x5,0x0,0x0,0x86,0x5,0x0, 0x0,0x90,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0xa0,0x5,0x0,0x0,0xa8,0x5,0x0, 0x0,0xb0,0x5,0x0,0x0,0xb6,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd3,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x8,0x0,0x0, 0x0,0xc,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0xe3,0x0,0x0, 0x0,0xee,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x14,0x1,0x0,0x0,0x5a,0x1,0x0, 0x0,0x77,0x1,0x0,0x0,0x97,0x1,0x0,0x0,0xbd,0x1,0x0,0x0,0xd6,0x1,0x0, 0x0,0xf8,0x1,0x0,0x0,0x19,0x2,0x0,0x0,0x71,0x5,0x0,0x0,0x79,0x5,0x0, 0x0,0x81,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x91,0x5,0x0,0x0,0x99,0x5,0x0, 0x0,0xa1,0x5,0x0,0x0,0xa9,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xd2,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x5,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0xe0,0x0,0x0, 0x0,0xea,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x54,0x1,0x0, 0x0,0x6b,0x1,0x0,0x0,0x86,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0xc0,0x1,0x0, 0x0,0xd8,0x1,0x0,0x0,0xfb,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x73,0x5,0x0, 0x0,0x7b,0x5,0x0,0x0,0x82,0x5,0x0,0x0,0x8a,0x5,0x0,0x0,0x93,0x5,0x0, 0x0,0x9b,0x5,0x0,0x0,0xab,0x5,0x0,0x0,0xb2,0x5,0x0,0x0,0x60,0x0,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xd1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x17,0x0,0x0, 0x0,0xdc,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x6,0x1,0x0, 0x0,0x52,0x1,0x0,0x0,0x5c,0x1,0x0,0x0,0x7f,0x1,0x0,0x0,0xa0,0x1,0x0, 0x0,0xbf,0x1,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x23,0x2,0x0, 0x0,0x77,0x5,0x0,0x0,0x7e,0x5,0x0,0x0,0x87,0x5,0x0,0x0,0x8f,0x5,0x0, 0x0,0x96,0x5,0x0,0x0,0x9f,0x5,0x0,0x0,0xa7,0x5,0x0,0x0,0xad,0x5,0x0, 0x0,0xb3,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xd0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x14,0x0,0x0, 0x0,0xd5,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0xf9,0x0,0x0, 0x0,0x12,0x1,0x0,0x0,0x57,0x1,0x0,0x0,0x73,0x1,0x0,0x0,0x91,0x1,0x0, 0x0,0xcd,0x1,0x0,0x0,0xf3,0x1,0x0,0x0,0x16,0x2,0x0,0x0,0x70,0x5,0x0, 0x0,0x78,0x5,0x0,0x0,0x80,0x5,0x0,0x0,0x88,0x5,0x0,0x0,0x8c,0x5,0x0, 0x0,0x95,0x5,0x0,0x0,0x9d,0x5,0x0,0x0,0xa5,0x5,0x0,0x0,0xae,0x5,0x0, 0x0,0xb7,0x5,0x0,0x0,0x44,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xcf,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x12,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0xe7,0x0,0x0, 0x0,0xf5,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x17,0x1,0x0,0x0,0x5f,0x1,0x0, 0x0,0x84,0x1,0x0,0x0,0xa1,0x1,0x0,0x0,0xc9,0x1,0x0,0x0,0xe4,0x1,0x0, 0x0,0x8,0x2,0x0,0x0,0x20,0x2,0x0,0x0,0x76,0x5,0x0,0x0,0x7c,0x5,0x0, 0x0,0x84,0x5,0x0,0x0,0x8e,0x5,0x0,0x0,0x97,0x5,0x0,0x0,0x9e,0x5,0x0, 0x0,0xa6,0x5,0x0,0x0,0xb5,0x5,0x0,0x0,0xaf,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xce,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x50,0x47,0x95,0x3,0x7,0x0,0x0, 0x0,0xd5,0xff,0xff,0xff,0xd4,0xff,0xff,0xff,0xd3,0xff,0xff,0xff,0xd2,0xff,0xff, 0xff,0xd1,0xff,0xff,0xff,0xd0,0xff,0xff,0xff,0xcf,0xff,0xff,0xff,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x5,0x0,0x0,0x0,0xcd,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x24,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0x4a,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x80,0x0,0x0, 0x0,0x97,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0xba,0x0,0x0, 0x0,0xcb,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x8b,0x1,0x0, 0x0,0xa3,0x1,0x0,0x0,0xc5,0x1,0x0,0x0,0xe0,0x1,0x0,0x0,0xfc,0x1,0x0, 0x0,0xe,0x2,0x0,0x0,0x1d,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xcc,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x1d,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x33,0x0,0x0, 0x0,0x42,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x5f,0x0,0x0, 0x0,0x82,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xb2,0x0,0x0, 0x0,0xbc,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x7a,0x1,0x0, 0x0,0x92,0x1,0x0,0x0,0xae,0x1,0x0,0x0,0xd1,0x1,0x0,0x0,0xe7,0x1,0x0, 0x0,0x2,0x2,0x0,0x0,0x12,0x2,0x0,0x0,0x21,0x2,0x0,0x0,0xbe,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xcb,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x2e,0x0,0x0, 0x0,0x39,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x54,0x0,0x0, 0x0,0x78,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0xa9,0x0,0x0, 0x0,0xb5,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0xf3,0x0,0x0, 0x0,0x81,0x1,0x0,0x0,0x95,0x1,0x0,0x0,0xb2,0x1,0x0,0x0,0xd2,0x1,0x0, 0x0,0xeb,0x1,0x0,0x0,0x3,0x2,0x0,0x0,0x14,0x2,0x0,0x0,0x3c,0x2,0x0, 0x0,0xc0,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xca,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x26,0x0,0x0, 0x0,0x2f,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x51,0x0,0x0, 0x0,0x5b,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0xa3,0x0,0x0, 0x0,0xae,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xce,0x0,0x0, 0x0,0xf6,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x9d,0x1,0x0,0x0,0xbb,0x1,0x0, 0x0,0xd5,0x1,0x0,0x0,0xf0,0x1,0x0,0x0,0x6,0x2,0x0,0x0,0x18,0x2,0x0, 0x0,0xb9,0x5,0x0,0x0,0xc1,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x1f,0x0,0x0, 0x0,0x21,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x48,0x0,0x0, 0x0,0x50,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x8b,0x0,0x0, 0x0,0xa2,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0xc1,0x0,0x0, 0x0,0xd0,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x89,0x1,0x0,0x0,0x9e,0x1,0x0, 0x0,0xbc,0x1,0x0,0x0,0xd9,0x1,0x0,0x0,0xf1,0x1,0x0,0x0,0xa,0x2,0x0, 0x0,0x17,0x2,0x0,0x0,0xba,0x5,0x0,0x0,0xc2,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xc8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0x19,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x37,0x0,0x0, 0x0,0x41,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x7a,0x0,0x0, 0x0,0x88,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0xb6,0x0,0x0, 0x0,0xbf,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x85,0x1,0x0, 0x0,0x98,0x1,0x0,0x0,0xc4,0x1,0x0,0x0,0xdf,0x1,0x0,0x0,0xf7,0x1,0x0, 0x0,0xb,0x2,0x0,0x0,0x1b,0x2,0x0,0x0,0xbb,0x5,0x0,0x0,0xc3,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xc7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xc,0x4,0x83, 0x0,0x18,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x38,0x0,0x0, 0x0,0x4c,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x9b,0x0,0x0, 0x0,0xa7,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0xd2,0x0,0x0, 0x0,0x76,0x1,0x0,0x0,0xa6,0x1,0x0,0x0,0xc6,0x1,0x0,0x0,0xe2,0x1,0x0, 0x0,0xf,0x2,0x0,0x0,0x1e,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0xa,0x0,0x0, 0x0,0x10,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x2b,0x0,0x0, 0x0,0x32,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xbc,0x74,0x5, 0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5,0x0,0xbc,0x74,0x5, 0x0,0xbc,0x74,0x5,0x0,0x5,0x0,0x0,0x0,0xc6,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x2c,0x41,0x95,0x3,0x7,0x0,0x0,0x0,0xcd,0xff,0xff,0xff,0xcc,0xff,0xff, 0xff,0xcb,0xff,0xff,0xff,0xca,0xff,0xff,0xff,0xc9,0xff,0xff,0xff,0xc8,0xff,0xff, 0xff,0xc7,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0xc,0x4,0x83, 0x0,0x5,0x0,0x0,0x0,0xc5,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0xc,0x1,0x0, 0x0,0x10,0x1,0x0,0x0,0x2c,0x1,0x0,0x0,0x34,0x1,0x0,0x0,0x38,0x1,0x0, 0x0,0x3d,0x1,0x0,0x0,0x44,0x1,0x0,0x0,0x49,0x1,0x0,0x0,0x26,0x2,0x0, 0x0,0x2a,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x34,0x2,0x0,0x0,0x38,0x2,0x0, 0x0,0x3f,0x2,0x0,0x0,0x44,0x2,0x0,0x0,0x4a,0x2,0x0,0x0,0x4e,0x2,0x0, 0x0,0x55,0x2,0x0,0x0,0x5a,0x2,0x0,0x0,0x5e,0x2,0x0,0x0,0x62,0x2,0x0, 0x0,0x66,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc4,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x4,0x1,0x0, 0x0,0xb,0x1,0x0,0x0,0xf,0x1,0x0,0x0,0x1a,0x1,0x0,0x0,0x31,0x1,0x0, 0x0,0x37,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x41,0x1,0x0,0x0,0x46,0x1,0x0, 0x0,0x4d,0x1,0x0,0x0,0x27,0x2,0x0,0x0,0x2b,0x2,0x0,0x0,0x30,0x2,0x0, 0x0,0x36,0x2,0x0,0x0,0x3a,0x2,0x0,0x0,0x42,0x2,0x0,0x0,0x48,0x2,0x0, 0x0,0x4c,0x2,0x0,0x0,0x52,0x2,0x0,0x0,0x57,0x2,0x0,0x0,0x5c,0x2,0x0, 0x0,0x60,0x2,0x0,0x0,0x64,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc3,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xfd,0x0,0x0, 0x0,0x7,0x1,0x0,0x0,0xd,0x1,0x0,0x0,0x19,0x1,0x0,0x0,0x2f,0x1,0x0, 0x0,0x32,0x1,0x0,0x0,0x39,0x1,0x0,0x0,0x3c,0x1,0x0,0x0,0x43,0x1,0x0, 0x0,0x48,0x1,0x0,0x0,0x4f,0x1,0x0,0x0,0x28,0x2,0x0,0x0,0x2c,0x2,0x0, 0x0,0x33,0x2,0x0,0x0,0x37,0x2,0x0,0x0,0x3b,0x2,0x0,0x0,0x43,0x2,0x0, 0x0,0x49,0x2,0x0,0x0,0x4d,0x2,0x0,0x0,0x53,0x2,0x0,0x0,0x59,0x2,0x0, 0x0,0x5d,0x2,0x0,0x0,0x61,0x2,0x0,0x0,0x65,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xc2,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xfe,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0xe,0x1,0x0,0x0,0x18,0x1,0x0, 0x0,0x30,0x1,0x0,0x0,0x35,0x1,0x0,0x0,0x3a,0x1,0x0,0x0,0x40,0x1,0x0, 0x0,0x45,0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x25,0x2,0x0,0x0,0x29,0x2,0x0, 0x0,0x2f,0x2,0x0,0x0,0x35,0x2,0x0,0x0,0x39,0x2,0x0,0x0,0x41,0x2,0x0, 0x0,0x47,0x2,0x0,0x0,0x4b,0x2,0x0,0x0,0x51,0x2,0x0,0x0,0x56,0x2,0x0, 0x0,0x5b,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x63,0x2,0x0,0x0,0x67,0x2,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0xc1,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0x0,0x0, 0x0,0x13,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x34,0x0,0x0, 0x0,0x35,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x40,0x0,0x0, 0x0,0x45,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x59,0x0,0x0, 0x0,0x61,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x65,0x0,0x0, 0x0,0x66,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x69,0x0,0x0, 0x0,0x6a,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xc0,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x6c,0x0,0x0, 0x0,0x6d,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x70,0x0,0x0, 0x0,0x71,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x74,0x0,0x0, 0x0,0x75,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x79,0x0,0x0, 0x0,0x7e,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x85,0x0,0x0, 0x0,0x86,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x8a,0x0,0x0, 0x0,0x8c,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xbf,0xff,0xff, 0xff,0x4,0x0,0x5,0x0,0x79,0xcc,0x8c,0x4,0x2,0x0,0x0,0x0,0xb9,0xff,0xff, 0xff,0xb4,0xff,0xff,0xff,0x11,0x66,0x46,0x2,0x68,0x66,0x46,0x2,0x5,0x0,0x0, 0x0,0xbe,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x20,0x3d,0x12,0x3,0x6,0x0,0x0, 0x0,0xc5,0xff,0xff,0xff,0xc4,0xff,0xff,0xff,0xc3,0xff,0xff,0xff,0xc2,0xff,0xff, 0xff,0xc1,0xff,0xff,0xff,0xc0,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83,0x0,0x30,0xa,0x83, 0x0,0x5,0x0,0x0,0x0,0xbd,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0xad,0x0,0x0, 0x0,0xc6,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x22,0x1,0x0, 0x0,0x29,0x1,0x0,0x0,0x3e,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x5d,0x1,0x0, 0x0,0x6c,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0x85,0x2,0x0,0x0,0x90,0x2,0x0, 0x0,0x9d,0x2,0x0,0x0,0xaa,0x2,0x0,0x0,0xb6,0x2,0x0,0x0,0xc1,0x2,0x0, 0x0,0xcc,0x2,0x0,0x0,0xd7,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0xed,0x2,0x0, 0x0,0xfa,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xbc,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x67,0x1,0x0, 0x0,0x68,0x1,0x0,0x0,0x69,0x1,0x0,0x0,0x9c,0x1,0x0,0x0,0x30,0x3,0x0, 0x0,0x6a,0x3,0x0,0x0,0xbc,0x3,0x0,0x0,0x10,0x4,0x0,0x0,0x59,0x4,0x0, 0x0,0xd2,0x4,0x0,0x0,0xd3,0x4,0x0,0x0,0xd4,0x4,0x0,0x0,0xd5,0x4,0x0, 0x0,0xd6,0x4,0x0,0x0,0xd7,0x4,0x0,0x0,0xd8,0x4,0x0,0x0,0xd9,0x4,0x0, 0x0,0xda,0x4,0x0,0x0,0xdb,0x4,0x0,0x0,0xdc,0x4,0x0,0x0,0xdd,0x4,0x0, 0x0,0xde,0x4,0x0,0x0,0xdf,0x4,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xbb,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x87,0x1,0x0, 0x0,0x6e,0x1,0x0,0x0,0x88,0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x6f,0x1,0x0, 0x0,0x9a,0x1,0x0,0x0,0x99,0x1,0x0,0x0,0x72,0x1,0x0,0x0,0x6d,0x1,0x0, 0x0,0x96,0x1,0x0,0x0,0x78,0x1,0x0,0x0,0x83,0x1,0x0,0x0,0x8e,0x1,0x0, 0x0,0x80,0x1,0x0,0x0,0x7c,0x1,0x0,0x0,0x79,0x1,0x0,0x0,0x8c,0x1,0x0, 0x0,0x74,0x1,0x0,0x0,0x8d,0x1,0x0,0x0,0x7e,0x1,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xba,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0xdd,0x32,0x23,0x1,0x4,0x0,0x0, 0x0,0xbb,0xff,0xff,0xff,0xb7,0xff,0xff,0xff,0xad,0xff,0xff,0xff,0xaa,0xff,0xff, 0xff,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0x76,0xcc,0x48,0x0,0xcd,0xcc,0x48, 0x0,0x5,0x0,0x0,0x0,0xb9,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0x11,0x66,0x46, 0x2,0x2,0x0,0x0,0x0,0xba,0xff,0xff,0xff,0xb0,0xff,0xff,0xff,0xdd,0x32,0x23, 0x1,0x34,0x33,0x23,0x1,0x5,0x0,0x0,0x0,0xb8,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x1b,0x47,0x95,0x3,0x7,0x0,0x0,0x0,0xbc,0xff,0xff,0xff,0xa3,0xff,0xff, 0xff,0xa2,0xff,0xff,0xff,0xa1,0xff,0xff,0xff,0xa0,0xff,0xff,0xff,0x9f,0xff,0xff, 0xff,0x9e,0xff,0xff,0xff,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0xad,0x9,0x83, 0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83,0x0,0x3d,0xa,0x83, 0x0,0x5,0x0,0x0,0x0,0xb7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0xba,0x1,0x0,0x0,0xb0,0x1,0x0, 0x0,0x9f,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0xad,0x1,0x0,0x0,0xb3,0x1,0x0, 0x0,0xb9,0x1,0x0,0x0,0xab,0x1,0x0,0x0,0xb8,0x1,0x0,0x0,0xfa,0x0,0x0, 0x0,0xa4,0x1,0x0,0x0,0xaf,0x1,0x0,0x0,0xa8,0x1,0x0,0x0,0xb5,0x1,0x0, 0x0,0xb4,0x1,0x0,0x0,0xa7,0x1,0x0,0x0,0xa2,0x1,0x0,0x0,0xc1,0x1,0x0, 0x0,0xb1,0x1,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xb6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x89,0x2,0x0,0x0,0x79,0x2,0x0, 0x0,0x7,0x2,0x0,0x0,0x97,0x2,0x0,0x0,0xa5,0x2,0x0,0x0,0x5d,0x3,0x0, 0x0,0x6f,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x4f,0x3,0x0,0x0,0x11,0x2,0x0, 0x0,0x46,0x2,0x0,0x0,0xb5,0x2,0x0,0x0,0x32,0x2,0x0,0x0,0xca,0x2,0x0, 0x0,0x33,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0x61,0x3,0x0,0x0,0x80,0x2,0x0, 0x0,0xe5,0x2,0x0,0x0,0xf5,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xb5,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0x34,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0xb6,0xff,0xff, 0xff,0xac,0xff,0xff,0xff,0xab,0xff,0xff,0xff,0xa7,0xff,0xff,0xff,0xcd,0xcc,0x48, 0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0x5,0x0,0x0, 0x0,0xb4,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0x68,0x66,0x46,0x2,0x2,0x0,0x0, 0x0,0xb5,0xff,0xff,0xff,0xb2,0xff,0xff,0xff,0x34,0x33,0x23,0x1,0x34,0x33,0x23, 0x1,0x5,0x0,0x0,0x0,0xb3,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0xcd,0x2,0x0, 0x0,0x58,0x2,0x0,0x0,0x94,0x2,0x0,0x0,0x62,0x3,0x0,0x0,0xe1,0x2,0x0, 0x0,0x84,0x2,0x0,0x0,0x40,0x2,0x0,0x0,0x7d,0x2,0x0,0x0,0xbd,0x2,0x0, 0x0,0x5e,0x3,0x0,0x0,0xf0,0x2,0x0,0x0,0x75,0x3,0x0,0x0,0x9f,0x2,0x0, 0x0,0xad,0x2,0x0,0x0,0xfb,0x2,0x0,0x0,0x51,0x3,0x0,0x0,0x75,0x2,0x0, 0x0,0x6d,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xb2,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x34,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0xb3,0xff,0xff,0xff,0xaf,0xff,0xff, 0xff,0xae,0xff,0xff,0xff,0xa9,0xff,0xff,0xff,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48, 0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0x5,0x0,0x0,0x0,0xb1,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x30,0x4,0x0, 0x0,0xc9,0x4,0x0,0x0,0xe9,0x3,0x0,0x0,0xa8,0x4,0x0,0x0,0x9,0x4,0x0, 0x0,0x12,0x4,0x0,0x0,0xf6,0x3,0x0,0x0,0xd,0x4,0x0,0x0,0x95,0x4,0x0, 0x0,0xfc,0x3,0x0,0x0,0x66,0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x7b,0x4,0x0, 0x0,0xbb,0x4,0x0,0x0,0xcf,0x4,0x0,0x0,0xbe,0x4,0x0,0x0,0xcb,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x18,0x4,0x0,0x0,0x4a,0x4,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xb0,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x34,0x33,0x23,0x1,0x4,0x0,0x0, 0x0,0xb1,0xff,0xff,0xff,0xa8,0xff,0xff,0xff,0xa6,0xff,0xff,0xff,0xa5,0xff,0xff, 0xff,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48,0x0,0xcd,0xcc,0x48, 0x0,0x5,0x0,0x0,0x0,0xaf,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x8,0x4,0x0,0x0,0x4c,0x4,0x0,0x0,0x2,0x4,0x0, 0x0,0xb3,0x3,0x0,0x0,0xe,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x3e,0x4,0x0, 0x0,0x8c,0x3,0x0,0x0,0xfa,0x3,0x0,0x0,0xef,0x3,0x0,0x0,0x19,0x4,0x0, 0x0,0xcd,0x3,0x0,0x0,0x13,0x4,0x0,0x0,0xa0,0x3,0x0,0x0,0xdf,0x3,0x0, 0x0,0x6d,0x4,0x0,0x0,0x8a,0x3,0x0,0x0,0xd4,0x3,0x0,0x0,0xd9,0x3,0x0, 0x0,0x91,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xae,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0xc0,0x4,0x0, 0x0,0xe2,0x3,0x0,0x0,0xf,0x4,0x0,0x0,0xcc,0x4,0x0,0x0,0x82,0x4,0x0, 0x0,0xce,0x4,0x0,0x0,0xf2,0x3,0x0,0x0,0xde,0x3,0x0,0x0,0x15,0x4,0x0, 0x0,0x22,0x4,0x0,0x0,0xca,0x4,0x0,0x0,0xfb,0x3,0x0,0x0,0xb4,0x4,0x0, 0x0,0x68,0x4,0x0,0x0,0x3,0x4,0x0,0x0,0x53,0x4,0x0,0x0,0xae,0x4,0x0, 0x0,0x97,0x4,0x0,0x0,0x41,0x4,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xad,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x76,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x6b,0x3,0x0, 0x0,0x6,0x4,0x0,0x0,0x85,0x3,0x0,0x0,0xd2,0x3,0x0,0x0,0xdd,0x3,0x0, 0x0,0xe5,0x3,0x0,0x0,0x7b,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0xd8,0x3,0x0, 0x0,0x7d,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x8d,0x3,0x0,0x0,0x88,0x3,0x0, 0x0,0x82,0x3,0x0,0x0,0xaf,0x3,0x0,0x0,0xfe,0x3,0x0,0x0,0x9d,0x3,0x0, 0x0,0xf8,0x3,0x0,0x0,0x7f,0x3,0x0,0x0,0xc8,0x3,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x81,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xac,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0xff,0x3,0x0,0x0,0x44,0x4,0x0,0x0,0x90,0x3,0x0,0x0,0xd1,0x3,0x0, 0x0,0xdb,0x3,0x0,0x0,0xb6,0x3,0x0,0x0,0xd5,0x3,0x0,0x0,0x11,0x4,0x0, 0x0,0xf7,0x3,0x0,0x0,0x75,0x4,0x0,0x0,0x9f,0x3,0x0,0x0,0x2f,0x4,0x0, 0x0,0xe1,0x3,0x0,0x0,0x17,0x4,0x0,0x0,0x62,0x4,0x0,0x0,0x9c,0x4,0x0, 0x0,0xc,0x4,0x0,0x0,0xa5,0x3,0x0,0x0,0xb2,0x3,0x0,0x0,0x5,0x4,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0xab,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x9,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0xf4,0x1,0x0, 0x0,0xd3,0x1,0x0,0x0,0xfa,0x1,0x0,0x0,0x45,0x2,0x0,0x0,0x95,0x2,0x0, 0x0,0xda,0x1,0x0,0x0,0x68,0x2,0x0,0x0,0xed,0x1,0x0,0x0,0x7f,0x2,0x0, 0x0,0xb8,0x2,0x0,0x0,0xcb,0x2,0x0,0x0,0xcf,0x1,0x0,0x0,0x87,0x2,0x0, 0x0,0xdf,0x2,0x0,0x0,0x2d,0x2,0x0,0x0,0xa4,0x2,0x0,0x0,0xe3,0x1,0x0, 0x0,0xf3,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xaa,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xc2,0x1,0x0, 0x0,0x5,0x2,0x0,0x0,0xc7,0x2,0x0,0x0,0x9e,0x2,0x0,0x0,0xef,0x1,0x0, 0x0,0x1a,0x2,0x0,0x0,0x3e,0x2,0x0,0x0,0x54,0x2,0x0,0x0,0xcb,0x1,0x0, 0x0,0x7e,0x2,0x0,0x0,0x74,0x2,0x0,0x0,0xe6,0x1,0x0,0x0,0xd0,0x1,0x0, 0x0,0xd4,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0xf9,0x1,0x0,0x0,0xde,0x1,0x0, 0x0,0xc3,0x1,0x0,0x0,0xb0,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xa9,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xbd,0x3,0x0, 0x0,0xfd,0x3,0x0,0x0,0xa7,0x4,0x0,0x0,0xb1,0x4,0x0,0x0,0x16,0x4,0x0, 0x0,0xb1,0x3,0x0,0x0,0xa6,0x3,0x0,0x0,0x2b,0x4,0x0,0x0,0xb,0x4,0x0, 0x0,0x86,0x4,0x0,0x0,0x43,0x4,0x0,0x0,0x76,0x4,0x0,0x0,0xce,0x3,0x0, 0x0,0xda,0x3,0x0,0x0,0x57,0x4,0x0,0x0,0x12,0x3,0x0,0x0,0xd6,0x3,0x0, 0x0,0xe0,0x3,0x0,0x0,0xf0,0x3,0x0,0x0,0x4,0x4,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0xa8,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x7,0x4,0x0,0x0,0x6f,0x3,0x0,0x0,0x93,0x3,0x0,0x0,0xa2,0x3,0x0, 0x0,0x89,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x8e,0x3,0x0,0x0,0xd3,0x3,0x0, 0x0,0xdc,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x7c,0x3,0x0,0x0,0x81,0x3,0x0, 0x0,0x7a,0x3,0x0,0x0,0x84,0x3,0x0,0x0,0xe7,0x3,0x0,0x0,0xab,0x3,0x0, 0x0,0x65,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0xf9,0x3,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0xa7,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xe3,0x2,0x0,0x0,0x6e,0x3,0x0, 0x0,0x76,0x3,0x0,0x0,0x8f,0x3,0x0,0x0,0x5a,0x3,0x0,0x0,0x87,0x3,0x0, 0x0,0x80,0x3,0x0,0x0,0xf7,0x2,0x0,0x0,0x83,0x3,0x0,0x0,0xfc,0x2,0x0, 0x0,0xd0,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x4d,0x3,0x0, 0x0,0xb3,0x2,0x0,0x0,0x60,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x8b,0x3,0x0, 0x0,0xc2,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xa6,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xc,0x2,0x0, 0x0,0x8b,0x2,0x0,0x0,0x6e,0x2,0x0,0x0,0xe1,0x1,0x0,0x0,0xf6,0x1,0x0, 0x0,0xe4,0x2,0x0,0x0,0xd7,0x1,0x0,0x0,0x82,0x2,0x0,0x0,0xd3,0x2,0x0, 0x0,0x78,0x2,0x0,0x0,0x34,0x3,0x0,0x0,0x9a,0x2,0x0,0x0,0x31,0x2,0x0, 0x0,0xb7,0x2,0x0,0x0,0xee,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xf2,0x2,0x0, 0x0,0xa8,0x2,0x0,0x0,0xea,0x1,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0xa5,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x83,0x2,0x0, 0x0,0x50,0x2,0x0,0x0,0x71,0x2,0x0,0x0,0xac,0x2,0x0,0x0,0xd,0x2,0x0, 0x0,0x9b,0x2,0x0,0x0,0xe5,0x1,0x0,0x0,0xe8,0x2,0x0,0x0,0x3d,0x2,0x0, 0x0,0xf2,0x1,0x0,0x0,0xec,0x1,0x0,0x0,0x53,0x3,0x0,0x0,0x1,0x2,0x0, 0x0,0xd6,0x2,0x0,0x0,0x4b,0x3,0x0,0x0,0xdd,0x1,0x0,0x0,0x7c,0x2,0x0, 0x0,0xbc,0x2,0x0,0x0,0xf9,0x2,0x0,0x0,0x8d,0x2,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x0,0x0,0x0, 0x0,0x5,0x0,0x0,0x0,0xa3,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0xe0,0x4,0x0,0x0,0xe7,0x4,0x0,0x0,0xec,0x4,0x0, 0x0,0xf0,0x4,0x0,0x0,0xf8,0x4,0x0,0x0,0xfc,0x4,0x0,0x0,0x0,0x5,0x0, 0x0,0x7,0x5,0x0,0x0,0xc,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x16,0x5,0x0, 0x0,0x1c,0x5,0x0,0x0,0x21,0x5,0x0,0x0,0x26,0x5,0x0,0x0,0x2c,0x5,0x0, 0x0,0x31,0x5,0x0,0x0,0x36,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x41,0x5,0x0, 0x0,0x46,0x5,0x0,0x0,0x4a,0x5,0x0,0x0,0x4f,0x5,0x0,0x0,0x53,0x5,0x0, 0x0,0x5a,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xa2,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xad,0x9,0x83,0x0,0x18,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0xe6,0x4,0x0, 0x0,0xeb,0x4,0x0,0x0,0xf2,0x4,0x0,0x0,0xf7,0x4,0x0,0x0,0xfd,0x4,0x0, 0x0,0x2,0x5,0x0,0x0,0x6,0x5,0x0,0x0,0xd,0x5,0x0,0x0,0x10,0x5,0x0, 0x0,0x14,0x5,0x0,0x0,0x19,0x5,0x0,0x0,0x1e,0x5,0x0,0x0,0x24,0x5,0x0, 0x0,0x29,0x5,0x0,0x0,0x2e,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x3a,0x5,0x0, 0x0,0x3e,0x5,0x0,0x0,0x44,0x5,0x0,0x0,0x4b,0x5,0x0,0x0,0x55,0x5,0x0, 0x0,0x5b,0x5,0x0,0x0,0xc9,0x3,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x3f,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0xa1,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0xe1,0x4,0x0, 0x0,0xe9,0x4,0x0,0x0,0xed,0x4,0x0,0x0,0xf3,0x4,0x0,0x0,0xf6,0x4,0x0, 0x0,0xfb,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x5,0x5,0x0,0x0,0xb,0x5,0x0, 0x0,0x11,0x5,0x0,0x0,0x15,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1f,0x5,0x0, 0x0,0x23,0x5,0x0,0x0,0x2a,0x5,0x0,0x0,0x30,0x5,0x0,0x0,0x35,0x5,0x0, 0x0,0x3c,0x5,0x0,0x0,0x40,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x49,0x5,0x0, 0x0,0x4e,0x5,0x0,0x0,0x54,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0xa0,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0, 0x0,0xe4,0x4,0x0,0x0,0xe5,0x4,0x0,0x0,0xea,0x4,0x0,0x0,0xef,0x4,0x0, 0x0,0xf4,0x4,0x0,0x0,0xf9,0x4,0x0,0x0,0xfe,0x4,0x0,0x0,0x4,0x5,0x0, 0x0,0x9,0x5,0x0,0x0,0xe,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x18,0x5,0x0, 0x0,0x1d,0x5,0x0,0x0,0x22,0x5,0x0,0x0,0x28,0x5,0x0,0x0,0x2d,0x5,0x0, 0x0,0x32,0x5,0x0,0x0,0x37,0x5,0x0,0x0,0x3d,0x5,0x0,0x0,0x42,0x5,0x0, 0x0,0x47,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x56,0x5,0x0, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x5,0x0,0x0,0x0,0x9f,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83, 0x0,0x18,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0xe8,0x4,0x0,0x0,0xee,0x4,0x0, 0x0,0xf1,0x4,0x0,0x0,0xf5,0x4,0x0,0x0,0xfa,0x4,0x0,0x0,0xff,0x4,0x0, 0x0,0x8,0x5,0x0,0x0,0xa,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x17,0x5,0x0, 0x0,0x1b,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x2b,0x5,0x0, 0x0,0x2f,0x5,0x0,0x0,0x34,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x3f,0x5,0x0, 0x0,0x43,0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x52,0x5,0x0, 0x0,0x58,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x9e,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x57,0x5,0x0, 0x0,0x5c,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0x5f,0x5,0x0,0x0,0x5e,0x5,0x0, 0x0,0x60,0x5,0x0,0x0,0x3,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x27,0x5,0x0, 0x0,0x62,0x5,0x0,0x0,0x63,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x65,0x5,0x0, 0x0,0x66,0x5,0x0,0x0,0x67,0x5,0x0,0x0,0x68,0x5,0x0,0x0,0x69,0x5,0x0, 0x0,0x6a,0x5,0x0,0x0,0x6b,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x6d,0x5,0x0, 0x0,0x6e,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x9d,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0,0x0,0x91,0x0,0x0, 0x0,0xa1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xfc,0x0,0x0, 0x0,0x1f,0x1,0x0,0x0,0x24,0x1,0x0,0x0,0x2d,0x1,0x0,0x0,0x4b,0x1,0x0, 0x0,0x53,0x1,0x0,0x0,0x60,0x1,0x0,0x0,0x6a,0x2,0x0,0x0,0x73,0x2,0x0, 0x0,0x8c,0x2,0x0,0x0,0x92,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0xab,0x2,0x0, 0x0,0xba,0x2,0x0,0x0,0xc4,0x2,0x0,0x0,0xcf,0x2,0x0,0x0,0xd9,0x2,0x0, 0x0,0xea,0x2,0x0,0x0,0xf6,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x9c,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0x2f,0xe,0x83,0x0,0x18,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0xb1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x1b,0x1,0x0, 0x0,0x23,0x1,0x0,0x0,0x2a,0x1,0x0,0x0,0x3f,0x1,0x0,0x0,0x51,0x1,0x0, 0x0,0x5e,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x93,0x2,0x0, 0x0,0xa0,0x2,0x0,0x0,0xae,0x2,0x0,0x0,0xb9,0x2,0x0,0x0,0xc3,0x2,0x0, 0x0,0xd8,0x2,0x0,0x0,0xe2,0x2,0x0,0x0,0xee,0x2,0x0,0x0,0xfd,0x2,0x0, 0x0,0x1b,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0x3f,0x75,0x5,0x0,0x44,0x7a,0x5,0x0,0x5,0x0,0x0,0x0,0x9b,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x92,0x0,0x0, 0x0,0x9c,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xe9,0x0,0x0, 0x0,0x1e,0x1,0x0,0x0,0x26,0x1,0x0,0x0,0x2e,0x1,0x0,0x0,0x47,0x1,0x0, 0x0,0x56,0x1,0x0,0x0,0x62,0x1,0x0,0x0,0x69,0x2,0x0,0x0,0x72,0x2,0x0, 0x0,0x8a,0x2,0x0,0x0,0x96,0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0xb1,0x2,0x0, 0x0,0xbb,0x2,0x0,0x0,0xc6,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0xdc,0x2,0x0, 0x0,0xeb,0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0x9a,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x90,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xc9,0x0,0x0, 0x0,0xed,0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0x25,0x1,0x0,0x0,0x2b,0x1,0x0, 0x0,0x42,0x1,0x0,0x0,0x58,0x1,0x0,0x0,0x63,0x1,0x0,0x0,0x6b,0x2,0x0, 0x0,0x77,0x2,0x0,0x0,0x88,0x2,0x0,0x0,0x98,0x2,0x0,0x0,0xa6,0x2,0x0, 0x0,0xaf,0x2,0x0,0x0,0xbe,0x2,0x0,0x0,0xc8,0x2,0x0,0x0,0xd4,0x2,0x0, 0x0,0xdd,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0xf8,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x99,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0x30,0xa,0x83,0x0,0x18,0x0,0x0,0x0,0x93,0x0,0x0, 0x0,0xa4,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xff,0x0,0x0, 0x0,0x20,0x1,0x0,0x0,0x27,0x1,0x0,0x0,0x33,0x1,0x0,0x0,0x4c,0x1,0x0, 0x0,0x5b,0x1,0x0,0x0,0x6a,0x1,0x0,0x0,0x6c,0x2,0x0,0x0,0x7b,0x2,0x0, 0x0,0x8e,0x2,0x0,0x0,0x99,0x2,0x0,0x0,0xa7,0x2,0x0,0x0,0xb2,0x2,0x0, 0x0,0xbf,0x2,0x0,0x0,0xc5,0x2,0x0,0x0,0xd2,0x2,0x0,0x0,0xdb,0x2,0x0, 0x0,0xe9,0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0xfe,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0, 0x0,0x98,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x6e,0x94,0x7d,0x0,0x17,0x0,0x0, 0x0,0x94,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xdb,0x0,0x0, 0x0,0xa,0x1,0x0,0x0,0x21,0x1,0x0,0x0,0x28,0x1,0x0,0x0,0x36,0x1,0x0, 0x0,0x4e,0x1,0x0,0x0,0x59,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x6d,0x2,0x0, 0x0,0x81,0x2,0x0,0x0,0x8f,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0xa9,0x2,0x0, 0x0,0xb4,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,0xc9,0x2,0x0,0x0,0xd5,0x2,0x0, 0x0,0xde,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5, 0x0,0xc2,0x75,0x5,0x0,0xc2,0x75,0x5,0x0,0x5,0x0,0x0,0x0,0x97,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0x9,0xea,0x84,0x3,0x7,0x0,0x0,0x0,0xbd,0xff,0xff, 0xff,0x9d,0xff,0xff,0xff,0x9c,0xff,0xff,0xff,0x9b,0xff,0xff,0xff,0x9a,0xff,0xff, 0xff,0x99,0xff,0xff,0xff,0x98,0xff,0xff,0xff,0x30,0xa,0x83,0x0,0x6e,0x94,0x7d, 0x0,0x2f,0xe,0x83,0x0,0x30,0xa,0x83,0x0,0x6e,0x94,0x7d,0x0,0x30,0xa,0x83, 0x0,0x6e,0x94,0x7d,0x0,0x5,0x0,0x0,0x0,0x96,0xff,0xff,0xff,0x4,0x0,0x5, 0x0,0x22,0xfa,0xeb,0x14,0x6,0x0,0x0,0x0,0xd6,0xff,0xff,0xff,0xce,0xff,0xff, 0xff,0xc6,0xff,0xff,0xff,0xbe,0xff,0xff,0xff,0x97,0xff,0xff,0xff,0x6c,0xff,0xff, 0xff,0xcd,0x46,0x95,0x3,0x50,0x47,0x95,0x3,0x2c,0x41,0x95,0x3,0x20,0x3d,0x12, 0x3,0x9,0xea,0x84,0x3,0xb0,0x3,0x95,0x3,0x5,0x0,0x0,0x0,0x95,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x87,0x1,0x0, 0x0,0x6e,0x1,0x0,0x0,0x88,0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x6f,0x1,0x0, 0x0,0x9a,0x1,0x0,0x0,0x99,0x1,0x0,0x0,0x72,0x1,0x0,0x0,0x6d,0x1,0x0, 0x0,0x96,0x1,0x0,0x0,0x78,0x1,0x0,0x0,0x83,0x1,0x0,0x0,0x8e,0x1,0x0, 0x0,0x80,0x1,0x0,0x0,0x7c,0x1,0x0,0x0,0x79,0x1,0x0,0x0,0x8c,0x1,0x0, 0x0,0x74,0x1,0x0,0x0,0x8d,0x1,0x0,0x0,0x7e,0x1,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x94,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0xbe,0x1,0x0,0x0,0xba,0x1,0x0,0x0,0xb0,0x1,0x0,0x0,0x9f,0x1,0x0, 0x0,0xa5,0x1,0x0,0x0,0xad,0x1,0x0,0x0,0xb3,0x1,0x0,0x0,0xb9,0x1,0x0, 0x0,0xab,0x1,0x0,0x0,0xb8,0x1,0x0,0x0,0xfa,0x0,0x0,0x0,0xa4,0x1,0x0, 0x0,0xaf,0x1,0x0,0x0,0xa8,0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0xb4,0x1,0x0, 0x0,0xa7,0x1,0x0,0x0,0xa2,0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0xb1,0x1,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x93,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0x76,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0x6,0x4,0x0,0x0,0x85,0x3,0x0, 0x0,0xd2,0x3,0x0,0x0,0xdd,0x3,0x0,0x0,0xe5,0x3,0x0,0x0,0x7b,0x3,0x0, 0x0,0xc1,0x3,0x0,0x0,0xd8,0x3,0x0,0x0,0x7d,0x3,0x0,0x0,0x74,0x3,0x0, 0x0,0x8d,0x3,0x0,0x0,0x88,0x3,0x0,0x0,0x82,0x3,0x0,0x0,0xaf,0x3,0x0, 0x0,0xfe,0x3,0x0,0x0,0x9d,0x3,0x0,0x0,0xf8,0x3,0x0,0x0,0x7f,0x3,0x0, 0x0,0xc8,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x81,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x92,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xc2,0x1,0x0, 0x0,0x5,0x2,0x0,0x0,0xc7,0x2,0x0,0x0,0x9e,0x2,0x0,0x0,0xef,0x1,0x0, 0x0,0x1a,0x2,0x0,0x0,0x3e,0x2,0x0,0x0,0x54,0x2,0x0,0x0,0xcb,0x1,0x0, 0x0,0x7e,0x2,0x0,0x0,0x74,0x2,0x0,0x0,0xe6,0x1,0x0,0x0,0xd0,0x1,0x0, 0x0,0xd4,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0xf9,0x1,0x0,0x0,0xde,0x1,0x0, 0x0,0xc3,0x1,0x0,0x0,0xb0,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x91,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0xda,0x32,0x23,0x1,0x4,0x0,0x0,0x0,0x95,0xff,0xff, 0xff,0x94,0xff,0xff,0xff,0x93,0xff,0xff,0xff,0x92,0xff,0xff,0xff,0xcc,0xcc,0x48, 0x0,0xcc,0xcc,0x48,0x0,0x76,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0x5,0x0,0x0, 0x0,0x90,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x30,0x4,0x0,0x0,0xc9,0x4,0x0,0x0,0xe9,0x3,0x0,0x0,0xa8,0x4,0x0, 0x0,0x9,0x4,0x0,0x0,0x12,0x4,0x0,0x0,0xf6,0x3,0x0,0x0,0xd,0x4,0x0, 0x0,0x95,0x4,0x0,0x0,0xfc,0x3,0x0,0x0,0x66,0x4,0x0,0x0,0xcd,0x4,0x0, 0x0,0x7b,0x4,0x0,0x0,0xbb,0x4,0x0,0x0,0xcf,0x4,0x0,0x0,0xbe,0x4,0x0, 0x0,0xcb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x18,0x4,0x0,0x0,0x4a,0x4,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x8f,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x6f,0x3,0x0,0x0,0x93,0x3,0x0, 0x0,0xa2,0x3,0x0,0x0,0x89,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x8e,0x3,0x0, 0x0,0xd3,0x3,0x0,0x0,0xdc,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x7c,0x3,0x0, 0x0,0x81,0x3,0x0,0x0,0x7a,0x3,0x0,0x0,0x84,0x3,0x0,0x0,0xe7,0x3,0x0, 0x0,0xab,0x3,0x0,0x0,0x65,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x4,0x0, 0x0,0xf9,0x3,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x8e,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xc,0x2,0x0, 0x0,0x8b,0x2,0x0,0x0,0x6e,0x2,0x0,0x0,0xe1,0x1,0x0,0x0,0xf6,0x1,0x0, 0x0,0xe4,0x2,0x0,0x0,0xd7,0x1,0x0,0x0,0x82,0x2,0x0,0x0,0xd3,0x2,0x0, 0x0,0x78,0x2,0x0,0x0,0x34,0x3,0x0,0x0,0x9a,0x2,0x0,0x0,0x31,0x2,0x0, 0x0,0xb7,0x2,0x0,0x0,0xee,0x1,0x0,0x0,0xff,0x1,0x0,0x0,0xf2,0x2,0x0, 0x0,0xa8,0x2,0x0,0x0,0xea,0x1,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x8d,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x83,0x2,0x0, 0x0,0x50,0x2,0x0,0x0,0x71,0x2,0x0,0x0,0xac,0x2,0x0,0x0,0xd,0x2,0x0, 0x0,0x9b,0x2,0x0,0x0,0xe5,0x1,0x0,0x0,0xe8,0x2,0x0,0x0,0x3d,0x2,0x0, 0x0,0xf2,0x1,0x0,0x0,0xec,0x1,0x0,0x0,0x53,0x3,0x0,0x0,0x1,0x2,0x0, 0x0,0xd6,0x2,0x0,0x0,0x4b,0x3,0x0,0x0,0xdd,0x1,0x0,0x0,0x7c,0x2,0x0, 0x0,0xbc,0x2,0x0,0x0,0xf9,0x2,0x0,0x0,0x8d,0x2,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x8c,0xff,0xff,0xff,0x2,0x0,0x5,0x0,0x30,0x33,0x23,0x1,0x4,0x0,0x0, 0x0,0x90,0xff,0xff,0xff,0x8f,0xff,0xff,0xff,0x8e,0xff,0xff,0xff,0x8d,0xff,0xff, 0xff,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48, 0x0,0x5,0x0,0x0,0x0,0x8b,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0xa,0x66,0x46, 0x2,0x2,0x0,0x0,0x0,0x91,0xff,0xff,0xff,0x8c,0xff,0xff,0xff,0xda,0x32,0x23, 0x1,0x30,0x33,0x23,0x1,0x5,0x0,0x0,0x0,0x8a,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x89,0x2,0x0,0x0,0x79,0x2,0x0, 0x0,0x7,0x2,0x0,0x0,0x97,0x2,0x0,0x0,0xa5,0x2,0x0,0x0,0x5d,0x3,0x0, 0x0,0x6f,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x4f,0x3,0x0,0x0,0x11,0x2,0x0, 0x0,0x46,0x2,0x0,0x0,0xb5,0x2,0x0,0x0,0x32,0x2,0x0,0x0,0xca,0x2,0x0, 0x0,0x33,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0x61,0x3,0x0,0x0,0x80,0x2,0x0, 0x0,0xe5,0x2,0x0,0x0,0xf5,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x89,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0x44,0x4,0x0,0x0,0x90,0x3,0x0,0x0,0xd1,0x3,0x0,0x0,0xdb,0x3,0x0, 0x0,0xb6,0x3,0x0,0x0,0xd5,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0xf7,0x3,0x0, 0x0,0x75,0x4,0x0,0x0,0x9f,0x3,0x0,0x0,0x2f,0x4,0x0,0x0,0xe1,0x3,0x0, 0x0,0x17,0x4,0x0,0x0,0x62,0x4,0x0,0x0,0x9c,0x4,0x0,0x0,0xc,0x4,0x0, 0x0,0xa5,0x3,0x0,0x0,0xb2,0x3,0x0,0x0,0x5,0x4,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x88,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x9,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0xf4,0x1,0x0,0x0,0xd3,0x1,0x0, 0x0,0xfa,0x1,0x0,0x0,0x45,0x2,0x0,0x0,0x95,0x2,0x0,0x0,0xda,0x1,0x0, 0x0,0x68,0x2,0x0,0x0,0xed,0x1,0x0,0x0,0x7f,0x2,0x0,0x0,0xb8,0x2,0x0, 0x0,0xcb,0x2,0x0,0x0,0xcf,0x1,0x0,0x0,0x87,0x2,0x0,0x0,0xdf,0x2,0x0, 0x0,0x2d,0x2,0x0,0x0,0xa4,0x2,0x0,0x0,0xe3,0x1,0x0,0x0,0xf3,0x2,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x87,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xe3,0x2,0x0,0x0,0x6e,0x3,0x0, 0x0,0x76,0x3,0x0,0x0,0x8f,0x3,0x0,0x0,0x5a,0x3,0x0,0x0,0x87,0x3,0x0, 0x0,0x80,0x3,0x0,0x0,0xf7,0x2,0x0,0x0,0x83,0x3,0x0,0x0,0xfc,0x2,0x0, 0x0,0xd0,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x4d,0x3,0x0, 0x0,0xb3,0x2,0x0,0x0,0x60,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x8b,0x3,0x0, 0x0,0xc2,0x2,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x86,0xff,0xff,0xff,0x2,0x0,0x5, 0x0,0x30,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0x8a,0xff,0xff,0xff,0x89,0xff,0xff, 0xff,0x88,0xff,0xff,0xff,0x87,0xff,0xff,0xff,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48, 0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0x5,0x0,0x0,0x0,0x85,0xff,0xff, 0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0x4c,0x3,0x0, 0x0,0x1c,0x2,0x0,0x0,0xcd,0x2,0x0,0x0,0x58,0x2,0x0,0x0,0x94,0x2,0x0, 0x0,0x62,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x84,0x2,0x0,0x0,0x40,0x2,0x0, 0x0,0x7d,0x2,0x0,0x0,0xbd,0x2,0x0,0x0,0x5e,0x3,0x0,0x0,0xf0,0x2,0x0, 0x0,0x75,0x3,0x0,0x0,0x9f,0x2,0x0,0x0,0xad,0x2,0x0,0x0,0xfb,0x2,0x0, 0x0,0x51,0x3,0x0,0x0,0x75,0x2,0x0,0x0,0x6d,0x3,0x0,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0, 0x0,0x84,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0, 0x0,0x8,0x4,0x0,0x0,0x4c,0x4,0x0,0x0,0x2,0x4,0x0,0x0,0xb3,0x3,0x0, 0x0,0xe,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x3e,0x4,0x0,0x0,0x8c,0x3,0x0, 0x0,0xfa,0x3,0x0,0x0,0xef,0x3,0x0,0x0,0x19,0x4,0x0,0x0,0xcd,0x3,0x0, 0x0,0x13,0x4,0x0,0x0,0xa0,0x3,0x0,0x0,0xdf,0x3,0x0,0x0,0x6d,0x4,0x0, 0x0,0x8a,0x3,0x0,0x0,0xd4,0x3,0x0,0x0,0xd9,0x3,0x0,0x0,0x91,0x3,0x0, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0x5,0x0,0x0,0x0,0x83,0xff,0xff,0xff,0x1,0x0,0x5,0x0,0xcc,0xcc,0x48, 0x0,0x14,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,0xe2,0x3,0x0, 0x0,0xf,0x4,0x0,0x0,0xcc,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0xce,0x4,0x0, 0x0,0xf2,0x3,0x0,0x0,0xde,0x3,0x0,0x0,0x15,0x4,0x0,0x0,0x22,0x4,0x0, 0x0,0xca,0x4,0x0,0x0,0xfb,0x3,0x0,0x0,0xb4,0x4,0x0,0x0,0x68,0x4,0x0, 0x0,0x3,0x4,0x0,0x0,0x53,0x4,0x0,0x0,0xae,0x4,0x0,0x0,0x97,0x4,0x0, 0x0,0x41,0x4,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x82,0xff,0xff,0xff,0x1,0x0,0x5, 0x0,0xcc,0xcc,0x48,0x0,0x14,0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0xfd,0x3,0x0, 0x0,0xa7,0x4,0x0,0x0,0xb1,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0xb1,0x3,0x0, 0x0,0xa6,0x3,0x0,0x0,0x2b,0x4,0x0,0x0,0xb,0x4,0x0,0x0,0x86,0x4,0x0, 0x0,0x43,0x4,0x0,0x0,0x76,0x4,0x0,0x0,0xce,0x3,0x0,0x0,0xda,0x3,0x0, 0x0,0x57,0x4,0x0,0x0,0x12,0x3,0x0,0x0,0xd6,0x3,0x0,0x0,0xe0,0x3,0x0, 0x0,0xf0,0x3,0x0,0x0,0x4,0x4,0x0,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3, 0x0,0xd7,0xa3,0x3,0x0,0xd7,0xa3,0x3,0x0,0x5,0x0,0x0,0x0,0x81,0xff,0xff, 0xff,0x2,0x0,0x5,0x0,0x30,0x33,0x23,0x1,0x4,0x0,0x0,0x0,0x85,0xff,0xff, 0xff,0x84,0xff,0xff,0xff,0x83,0xff,0xff,0xff,0x82,0xff,0xff,0xff,0xcc,0xcc,0x48, 0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0xcc,0xcc,0x48,0x0,0x5,0x0,0x0, 0x0,0x80,0xff,0xff,0xff,0x3,0x0,0x5,0x0,0x60,0x66,0x46,0x2,0x2,0x0,0x0, 0x0,0x86,0xff,0xff,0xff,0x81,0xff,0xff,0xff,0x30,0x33,0x23,0x1,0x30,0x33,0x23, 0x1,0x5,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x4,0x0,0x5,0x0,0x6a,0xcc,0x8c, 0x4,0x2,0x0,0x0,0x0,0x8b,0xff,0xff,0xff,0x80,0xff,0xff,0xff,0xa,0x66,0x46, 0x2,0x60,0x66,0x46,0x2,0x5,0x0,0x0,0x0,0x7e,0xff,0xff,0xff,0x6,0x0,0x5, 0x0,0x8c,0xc6,0x78,0x19,0x2,0x0,0x0,0x0,0x96,0xff,0xff,0xff,0x7f,0xff,0xff, 0xff,0x22,0xfa,0xeb,0x14,0x6a,0xcc,0x8c,0x4,0x4,0x0,0x0,0x0,0x7d,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0x10,0x83,0x0,0x18,0x0,0x0,0x0,0x7d,0x0,0x0, 0x0,0x46,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x15,0x1,0x0, 0x0,0xb4,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x7b,0x1,0x0, 0x0,0x7f,0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xcd,0x0,0x0, 0x0,0xd3,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0xe5,0x0,0x0, 0x0,0x90,0x1,0x0,0x0,0x61,0x1,0x0,0x0,0x4e,0x0,0x0,0x0,0x7d,0x1,0x0, 0x0,0x55,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0xbe,0x7e,0x5, 0x0,0x12,0x0,0x1,0x0,0xbe,0x7e,0x5,0x0,0x12,0x0,0x1,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x7b,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0x10,0x83, 0x0,0x18,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x3d,0x0,0x0, 0x0,0xa5,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0xb4,0x0,0x0,0x0,0xbd,0x0,0x0, 0x0,0x8,0x1,0x0,0x0,0x7b,0x1,0x0,0x0,0x7f,0x0,0x0,0x0,0xdd,0x0,0x0, 0x0,0xbb,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xf0,0x0,0x0, 0x0,0x5e,0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x61,0x1,0x0, 0x0,0x4e,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x55,0x0,0x0,0x0,0x99,0x0,0x0, 0x0,0xf2,0x0,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0xbe,0x7e,0x5,0x0,0x12,0x0,0x1,0x0,0xbe,0x7e,0x5, 0x0,0x12,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x79,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0xdc,0x1,0x0, 0x0,0xce,0x1,0x0,0x0,0x93,0x1,0x0,0x0,0x4,0x3,0x0,0x0,0x9,0x3,0x0, 0x0,0x7a,0x2,0x0,0x0,0x8,0x3,0x0,0x0,0x6,0x3,0x0,0x0,0x7,0x3,0x0, 0x0,0x9b,0x1,0x0,0x0,0xe8,0x1,0x0,0x0,0x5,0x3,0x0,0x0,0x1,0x3,0x0, 0x0,0xa,0x3,0x0,0x0,0xfe,0x1,0x0,0x0,0xc7,0x1,0x0,0x0,0x4,0x2,0x0, 0x0,0x2,0x3,0x0,0x0,0x15,0x2,0x0,0x0,0xfd,0x1,0x0,0x0,0x0,0x3,0x0, 0x0,0x22,0x2,0x0,0x0,0xac,0x1,0x0,0x0,0x3,0x3,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0, 0x0,0x78,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0, 0x0,0xdc,0x1,0x0,0x0,0xce,0x1,0x0,0x0,0x93,0x1,0x0,0x0,0x4,0x3,0x0, 0x0,0x9,0x3,0x0,0x0,0x7a,0x2,0x0,0x0,0x8,0x3,0x0,0x0,0x6,0x3,0x0, 0x0,0x7,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0xe8,0x1,0x0,0x0,0x5,0x3,0x0, 0x0,0x1,0x3,0x0,0x0,0xa,0x3,0x0,0x0,0xfe,0x1,0x0,0x0,0xc7,0x1,0x0, 0x0,0x4,0x2,0x0,0x0,0x2,0x3,0x0,0x0,0x15,0x2,0x0,0x0,0xfd,0x1,0x0, 0x0,0x0,0x3,0x0,0x0,0x22,0x2,0x0,0x0,0xac,0x1,0x0,0x0,0x3,0x3,0x0, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x77,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82, 0x0,0x18,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x23,0x3,0x0,0x0,0x1f,0x3,0x0, 0x0,0x1b,0x3,0x0,0x0,0x1e,0x3,0x0,0x0,0x19,0x3,0x0,0x0,0x17,0x3,0x0, 0x0,0x1d,0x3,0x0,0x0,0xd,0x3,0x0,0x0,0x13,0x3,0x0,0x0,0x15,0x3,0x0, 0x0,0x18,0x3,0x0,0x0,0x14,0x3,0x0,0x0,0x1c,0x3,0x0,0x0,0x22,0x3,0x0, 0x0,0xe,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x16,0x3,0x0,0x0,0x1a,0x3,0x0, 0x0,0x20,0x3,0x0,0x0,0x11,0x3,0x0,0x0,0x10,0x3,0x0,0x0,0x21,0x3,0x0, 0x0,0xf,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x76,0xff,0xff,0xff,0x1,0x0,0x4, 0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x23,0x3,0x0, 0x0,0x1f,0x3,0x0,0x0,0x1b,0x3,0x0,0x0,0x1e,0x3,0x0,0x0,0x19,0x3,0x0, 0x0,0x17,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0xd,0x3,0x0,0x0,0x13,0x3,0x0, 0x0,0x15,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x14,0x3,0x0,0x0,0x1c,0x3,0x0, 0x0,0x22,0x3,0x0,0x0,0xe,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x16,0x3,0x0, 0x0,0x1a,0x3,0x0,0x0,0x20,0x3,0x0,0x0,0x11,0x3,0x0,0x0,0x10,0x3,0x0, 0x0,0x21,0x3,0x0,0x0,0xf,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x75,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0x28,0x3,0x0, 0x0,0x27,0x3,0x0,0x0,0x29,0x3,0x0,0x0,0x2b,0x3,0x0,0x0,0x26,0x3,0x0, 0x0,0x35,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x3a,0x3,0x0,0x0,0x25,0x3,0x0, 0x0,0x24,0x3,0x0,0x0,0x32,0x3,0x0,0x0,0x3b,0x3,0x0,0x0,0x2f,0x3,0x0, 0x0,0x39,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x37,0x3,0x0,0x0,0x3c,0x3,0x0, 0x0,0x2c,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x2d,0x3,0x0,0x0,0x3d,0x3,0x0, 0x0,0x38,0x3,0x0,0x0,0x31,0x3,0x0,0x0,0x2a,0x3,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0, 0x0,0x74,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0, 0x0,0x28,0x3,0x0,0x0,0x27,0x3,0x0,0x0,0x29,0x3,0x0,0x0,0x2b,0x3,0x0, 0x0,0x26,0x3,0x0,0x0,0x35,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x3a,0x3,0x0, 0x0,0x25,0x3,0x0,0x0,0x24,0x3,0x0,0x0,0x32,0x3,0x0,0x0,0x3b,0x3,0x0, 0x0,0x2f,0x3,0x0,0x0,0x39,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x37,0x3,0x0, 0x0,0x3c,0x3,0x0,0x0,0x2c,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0x2d,0x3,0x0, 0x0,0x3d,0x3,0x0,0x0,0x38,0x3,0x0,0x0,0x31,0x3,0x0,0x0,0x2a,0x3,0x0, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x73,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82, 0x0,0x18,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x5b,0x3,0x0,0x0,0x3f,0x3,0x0, 0x0,0x44,0x3,0x0,0x0,0x45,0x3,0x0,0x0,0x55,0x3,0x0,0x0,0x5f,0x3,0x0, 0x0,0x50,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x47,0x3,0x0,0x0,0x41,0x3,0x0, 0x0,0x40,0x3,0x0,0x0,0x57,0x3,0x0,0x0,0x49,0x3,0x0,0x0,0x42,0x3,0x0, 0x0,0x43,0x3,0x0,0x0,0x46,0x3,0x0,0x0,0x54,0x3,0x0,0x0,0x4e,0x3,0x0, 0x0,0x52,0x3,0x0,0x0,0x48,0x3,0x0,0x0,0x56,0x3,0x0,0x0,0x58,0x3,0x0, 0x0,0x59,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x72,0xff,0xff,0xff,0x1,0x0,0x4, 0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x5b,0x3,0x0, 0x0,0x3f,0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x45,0x3,0x0,0x0,0x55,0x3,0x0, 0x0,0x5f,0x3,0x0,0x0,0x50,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x47,0x3,0x0, 0x0,0x41,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x57,0x3,0x0,0x0,0x49,0x3,0x0, 0x0,0x42,0x3,0x0,0x0,0x43,0x3,0x0,0x0,0x46,0x3,0x0,0x0,0x54,0x3,0x0, 0x0,0x4e,0x3,0x0,0x0,0x52,0x3,0x0,0x0,0x48,0x3,0x0,0x0,0x56,0x3,0x0, 0x0,0x58,0x3,0x0,0x0,0x59,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x71,0xff,0xff, 0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0xc6,0x3,0x0,0x0,0xc3,0x3,0x0,0x0,0xa7,0x3,0x0,0x0,0xac,0x3,0x0, 0x0,0xad,0x3,0x0,0x0,0xbf,0x3,0x0,0x0,0xb7,0x3,0x0,0x0,0xae,0x3,0x0, 0x0,0xa4,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0xc5,0x3,0x0,0x0,0xbe,0x3,0x0, 0x0,0xc2,0x3,0x0,0x0,0xb0,0x3,0x0,0x0,0xb5,0x3,0x0,0x0,0xa8,0x3,0x0, 0x0,0xa3,0x3,0x0,0x0,0xaa,0x3,0x0,0x0,0xb4,0x3,0x0,0x0,0xc0,0x3,0x0, 0x0,0xb9,0x3,0x0,0x0,0xba,0x3,0x0,0x0,0xb8,0x3,0x0,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0, 0x0,0x70,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0, 0x0,0xc4,0x3,0x0,0x0,0xc6,0x3,0x0,0x0,0xc3,0x3,0x0,0x0,0xa7,0x3,0x0, 0x0,0xac,0x3,0x0,0x0,0xad,0x3,0x0,0x0,0xbf,0x3,0x0,0x0,0xb7,0x3,0x0, 0x0,0xae,0x3,0x0,0x0,0xa4,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0xc5,0x3,0x0, 0x0,0xbe,0x3,0x0,0x0,0xc2,0x3,0x0,0x0,0xb0,0x3,0x0,0x0,0xb5,0x3,0x0, 0x0,0xa8,0x3,0x0,0x0,0xa3,0x3,0x0,0x0,0xaa,0x3,0x0,0x0,0xb4,0x3,0x0, 0x0,0xc0,0x3,0x0,0x0,0xb9,0x3,0x0,0x0,0xba,0x3,0x0,0x0,0xb8,0x3,0x0, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x6f,0xff,0xff,0xff,0x1,0x0,0x4,0x0,0xd0,0xfd,0x82, 0x0,0x18,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0x69,0x3,0x0,0x0,0x71,0x3,0x0, 0x0,0x79,0x3,0x0,0x0,0x97,0x3,0x0,0x0,0x95,0x3,0x0,0x0,0x94,0x3,0x0, 0x0,0x9a,0x3,0x0,0x0,0x70,0x3,0x0,0x0,0x68,0x3,0x0,0x0,0x6c,0x3,0x0, 0x0,0x9b,0x3,0x0,0x0,0xa1,0x3,0x0,0x0,0x92,0x3,0x0,0x0,0x9c,0x3,0x0, 0x0,0x96,0x3,0x0,0x0,0x73,0x3,0x0,0x0,0x9e,0x3,0x0,0x0,0x77,0x3,0x0, 0x0,0x99,0x3,0x0,0x0,0x72,0x3,0x0,0x0,0x98,0x3,0x0,0x0,0x67,0x3,0x0, 0x0,0x78,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5, 0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x6e,0xff,0xff,0xff,0x1,0x0,0x4, 0x0,0xd0,0xfd,0x82,0x0,0x18,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0x69,0x3,0x0, 0x0,0x71,0x3,0x0,0x0,0x79,0x3,0x0,0x0,0x97,0x3,0x0,0x0,0x95,0x3,0x0, 0x0,0x94,0x3,0x0,0x0,0x9a,0x3,0x0,0x0,0x70,0x3,0x0,0x0,0x68,0x3,0x0, 0x0,0x6c,0x3,0x0,0x0,0x9b,0x3,0x0,0x0,0xa1,0x3,0x0,0x0,0x92,0x3,0x0, 0x0,0x9c,0x3,0x0,0x0,0x96,0x3,0x0,0x0,0x73,0x3,0x0,0x0,0x9e,0x3,0x0, 0x0,0x77,0x3,0x0,0x0,0x99,0x3,0x0,0x0,0x72,0x3,0x0,0x0,0x98,0x3,0x0, 0x0,0x67,0x3,0x0,0x0,0x78,0x3,0x0,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1, 0x0,0x3e,0x75,0x5,0x0,0x0,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x6d,0xff,0xff, 0xff,0x2,0x0,0x4,0x0,0xb0,0x3,0x95,0x3,0x7,0x0,0x0,0x0,0x73,0xff,0xff, 0xff,0x6f,0xff,0xff,0xff,0x7d,0xff,0xff,0xff,0x77,0xff,0xff,0xff,0x75,0xff,0xff, 0xff,0x79,0xff,0xff,0xff,0x71,0xff,0xff,0xff,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0x10,0x83,0x0,0x5,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0x4,0x0,0x0,0x0,0x6c,0xff,0xff,0xff,0x2,0x0,0x4,0x0,0xb0,0x3,0x95, 0x3,0x7,0x0,0x0,0x0,0x72,0xff,0xff,0xff,0x6e,0xff,0xff,0xff,0x7b,0xff,0xff, 0xff,0x76,0xff,0xff,0xff,0x74,0xff,0xff,0xff,0x78,0xff,0xff,0xff,0x70,0xff,0xff, 0xff,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0x10,0x83,0x0,0x5,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1, 0x0,0xd0,0xfd,0x82,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,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,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x0,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x1,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x2,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x3,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xbf,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x4,0x1,0x1,0xa,0x1,0x0,0x0,0x0,0xbf,0xff,0xff,0xff,0x0,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xff,0xff, 0xff,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x6f,0x73,0x64,0x1,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x68,0x6f,0x73,0x74,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x72,0x61,0x63,0x6b,0x3,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x69,0x70,0x73,0x65, 0x72,0x76,0x69,0x63,0x65,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x72,0x6f,0x6f, 0x6d,0x5,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x64,0x61,0x74,0x61,0x63,0x65,0x6e, 0x74,0x65,0x72,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x72,0x6f,0x6f,0x74,0xa5, 0x5,0x0,0x0,0x6c,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x52,0x41,0x32,0x31,0x7e, 0x68,0x64,0x64,0x6d,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x32,0x31,0x6e, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x65,0x33,0x35,0x33,0x39,0x32,0x7e,0x68,0x64,0x64,0x6f,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x65,0x33,0x35,0x33,0x39, 0x32,0x70,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x79,0x36,0x31,0x38,0x32,0x36,0x7e,0x68,0x64,0x64,0x71,0xff,0xff,0xff, 0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x36,0x31, 0x38,0x32,0x36,0x72,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x65,0x30,0x33,0x38,0x36,0x36,0x7e,0x68,0x64,0x64,0x73,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x65, 0x30,0x33,0x38,0x36,0x36,0x74,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x33,0x31,0x34,0x31,0x36,0x7e,0x68,0x64,0x64, 0x75,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x79,0x33,0x31,0x34,0x31,0x36,0x76,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x32,0x32,0x39,0x35,0x32,0x7e,0x68, 0x64,0x64,0x77,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x79,0x32,0x32,0x39,0x35,0x32,0x78,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x79,0x33,0x33,0x30,0x34,0x39, 0x7e,0x68,0x64,0x64,0x79,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32, 0x35,0x33,0x39,0x33,0x39,0x79,0x33,0x33,0x30,0x34,0x39,0x7b,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x34,0x34,0x39, 0x32,0x38,0x7e,0x68,0x64,0x64,0x7d,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x34,0x34,0x39,0x32,0x38,0x7e,0xff,0xff, 0xff,0xb,0x0,0x0,0x0,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x7e,0x68,0x64,0x64, 0x7f,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x30,0x35,0x31,0x33,0x2d,0x52,0x2d,0x30, 0x30,0x36,0x30,0x7e,0x68,0x64,0x64,0x80,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x53, 0x35,0x31,0x33,0x2d,0x41,0x2d,0x49,0x50,0x36,0x33,0x7e,0x68,0x64,0x64,0x81,0xff, 0xff,0xff,0x8,0x0,0x0,0x0,0x42,0x41,0x31,0x32,0x7e,0x68,0x64,0x64,0x82,0xff, 0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62, 0x34,0x30,0x39,0x35,0x31,0x7e,0x68,0x64,0x64,0x83,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x37,0x38,0x34,0x32,0x39, 0x7e,0x68,0x64,0x64,0x84,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x33,0x37,0x33,0x32,0x37,0x7e,0x68,0x64,0x64,0x85, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38, 0x62,0x31,0x32,0x34,0x33,0x31,0x7e,0x68,0x64,0x64,0x86,0xff,0xff,0xff,0x8,0x0, 0x0,0x0,0x42,0x41,0x31,0x31,0x7e,0x68,0x64,0x64,0x87,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x34,0x30,0x31,0x38, 0x35,0x7e,0x68,0x64,0x64,0x88,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35, 0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x34,0x39,0x32,0x30,0x34,0x7e,0x68,0x64,0x64, 0x89,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31, 0x38,0x73,0x36,0x33,0x37,0x34,0x37,0x7e,0x68,0x64,0x64,0x8a,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x39,0x38,0x33, 0x31,0x33,0x7e,0x68,0x64,0x64,0x8b,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x53,0x35, 0x31,0x33,0x2d,0x41,0x2d,0x49,0x50,0x33,0x38,0x7e,0x68,0x64,0x64,0x8c,0xff,0xff, 0xff,0x8,0x0,0x0,0x0,0x42,0x41,0x31,0x30,0x7e,0x68,0x64,0x64,0x8d,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76,0x35, 0x31,0x35,0x35,0x39,0x7e,0x68,0x64,0x64,0x8e,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x77,0x30,0x33,0x31,0x36,0x36,0x7e, 0x68,0x64,0x64,0x8f,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39, 0x38,0x38,0x31,0x38,0x76,0x36,0x34,0x33,0x33,0x34,0x7e,0x68,0x64,0x64,0x90,0xff, 0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76, 0x34,0x37,0x31,0x30,0x30,0x7e,0x68,0x64,0x64,0x91,0xff,0xff,0xff,0x8,0x0,0x0, 0x0,0x42,0x41,0x30,0x39,0x7e,0x68,0x64,0x64,0x92,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x30,0x34,0x33,0x32,0x32, 0x7e,0x68,0x64,0x64,0x93,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x30,0x30,0x31,0x37,0x34,0x7e,0x68,0x64,0x64,0x94, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38, 0x62,0x30,0x30,0x30,0x34,0x37,0x7e,0x68,0x64,0x64,0x95,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x61,0x38,0x32,0x38,0x35, 0x37,0x7e,0x68,0x64,0x64,0x96,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x30,0x35,0x31, 0x33,0x2d,0x52,0x2d,0x30,0x30,0x35,0x30,0x7e,0x68,0x64,0x64,0x97,0xff,0xff,0xff, 0x8,0x0,0x0,0x0,0x52,0x41,0x31,0x37,0x7e,0x68,0x64,0x64,0x98,0xff,0xff,0xff, 0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x39,0x39, 0x39,0x32,0x31,0x7e,0x68,0x64,0x64,0x99,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x77,0x36,0x36,0x37,0x32,0x36,0x7e,0x68, 0x64,0x64,0x9a,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x68,0x30,0x38,0x39,0x32,0x34,0x7e,0x68,0x64,0x64,0x9b,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x76,0x32, 0x30,0x32,0x30,0x35,0x7e,0x68,0x64,0x64,0x9c,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x37,0x30,0x36,0x35,0x35,0x7e, 0x68,0x64,0x64,0x9d,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x77,0x38,0x36,0x39,0x30,0x36,0x7e,0x68,0x64,0x64,0x9e,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x70, 0x34,0x34,0x36,0x32,0x33,0x9f,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x37,0x36,0x38,0x34,0x38,0xa0,0xff,0xff,0xff, 0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6e,0x36,0x36, 0x37,0x31,0x35,0xa1,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x72,0x31,0x39,0x39,0x37,0x32,0xa2,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x39,0x38,0x36,0x36, 0x33,0xa3,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x72,0x33,0x35,0x37,0x33,0x35,0xa5,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76,0x35,0x31,0x35,0x35,0x39,0xa6, 0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38, 0x77,0x30,0x33,0x31,0x36,0x36,0xa7,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x34,0x30,0x31,0x38,0x35,0xa8,0xff,0xff, 0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x76,0x36, 0x34,0x33,0x33,0x34,0xa9,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x34,0x30,0x39,0x35,0x31,0xaa,0xff,0xff,0xff,0xf, 0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x30,0x34,0x33, 0x32,0x32,0xab,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38, 0x38,0x31,0x38,0x73,0x34,0x39,0x32,0x30,0x34,0xac,0xff,0xff,0xff,0xf,0x0,0x0, 0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x36,0x33,0x37,0x34,0x37, 0xad,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31, 0x38,0x62,0x30,0x30,0x31,0x37,0x34,0xae,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70, 0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62,0x37,0x38,0x34,0x32,0x39,0xaf,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x62, 0x33,0x37,0x33,0x32,0x37,0xb0,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x42,0x41,0x31, 0x30,0xb1,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38, 0x31,0x38,0x76,0x34,0x37,0x31,0x30,0x30,0xb2,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x42,0x41,0x31,0x32,0xb3,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37, 0x39,0x38,0x38,0x31,0x38,0x62,0x31,0x32,0x34,0x33,0x31,0xb4,0xff,0xff,0xff,0xb, 0x0,0x0,0x0,0x53,0x35,0x31,0x33,0x2d,0x41,0x2d,0x49,0x50,0x36,0x33,0xb5,0xff, 0xff,0xff,0x4,0x0,0x0,0x0,0x42,0x41,0x31,0x31,0xb6,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38,0x31,0x38,0x73,0x39,0x38,0x33,0x31, 0x33,0xb7,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39,0x38,0x38, 0x31,0x38,0x62,0x30,0x30,0x30,0x34,0x37,0xb8,0xff,0xff,0xff,0x4,0x0,0x0,0x0, 0x52,0x41,0x30,0x31,0xb9,0xff,0xff,0xff,0xb,0x0,0x0,0x0,0x53,0x35,0x31,0x33, 0x2d,0x41,0x2d,0x49,0x50,0x33,0x38,0xba,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x42, 0x41,0x30,0x39,0xbb,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x35,0x37,0x39, 0x38,0x38,0x31,0x38,0x61,0x38,0x32,0x38,0x35,0x37,0xbc,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6e,0x34,0x34,0x35,0x36, 0x31,0xbd,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x68,0x34,0x39,0x33,0x32,0x30,0x7e,0x68,0x64,0x64,0xbe,0xff,0xff,0xff, 0x8,0x0,0x0,0x0,0x52,0x41,0x31,0x33,0x7e,0x68,0x64,0x64,0xbf,0xff,0xff,0xff, 0xb,0x0,0x0,0x0,0x30,0x35,0x31,0x33,0x2d,0x52,0x2d,0x30,0x30,0x36,0x30,0xc0, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x64,0x33,0x32,0x33,0x30,0x38,0x7e,0x68,0x64,0x64,0xc1,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x62,0x38,0x34,0x36,0x35, 0x39,0x7e,0x68,0x64,0x64,0xc2,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x75,0x31,0x39,0x30,0x36,0x38,0x7e,0x68,0x64,0x64, 0xc3,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x75,0x30,0x35,0x36,0x35,0x30,0x7e,0x68,0x64,0x64,0xc4,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x74,0x35,0x31,0x37, 0x36,0x30,0x7e,0x68,0x64,0x64,0xc5,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x76,0x31,0x35,0x31,0x37,0x34,0x7e,0x68,0x64, 0x64,0xc6,0xff,0xff,0xff,0x8,0x0,0x0,0x0,0x52,0x41,0x30,0x39,0x7e,0x68,0x64, 0x64,0xc7,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x68,0x39,0x34,0x31,0x34,0x34,0x7e,0x68,0x64,0x64,0xc8,0xff,0xff,0xff, 0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x74,0x31,0x31, 0x35,0x33,0x37,0x7e,0x68,0x64,0x64,0xc9,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x38,0x38,0x38,0x33,0x35,0x7e,0x68, 0x64,0x64,0xca,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x6a,0x34,0x34,0x31,0x39,0x38,0x7e,0x68,0x64,0x64,0xcb,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x73,0x30, 0x39,0x31,0x39,0x30,0x7e,0x68,0x64,0x64,0xcc,0xff,0xff,0xff,0x13,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x30,0x33,0x39,0x35,0x37,0x7e, 0x68,0x64,0x64,0xcd,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x73,0x39,0x30,0x32,0x39,0x38,0x7e,0x68,0x64,0x64,0xce,0xff, 0xff,0xff,0x8,0x0,0x0,0x0,0x52,0x41,0x30,0x35,0x7e,0x68,0x64,0x64,0xcf,0xff, 0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71, 0x35,0x34,0x31,0x32,0x31,0x7e,0x68,0x64,0x64,0xd0,0xff,0xff,0xff,0x13,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x32,0x34,0x32,0x33,0x39, 0x7e,0x68,0x64,0x64,0xd1,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32, 0x35,0x33,0x39,0x33,0x39,0x71,0x38,0x30,0x35,0x38,0x32,0x7e,0x68,0x64,0x64,0xd2, 0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x71,0x37,0x38,0x39,0x34,0x31,0x7e,0x68,0x64,0x64,0xd3,0xff,0xff,0xff,0x13,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6d,0x35,0x38,0x30,0x36, 0x36,0x7e,0x68,0x64,0x64,0xd4,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x35,0x39,0x39,0x32,0x36,0x7e,0x68,0x64,0x64, 0xd5,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x71,0x35,0x36,0x37,0x38,0x32,0x7e,0x68,0x64,0x64,0xd6,0xff,0xff,0xff,0x8, 0x0,0x0,0x0,0x52,0x41,0x30,0x31,0x7e,0x68,0x64,0x64,0xd7,0xff,0xff,0xff,0x13, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x70,0x34,0x34,0x36, 0x32,0x33,0x7e,0x68,0x64,0x64,0xd8,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x37,0x36,0x38,0x34,0x38,0x7e,0x68,0x64, 0x64,0xd9,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x6e,0x36,0x36,0x37,0x31,0x35,0x7e,0x68,0x64,0x64,0xda,0xff,0xff,0xff, 0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x31,0x39, 0x39,0x37,0x32,0x7e,0x68,0x64,0x64,0xdb,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x72,0x39,0x38,0x36,0x36,0x33,0x7e,0x68, 0x64,0x64,0xdc,0xff,0xff,0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x72,0x33,0x35,0x37,0x33,0x35,0x7e,0x68,0x64,0x64,0xdd,0xff,0xff, 0xff,0x13,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6e,0x34, 0x34,0x35,0x36,0x31,0x7e,0x68,0x64,0x64,0xde,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x66,0x39,0x39,0x39,0x32,0x31,0xdf, 0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x77,0x36,0x36,0x37,0x32,0x36,0xe0,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x75,0x31,0x39,0x30,0x36,0x38,0xe1,0xff,0xff, 0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x75,0x30, 0x35,0x36,0x35,0x30,0xe2,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32, 0x35,0x33,0x39,0x33,0x39,0x68,0x30,0x38,0x39,0x32,0x34,0xe4,0xff,0xff,0xff,0xf, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x39,0x34,0x31, 0x34,0x34,0xe5,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33, 0x39,0x33,0x39,0x74,0x31,0x31,0x35,0x33,0x37,0xe6,0xff,0xff,0xff,0xf,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x76,0x32,0x30,0x32,0x30,0x35, 0xe7,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x71,0x35,0x34,0x31,0x32,0x31,0xe8,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x32,0x34,0x32,0x33,0x39,0xe9,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71, 0x38,0x30,0x35,0x38,0x32,0xea,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36, 0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x37,0x30,0x36,0x35,0x35,0xeb,0xff,0xff,0xff, 0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x38,0x38, 0x38,0x33,0x35,0xec,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35, 0x33,0x39,0x33,0x39,0x6a,0x34,0x34,0x31,0x39,0x38,0xed,0xff,0xff,0xff,0xf,0x0, 0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x73,0x30,0x39,0x31,0x39, 0x30,0xee,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x77,0x38,0x36,0x39,0x30,0x36,0xef,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71,0x37,0x38,0x39,0x34,0x31,0xf0, 0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39, 0x6d,0x35,0x38,0x30,0x36,0x36,0xf1,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30, 0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6b,0x35,0x39,0x39,0x32,0x36,0xf2,0xff,0xff, 0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x31,0x37,0xf3,0xff,0xff,0xff,0xf,0x0,0x0, 0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x68,0x34,0x39,0x33,0x32,0x30, 0xf4,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33, 0x39,0x64,0x33,0x32,0x33,0x30,0x38,0xf5,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70, 0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x62,0x38,0x34,0x36,0x35,0x39,0xf6,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x74, 0x35,0x31,0x37,0x36,0x30,0xf7,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x31, 0x33,0xf8,0xff,0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39, 0x33,0x39,0x76,0x31,0x35,0x31,0x37,0x34,0xf9,0xff,0xff,0xff,0xf,0x0,0x0,0x0, 0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x6a,0x30,0x33,0x39,0x35,0x37,0xfa, 0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x30,0x39,0xfb,0xff,0xff,0xff,0xf, 0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x73,0x39,0x30,0x32, 0x39,0x38,0xfc,0xff,0xff,0xff,0x4,0x0,0x0,0x0,0x52,0x41,0x30,0x35,0xfd,0xff, 0xff,0xff,0xf,0x0,0x0,0x0,0x70,0x30,0x36,0x32,0x35,0x33,0x39,0x33,0x39,0x71, 0x35,0x36,0x37,0x38,0x32,0xfe,0xff,0xff,0xff,0xb,0x0,0x0,0x0,0x30,0x35,0x31, 0x33,0x2d,0x52,0x2d,0x30,0x30,0x35,0x30,0xff,0xff,0xff,0xff,0x7,0x0,0x0,0x0, 0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x30,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x2,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x3,0x0, 0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x4,0x0,0x0,0x0,0x5, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x7,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x8, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x9,0x0,0x0,0x0, 0x5,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0xa,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0xb,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x31,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x32,0xd,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x33,0xe,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0xf, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x10,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x11,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x12,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x13,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x39,0x14,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x30,0x15,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x31,0x16,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x17, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x18,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x19,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x1a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x1b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x37,0x1c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x38,0x1d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x39,0x1e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x1f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x20,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x21,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x22,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x23,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x35,0x24,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x36,0x25,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x37,0x26,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x27, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x28,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x29,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x2a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x2b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x33,0x2c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x34,0x2d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x35,0x2e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x2f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x30,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x31,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x32,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x33,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x31,0x34,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x32,0x35,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x33,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x37, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x38,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x39,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x3a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x3b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x39,0x3c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x30,0x3d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x31,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x3f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x40,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x41,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x42,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x43,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x37,0x44,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x38,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x39,0x46,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x47, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x48,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x49,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x4a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x4b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x35,0x4c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x36,0x4d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x37,0x4e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x4f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x50,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x51,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x52,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x53,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x33,0x54,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x34,0x55,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x35,0x56,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x57, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x58,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x59,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x5a,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x5b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x31,0x5c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x32,0x5d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x33,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x5f, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x60,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x61,0x0,0x0,0x0,0x6, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x62,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x63,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x39,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x30,0x30,0x65,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x30,0x31,0x66,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x30,0x32,0x67,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30, 0x33,0x68,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34, 0x69,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x35,0x6a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x36,0x6b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x37,0x6c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x38,0x6d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x6e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x30,0x6f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x31,0x70,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x71,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x31,0x33,0x72,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x31,0x34,0x73,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x31,0x35,0x74,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x31,0x36,0x75,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x31,0x37,0x76,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x31,0x38,0x77,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x31, 0x39,0x78,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x30, 0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x7a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x7b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x7c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x7d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x7e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x7f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x80,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x81,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x82,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x33,0x30,0x83,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x33,0x31,0x84,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x33,0x32,0x85,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x33,0x33,0x86,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x33,0x34,0x87,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33, 0x35,0x88,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36, 0x89,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x8a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x8b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x8c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x8d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x8e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x8f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x90,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x91,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x92,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x34,0x36,0x93,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x34,0x37,0x94,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x34,0x38,0x95,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x34,0x39,0x96,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x35,0x30,0x97,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35, 0x31,0x98,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x32, 0x99,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x33,0x9a, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x34,0x9b,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x35,0x9c,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x36,0x9d,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x37,0x9e,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x38,0x9f,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x35,0x39,0xa0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x30,0xa1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x36,0x31,0xa2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x36,0x32,0xa3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x36,0x33,0xa4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x36,0x34,0xa5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x36,0x35,0xa6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x36,0x36,0xa7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36, 0x37,0xa8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x38, 0xa9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x36,0x39,0xaa, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x30,0xab,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x31,0xac,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x32,0xad,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x33,0xae,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x34,0xaf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x35,0xb0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x37,0x36,0xb1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x37,0x37,0xb2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x37,0x38,0xb3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x37,0x39,0xb4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x38,0x30,0xb5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x38,0x31,0xb6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x38,0x32,0xb7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38, 0x33,0xb8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x34, 0xb9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x35,0xba, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x36,0xbb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x37,0xbc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x38,0xbd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x38,0x39,0xbe,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x39,0x30,0xbf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x39,0x31,0xc0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x39,0x32,0xc1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x31,0x39,0x33,0xc2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x31,0x39,0x34,0xc3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x31,0x39,0x35,0xc4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x31,0x39,0x36,0xc5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x31,0x39,0x37,0xc6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31, 0x39,0x38,0xc7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x31,0x39, 0x39,0xc8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x30, 0xc9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x31,0xca, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x32,0xcb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x33,0xcc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x34,0xcd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x35,0xce,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x36,0xcf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x37,0xd0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x30,0x38,0xd1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x30,0x39,0xd2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x31,0x30,0xd3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x31,0x31,0xd4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x31,0x32,0xd5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x31,0x33,0xd6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x31,0x34,0xd7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31, 0x35,0xd8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x36, 0xd9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x37,0xda, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x38,0xdb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x31,0x39,0xdc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x30,0xdd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x31,0xde,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x32,0xdf,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x33,0xe0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x32,0x34,0xe1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x32,0x35,0xe2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x32,0x36,0xe3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x32,0x37,0xe4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x32,0x38,0xe5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x32,0x39,0xe6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x33,0x30,0xe7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33, 0x31,0xe8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x32, 0xe9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x33,0xea, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x34,0xeb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x35,0xec,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x36,0xed,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x37,0xee,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x38,0xef,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x33,0x39,0xf0,0x0,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x30,0xf1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x34,0x31,0xf2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x34,0x32,0xf3,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x34,0x33,0xf4,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x34,0x34,0xf5,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x34,0x35,0xf6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x34,0x36,0xf7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34, 0x37,0xf8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x38, 0xf9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x34,0x39,0xfa, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x30,0xfb,0x0, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x31,0xfc,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x32,0xfd,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x33,0xfe,0x0,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x34,0xff,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x35,0x0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x35,0x36,0x1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x35,0x37,0x2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x35,0x38,0x3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x35,0x39,0x4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x36,0x30,0x5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x36,0x31,0x6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x36,0x32,0x7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36, 0x33,0x8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x34, 0x9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x35,0xa, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x36,0xb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x37,0xc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x38,0xd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x36,0x39,0xe,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x37,0x30,0xf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x37,0x31,0x10,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x37,0x32,0x11,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x37,0x33,0x12,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x37,0x34,0x13,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x37,0x35,0x14,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x37,0x36,0x15,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x37,0x37,0x16,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x37,0x38,0x17,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x37, 0x39,0x18,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x30, 0x19,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x31,0x1a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x32,0x1b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x33,0x1c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x34,0x1d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x35,0x1e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x36,0x1f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x37,0x20,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x32,0x38,0x38,0x21,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x32,0x38,0x39,0x22,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x32,0x39,0x30,0x23,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x32,0x39,0x31,0x24,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x32,0x39,0x32,0x25,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x32,0x39,0x33,0x26,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32, 0x39,0x34,0x27,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39, 0x35,0x28,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x36, 0x29,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x37,0x2a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x38,0x2b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x32,0x39,0x39,0x2c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x30,0x2d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x31,0x2e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x32,0x2f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x33,0x30,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x30,0x34,0x31,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x30,0x35,0x32,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x30,0x36,0x33,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x30,0x37,0x34,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x30,0x38,0x35,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x30,0x39,0x36,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x31,0x30,0x37,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31, 0x31,0x38,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x32, 0x39,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x33,0x3a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x34,0x3b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x35,0x3c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x36,0x3d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x37,0x3e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x38,0x3f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x31,0x39,0x40,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x30,0x41,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x32,0x31,0x42,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x32,0x32,0x43,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x32,0x33,0x44,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x32,0x34,0x45,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x32,0x35,0x46,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x32,0x36,0x47,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32, 0x37,0x48,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x38, 0x49,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x32,0x39,0x4a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x30,0x4b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x31,0x4c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x32,0x4d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x33,0x4e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x34,0x4f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x35,0x50,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x33,0x36,0x51,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x33,0x37,0x52,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x33,0x38,0x53,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x33,0x39,0x54,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x34,0x30,0x55,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x34,0x31,0x56,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x34,0x32,0x57,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34, 0x33,0x58,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x34, 0x59,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x35,0x5a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x36,0x5b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x37,0x5c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x38,0x5d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x34,0x39,0x5e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x35,0x30,0x5f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x35,0x31,0x60,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x35,0x32,0x61,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x35,0x33,0x62,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x35,0x34,0x63,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x35,0x35,0x64,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x35,0x36,0x65,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x35,0x37,0x66,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x35,0x38,0x67,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x35, 0x39,0x68,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x30, 0x69,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x31,0x6a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x32,0x6b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x33,0x6c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x34,0x6d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x35,0x6e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x36,0x6f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x37,0x70,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x36,0x38,0x71,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x36,0x39,0x72,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x37,0x30,0x73,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x37,0x31,0x74,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x37,0x32,0x75,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x37,0x33,0x76,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x37,0x34,0x77,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37, 0x35,0x78,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x36, 0x79,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x37,0x7a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x38,0x7b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x37,0x39,0x7c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x30,0x7d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x31,0x7e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x32,0x7f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x33,0x80,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x33,0x38,0x34,0x81,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x33,0x38,0x35,0x82,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x33,0x38,0x36,0x83,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x33,0x38,0x37,0x84,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x33,0x38,0x38,0x85,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x33,0x38,0x39,0x86,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33, 0x39,0x30,0x87,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39, 0x31,0x88,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x32, 0x89,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x33,0x8a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x34,0x8b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x35,0x8c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x36,0x8d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x37,0x8e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x38,0x8f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x33,0x39,0x39,0x90,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x30,0x91,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x30,0x31,0x92,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x30,0x32,0x93,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x30,0x33,0x94,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x30,0x34,0x95,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x30,0x35,0x96,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x30,0x36,0x97,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30, 0x37,0x98,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x38, 0x99,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x30,0x39,0x9a, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x30,0x9b,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x31,0x9c,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x32,0x9d,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x33,0x9e,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x34,0x9f,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x35,0xa0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x31,0x36,0xa1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x31,0x37,0xa2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x31,0x38,0xa3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x31,0x39,0xa4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x32,0x30,0xa5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x32,0x31,0xa6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x32,0x32,0xa7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32, 0x33,0xa8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x34, 0xa9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x35,0xaa, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x36,0xab,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x37,0xac,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x38,0xad,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x32,0x39,0xae,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x33,0x30,0xaf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x33,0x31,0xb0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x33,0x32,0xb1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x33,0x33,0xb2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x33,0x34,0xb3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x33,0x35,0xb4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x33,0x36,0xb5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x33,0x37,0xb6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x33,0x38,0xb7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x33, 0x39,0xb8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x30, 0xb9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x31,0xba, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x32,0xbb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x33,0xbc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x34,0xbd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x35,0xbe,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x36,0xbf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x37,0xc0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x34,0x38,0xc1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x34,0x39,0xc2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x35,0x30,0xc3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x35,0x31,0xc4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x35,0x32,0xc5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x35,0x33,0xc6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x35,0x34,0xc7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35, 0x35,0xc8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x36, 0xc9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x37,0xca, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x38,0xcb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x35,0x39,0xcc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x30,0xcd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x31,0xce,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x32,0xcf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x33,0xd0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x36,0x34,0xd1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x36,0x35,0xd2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x36,0x36,0xd3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x36,0x37,0xd4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x36,0x38,0xd5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x36,0x39,0xd6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x37,0x30,0xd7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37, 0x31,0xd8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x32, 0xd9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x33,0xda, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x34,0xdb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x35,0xdc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x36,0xdd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x37,0xde,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x38,0xdf,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x37,0x39,0xe0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x30,0xe1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x38,0x31,0xe2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x38,0x32,0xe3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x38,0x33,0xe4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x34,0x38,0x34,0xe5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x34,0x38,0x35,0xe6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34, 0x38,0x36,0xe7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38, 0x37,0xe8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x38, 0xe9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x38,0x39,0xea, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x30,0xeb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x31,0xec,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x32,0xed,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x33,0xee,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x34,0xef,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x35,0xf0,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x34,0x39,0x36,0xf1,0x1,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x34,0x39,0x37,0xf2,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x34,0x39,0x38,0xf3,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x34,0x39,0x39,0xf4,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x30,0x30,0xf5,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x30,0x31,0xf6,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x30,0x32,0xf7,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30, 0x33,0xf8,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x34, 0xf9,0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x35,0xfa, 0x1,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x36,0xfb,0x1, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x37,0xfc,0x1,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x38,0xfd,0x1,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x30,0x39,0xfe,0x1,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x31,0x30,0xff,0x1,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x31,0x31,0x0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x31,0x32,0x1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x31,0x33,0x2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x31,0x34,0x3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x31,0x35,0x4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x31,0x36,0x5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x31,0x37,0x6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x31,0x38,0x7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x31, 0x39,0x8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x30, 0x9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x31,0xa, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x32,0xb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x33,0xc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x34,0xd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x35,0xe,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x36,0xf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x37,0x10,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x32,0x38,0x11,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x32,0x39,0x12,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x33,0x30,0x13,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x33,0x31,0x14,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x33,0x32,0x15,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x33,0x33,0x16,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x33,0x34,0x17,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33, 0x35,0x18,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x36, 0x19,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x37,0x1a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x38,0x1b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x33,0x39,0x1c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x30,0x1d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x31,0x1e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x32,0x1f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x33,0x20,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x34,0x34,0x21,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x34,0x35,0x22,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x34,0x36,0x23,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x34,0x37,0x24,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x34,0x38,0x25,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x34,0x39,0x26,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x35,0x30,0x27,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35, 0x31,0x28,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x32, 0x29,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x33,0x2a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x34,0x2b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x35,0x2c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x36,0x2d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x37,0x2e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x38,0x2f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x35,0x39,0x30,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x30,0x31,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x36,0x31,0x32,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x36,0x32,0x33,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x36,0x33,0x34,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x36,0x34,0x35,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x36,0x35,0x36,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x36,0x36,0x37,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36, 0x37,0x38,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x38, 0x39,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x36,0x39,0x3a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x30,0x3b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x31,0x3c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x32,0x3d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x33,0x3e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x34,0x3f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x35,0x40,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x37,0x36,0x41,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x37,0x37,0x42,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x37,0x38,0x43,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x37,0x39,0x44,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x38,0x30,0x45,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x38,0x31,0x46,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x38,0x32,0x47,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38, 0x33,0x48,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x34, 0x49,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x35,0x4a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x36,0x4b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x37,0x4c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x38,0x4d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x38,0x39,0x4e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x39,0x30,0x4f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x39,0x31,0x50,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x35,0x39,0x32,0x51,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x35,0x39,0x33,0x52,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x35,0x39,0x34,0x53,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x35,0x39,0x35,0x54,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x35,0x39,0x36,0x55,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x35,0x39,0x37,0x56,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35, 0x39,0x38,0x57,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x35,0x39, 0x39,0x58,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x30, 0x59,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x31,0x5a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x32,0x5b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x33,0x5c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x34,0x5d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x35,0x5e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x36,0x5f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x37,0x60,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x30,0x38,0x61,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x30,0x39,0x62,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x31,0x30,0x63,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x31,0x31,0x64,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x31,0x32,0x65,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x31,0x33,0x66,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x31,0x34,0x67,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31, 0x35,0x68,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x36, 0x69,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x37,0x6a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x38,0x6b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x31,0x39,0x6c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x30,0x6d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x31,0x6e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x32,0x6f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x33,0x70,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x32,0x34,0x71,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x32,0x35,0x72,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x32,0x36,0x73,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x32,0x37,0x74,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x32,0x38,0x75,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x32,0x39,0x76,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x33,0x30,0x77,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33, 0x31,0x78,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x32, 0x79,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x33,0x7a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x34,0x7b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x35,0x7c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x36,0x7d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x37,0x7e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x38,0x7f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x33,0x39,0x80,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x30,0x81,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x34,0x31,0x82,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x34,0x32,0x83,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x34,0x33,0x84,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x34,0x34,0x85,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x34,0x35,0x86,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x34,0x36,0x87,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34, 0x37,0x88,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x38, 0x89,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x34,0x39,0x8a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x30,0x8b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x31,0x8c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x32,0x8d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x33,0x8e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x34,0x8f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x35,0x90,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x35,0x36,0x91,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x35,0x37,0x92,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x35,0x38,0x93,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x35,0x39,0x94,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x36,0x30,0x95,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x36,0x31,0x96,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x36,0x32,0x97,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36, 0x33,0x98,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x34, 0x99,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x35,0x9a, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x36,0x9b,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x37,0x9c,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x38,0x9d,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x36,0x39,0x9e,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x37,0x30,0x9f,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x37,0x31,0xa0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x37,0x32,0xa1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x37,0x33,0xa2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x37,0x34,0xa3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x37,0x35,0xa4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x37,0x36,0xa5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x37,0x37,0xa6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x37,0x38,0xa7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x37, 0x39,0xa8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x30, 0xa9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x31,0xaa, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x32,0xab,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x33,0xac,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x34,0xad,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x35,0xae,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x36,0xaf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x37,0xb0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x36,0x38,0x38,0xb1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x36,0x38,0x39,0xb2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x36,0x39,0x30,0xb3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x36,0x39,0x31,0xb4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x36,0x39,0x32,0xb5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x36,0x39,0x33,0xb6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36, 0x39,0x34,0xb7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39, 0x35,0xb8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x36, 0xb9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x37,0xba, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x38,0xbb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x36,0x39,0x39,0xbc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x30,0xbd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x31,0xbe,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x32,0xbf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x33,0xc0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x30,0x34,0xc1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x30,0x35,0xc2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x30,0x36,0xc3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x30,0x37,0xc4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x30,0x38,0xc5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x30,0x39,0xc6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x31,0x30,0xc7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31, 0x31,0xc8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x32, 0xc9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x33,0xca, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x34,0xcb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x35,0xcc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x36,0xcd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x37,0xce,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x38,0xcf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x31,0x39,0xd0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x30,0xd1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x32,0x31,0xd2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x32,0x32,0xd3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x32,0x33,0xd4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x32,0x34,0xd5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x32,0x35,0xd6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x32,0x36,0xd7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32, 0x37,0xd8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x38, 0xd9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x32,0x39,0xda, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x30,0xdb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x31,0xdc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x32,0xdd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x33,0xde,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x34,0xdf,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x35,0xe0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x33,0x36,0xe1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x33,0x37,0xe2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x33,0x38,0xe3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x33,0x39,0xe4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x34,0x30,0xe5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x34,0x31,0xe6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x34,0x32,0xe7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34, 0x33,0xe8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x34, 0xe9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x35,0xea, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x36,0xeb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x37,0xec,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x38,0xed,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x34,0x39,0xee,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x35,0x30,0xef,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x35,0x31,0xf0,0x2,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x35,0x32,0xf1,0x2,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x35,0x33,0xf2,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x35,0x34,0xf3,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x35,0x35,0xf4,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x35,0x36,0xf5,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x35,0x37,0xf6,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x35,0x38,0xf7,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x35, 0x39,0xf8,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x30, 0xf9,0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x31,0xfa, 0x2,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x32,0xfb,0x2, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x33,0xfc,0x2,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x34,0xfd,0x2,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x35,0xfe,0x2,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x36,0xff,0x2,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x37,0x0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x36,0x38,0x1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x36,0x39,0x2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x37,0x30,0x3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x37,0x31,0x4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x37,0x32,0x5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x37,0x33,0x6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x37,0x34,0x7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37, 0x35,0x8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x36, 0x9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x37,0xa, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x38,0xb,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x37,0x39,0xc,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x30,0xd,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x31,0xe,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x32,0xf,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x33,0x10,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x37,0x38,0x34,0x11,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x37,0x38,0x35,0x12,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x37,0x38,0x36,0x13,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x37,0x38,0x37,0x14,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x37,0x38,0x38,0x15,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x37,0x38,0x39,0x16,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37, 0x39,0x30,0x17,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39, 0x31,0x18,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x32, 0x19,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x33,0x1a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x34,0x1b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x35,0x1c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x36,0x1d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x37,0x1e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x38,0x1f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x37,0x39,0x39,0x20,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x30,0x21,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x30,0x31,0x22,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x30,0x32,0x23,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x30,0x33,0x24,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x30,0x34,0x25,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x30,0x35,0x26,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x30,0x36,0x27,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30, 0x37,0x28,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x38, 0x29,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x30,0x39,0x2a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x30,0x2b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x31,0x2c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x32,0x2d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x33,0x2e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x34,0x2f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x35,0x30,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x31,0x36,0x31,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x31,0x37,0x32,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x31,0x38,0x33,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x31,0x39,0x34,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x32,0x30,0x35,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x32,0x31,0x36,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x32,0x32,0x37,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32, 0x33,0x38,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x34, 0x39,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x35,0x3a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x36,0x3b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x37,0x3c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x38,0x3d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x32,0x39,0x3e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x33,0x30,0x3f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x33,0x31,0x40,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x33,0x32,0x41,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x33,0x33,0x42,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x33,0x34,0x43,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x33,0x35,0x44,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x33,0x36,0x45,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x33,0x37,0x46,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x33,0x38,0x47,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x33, 0x39,0x48,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x30, 0x49,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x31,0x4a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x32,0x4b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x33,0x4c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x34,0x4d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x35,0x4e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x36,0x4f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x37,0x50,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x34,0x38,0x51,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x34,0x39,0x52,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x35,0x30,0x53,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x35,0x31,0x54,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x35,0x32,0x55,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x35,0x33,0x56,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x35,0x34,0x57,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35, 0x35,0x58,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x36, 0x59,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x37,0x5a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x38,0x5b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x35,0x39,0x5c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x30,0x5d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x31,0x5e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x32,0x5f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x33,0x60,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x36,0x34,0x61,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x36,0x35,0x62,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x36,0x36,0x63,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x36,0x37,0x64,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x36,0x38,0x65,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x36,0x39,0x66,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x37,0x30,0x67,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37, 0x31,0x68,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x32, 0x69,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x33,0x6a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x34,0x6b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x35,0x6c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x36,0x6d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x37,0x6e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x38,0x6f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x37,0x39,0x70,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x30,0x71,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x38,0x31,0x72,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x38,0x32,0x73,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x38,0x33,0x74,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x38,0x38,0x34,0x75,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x38,0x38,0x35,0x76,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38, 0x38,0x36,0x77,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38, 0x37,0x78,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x38, 0x79,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x38,0x39,0x7a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x30,0x7b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x31,0x7c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x32,0x7d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x33,0x7e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x34,0x7f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x35,0x80,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x38,0x39,0x36,0x81,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x38,0x39,0x37,0x82,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x38,0x39,0x38,0x83,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x38,0x39,0x39,0x84,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x30,0x30,0x85,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x30,0x31,0x86,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x30,0x32,0x87,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30, 0x33,0x88,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x34, 0x89,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x35,0x8a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x36,0x8b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x37,0x8c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x38,0x8d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x30,0x39,0x8e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x31,0x30,0x8f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x31,0x31,0x90,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x31,0x32,0x91,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x31,0x33,0x92,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x31,0x34,0x93,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x31,0x35,0x94,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x31,0x36,0x95,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x31,0x37,0x96,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x31,0x38,0x97,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x31, 0x39,0x98,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x30, 0x99,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x31,0x9a, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x32,0x9b,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x33,0x9c,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x34,0x9d,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x35,0x9e,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x36,0x9f,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x37,0xa0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x32,0x38,0xa1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x32,0x39,0xa2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x33,0x30,0xa3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x33,0x31,0xa4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x33,0x32,0xa5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x33,0x33,0xa6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x33,0x34,0xa7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33, 0x35,0xa8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x36, 0xa9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x37,0xaa, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x38,0xab,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x33,0x39,0xac,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x30,0xad,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x31,0xae,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x32,0xaf,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x33,0xb0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x34,0x34,0xb1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x34,0x35,0xb2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x34,0x36,0xb3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x34,0x37,0xb4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x34,0x38,0xb5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x34,0x39,0xb6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x35,0x30,0xb7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35, 0x31,0xb8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x32, 0xb9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x33,0xba, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x34,0xbb,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x35,0xbc,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x36,0xbd,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x37,0xbe,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x38,0xbf,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x35,0x39,0xc0,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x30,0xc1,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x36,0x31,0xc2,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x36,0x32,0xc3,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x36,0x33,0xc4,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x36,0x34,0xc5,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x36,0x35,0xc6,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x36,0x36,0xc7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36, 0x37,0xc8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x38, 0xc9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x36,0x39,0xcd, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x33,0xce,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x34,0xd1,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x37,0xd2,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x38,0xd3,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x37,0x39,0xd4,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x30,0xd5,0x3,0x0,0x0,0x7,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x31,0xd6,0x3,0x0,0x0,0x7,0x0,0x0,0x0, 0x6f,0x73,0x64,0x2e,0x39,0x38,0x32,0xd7,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f, 0x73,0x64,0x2e,0x39,0x38,0x33,0xd8,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73, 0x64,0x2e,0x39,0x38,0x34,0xd9,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64, 0x2e,0x39,0x38,0x35,0xda,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e, 0x39,0x38,0x36,0xdb,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39, 0x38,0x37,0xdc,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x38, 0x38,0xdd,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x38,0x39, 0xde,0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x30,0xdf, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x31,0xe0,0x3, 0x0,0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x32,0xe1,0x3,0x0, 0x0,0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x33,0xe2,0x3,0x0,0x0, 0x7,0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x34,0xe5,0x3,0x0,0x0,0x7, 0x0,0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x37,0xe7,0x3,0x0,0x0,0x7,0x0, 0x0,0x0,0x6f,0x73,0x64,0x2e,0x39,0x39,0x39,0xe9,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x30,0x31,0xef,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x30,0x37,0xf0,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x30,0x38,0xf2,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x30,0xf6,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x34,0xf7,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x35,0xf8,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x36,0xf9,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x37,0xfa,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x38,0xfb,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x31,0x39,0xfc,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x30,0xfd,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x31,0xfe,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x32,0xff,0x3,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x33,0x0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x34,0x1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x35,0x2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x36,0x3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x37,0x4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x38,0x5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x32,0x39,0x6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x30,0x7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x31,0x8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x32,0x9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x33,0xa,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x34,0xb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x35,0xc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x36,0xd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x37,0xe,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x38,0xf,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x33,0x39,0x10,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x30,0x11,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x31,0x12,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x32,0x13,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x33,0x15,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x35,0x16,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x36,0x17,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x37,0x18,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x38,0x19,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x34,0x39,0x20,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x35,0x36,0x22,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x35,0x38,0x2b,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x36,0x37,0x2f,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x37,0x31,0x30,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x37,0x32,0x3e,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x38,0x36,0x41,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x38,0x39,0x43,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x31,0x44,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x32,0x4a,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x30,0x39,0x38,0x4c,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x30,0x30,0x53,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x30,0x37,0x57,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x31,0x31,0x59,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x31,0x33,0x62,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x32,0x66,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x36,0x68,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x32,0x38,0x6d,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x33,0x33,0x75,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x34,0x31,0x76,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x34,0x32,0x7b,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x34,0x37,0x82,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x35,0x34,0x86,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x35,0x38,0x95,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x37,0x33,0x97,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x37,0x35,0x9c,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x38,0x30,0xa7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x39,0x31,0xa8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x39,0x32,0xae,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x31,0x39,0x38,0xb1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x30,0x31,0xb4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x30,0x34,0xbb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x31,0xbe,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x34,0xc0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x31,0x36,0xc9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x35,0xca,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x36,0xcb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x37,0xcc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x38,0xcd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x32,0x39,0xce,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x30,0xcf,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x31,0xd2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x34,0xd3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x35,0xd4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x36,0xd5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x37,0xd6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x38,0xd7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x33,0x39,0xd8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x30,0xd9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x31,0xda,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x32,0xdb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x33,0xdc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x34,0xdd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x35,0xde,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x36,0xdf,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x37,0xe0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x38,0xe1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x34,0x39,0xe2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x30,0xe3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x31,0xe4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x32,0xe5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x33,0xe6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x34,0xe7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x35,0xe8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x36,0xe9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x37,0xea,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x38,0xeb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x35,0x39,0xec,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x30,0xed,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x31,0xee,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x32,0xef,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x33,0xf0,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x34,0xf1,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x35,0xf2,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x36,0xf3,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x37,0xf4,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x38,0xf5,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x36,0x39,0xf6,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x30,0xf7,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x31,0xf8,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x32,0xf9,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x33,0xfa,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x34,0xfb,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x35,0xfc,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x36,0xfd,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x37,0xfe,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x38,0xff,0x4,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x37,0x39,0x0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x30,0x1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x31,0x2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x32,0x3,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x33,0x4,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x34,0x5,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x35,0x6,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x36,0x7,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x37,0x8,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x38,0x9,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x38,0x39,0xa,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x30,0xb,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x31,0xc,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x32,0xd,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x33,0xe,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x34,0xf,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x35,0x10,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x36,0x11,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x37,0x12,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x38,0x13,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x32,0x39,0x39,0x14,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x30,0x15,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x31,0x16,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x32,0x17,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x33,0x18,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x34,0x19,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x35,0x1a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x36,0x1b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x37,0x1c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x38,0x1d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x30,0x39,0x1e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x30,0x1f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x31,0x20,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x32,0x21,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x33,0x22,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x34,0x23,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x35,0x24,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x36,0x25,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x37,0x26,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x38,0x27,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x31,0x39,0x28,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x30,0x29,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x31,0x2a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x32,0x2b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x33,0x2c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x34,0x2d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x35,0x2e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x36,0x2f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x37,0x30,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x38,0x31,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x32,0x39,0x32,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x30,0x33,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x31,0x34,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x32,0x35,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x33,0x36,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x34,0x37,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x35,0x38,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x36,0x39,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x37,0x3a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x38,0x3b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x33,0x39,0x3c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x30,0x3d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x31,0x3e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x32,0x3f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x33,0x40,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x34,0x41,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x35,0x42,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x36,0x43,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x37,0x44,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x38,0x45,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x34,0x39,0x46,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x30,0x47,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x31,0x48,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x32,0x49,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x33,0x4a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x34,0x4b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x35,0x4c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x36,0x4d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x37,0x4e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x38,0x4f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x35,0x39,0x51,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x31,0x52,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x32,0x53,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x33,0x54,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x34,0x55,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x35,0x56,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x36,0x57,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x37,0x58,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x38,0x59,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x36,0x39,0x5a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x30,0x5b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x31,0x5c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x32,0x5d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x33,0x5e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x34,0x5f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x35,0x60,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x36,0x61,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x37,0x62,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x38,0x63,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x37,0x39,0x64,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x30,0x65,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x31,0x66,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x32,0x67,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x33,0x68,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x34,0x69,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x35,0x6a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x36,0x6b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x37,0x6c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x38,0x6d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x38,0x39,0x6e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x30,0x6f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x31,0x70,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x32,0x71,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x33,0x72,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x34,0x73,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x35,0x74,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x36,0x76,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x38,0x77,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x33,0x39,0x39,0x78,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x30,0x79,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x31,0x7a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x32,0x7b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x33,0x7c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x34,0x7e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x36,0x7f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x37,0x80,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x38,0x81,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x30,0x39,0x82,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x30,0x83,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x31,0x84,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x32,0x86,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x34,0x87,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x35,0x88,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x36,0x89,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x37,0x8a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x38,0x8b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x31,0x39,0x8c,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x30,0x8e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x32,0x8f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x33,0x90,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x34,0x91,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x35,0x92,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x36,0x93,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x37,0x95,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x32,0x39,0x96,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x30,0x97,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x31,0x98,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x32,0x99,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x33,0x9a,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x34,0x9b,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x35,0x9d,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x37,0x9e,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x38,0x9f,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x33,0x39,0xa0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x30,0xa1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x31,0xa2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x32,0xa5,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x35,0xa6,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x36,0xa7,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x37,0xa8,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x38,0xa9,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x34,0x39,0xaa,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x30,0xab,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x31,0xad,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x33,0xae,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x34,0xaf,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x35,0xb0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x36,0xb1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x37,0xb2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x38,0xb3,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x35,0x39,0xb5,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x31,0xb6,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x32,0xb7,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x33,0xb9,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x35,0xba,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x36,0xbb,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x37,0xbc,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x38,0xbd,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x36,0x39,0xbe,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x30,0xc0,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x32,0xc1,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x33,0xc2,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x34,0xc3,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x6f,0x73,0x64,0x2e,0x31,0x34,0x37,0x35,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0x0,0x64,0x61,0x74,0x61,0x1,0x0,0x0,0x0,0x8,0x0,0x0, 0x0,0x6d,0x65,0x74,0x61,0x64,0x61,0x74,0x61,0x2,0x0,0x0,0x0,0x3,0x0,0x0, 0x0,0x72,0x62,0x64,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x62,0x61,0x72,0x6e, 0x4,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4,0x1,0x16,0x0,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x6c,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x6e,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x70,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x72,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x74,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x76,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x78,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x7b,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x7e,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x80,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x81,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x82,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x83,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x84,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x85,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x86,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x87,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x88,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x89,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8a,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x8b,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8c,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x8d,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8e,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x8f,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x90,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x91,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x92,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x93,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x94,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x95,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x96,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x97,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x98,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x99,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x9a,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x9b,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x9c,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0x9d,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xbd,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xbe,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc0,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc2,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc3,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc4,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc5,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc6,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc8,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xc9,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xca,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xcb,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xcc,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xcd,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xce,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xcf,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd0,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd1,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd2,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd3,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd4,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd5,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd6,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd7,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xd8,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xd9,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xda,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xdb,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xdc,0xff,0xff,0xff,0x0, 0x0,0x0,0x0,0xdd,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x6d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x81,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9d,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xce,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xdc,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xde,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xe2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf2,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x20,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x44,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xae,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xbe,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xcd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xd,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x11,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x13,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x21,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x35,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x49,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x52,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x54,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x66,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x70,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x74,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x77,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x7e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x80,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x87,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x99,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x9b,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x9e,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xa8,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xaa,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x68, 0x64,0x64,0x48,0x0,0x0,0x0,0x6d,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6c,0xff,0xff,0xff,0x6f,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6e,0xff,0xff,0xff,0x71,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x70,0xff,0xff,0xff,0x73,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x72,0xff,0xff,0xff,0x75,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x74,0xff,0xff,0xff,0x77,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x76,0xff,0xff,0xff,0x79,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0xff,0xff,0xff,0x7d,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7b,0xff,0xff,0xff,0x9e,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd7,0xff,0xff,0xff,0x9f,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd8,0xff,0xff,0xff,0xa0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd9,0xff,0xff,0xff,0xa1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xda,0xff,0xff,0xff,0xa2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdb,0xff,0xff,0xff,0xa3,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdc,0xff,0xff,0xff,0xa5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8d,0xff,0xff,0xff,0xa6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8e,0xff,0xff,0xff,0xa7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x87,0xff,0xff,0xff,0xa8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8f,0xff,0xff,0xff,0xa9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0xff,0xff,0xff,0xaa,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x92,0xff,0xff,0xff,0xab,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x88,0xff,0xff,0xff,0xac,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x89,0xff,0xff,0xff,0xad,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0xff,0xff,0xff,0xae,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x83,0xff,0xff,0xff,0xaf,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x84,0xff,0xff,0xff,0xb0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8c,0xff,0xff,0xff,0xb1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x90,0xff,0xff,0xff,0xb2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x81,0xff,0xff,0xff,0xb3,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x85,0xff,0xff,0xff,0xb4,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x80,0xff,0xff,0xff,0xb5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x86,0xff,0xff,0xff,0xb6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8a,0xff,0xff,0xff,0xb7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x94,0xff,0xff,0xff,0xb8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd6,0xff,0xff,0xff,0xb9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8b,0xff,0xff,0xff,0xba,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x91,0xff,0xff,0xff,0xbb,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x95,0xff,0xff,0xff,0xbc,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdd,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7f,0xff,0xff,0xff,0xde,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x98,0xff,0xff,0xff,0xdf,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc2,0xff,0xff,0xff,0xe1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0xff,0xff,0xff,0xe2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0xff,0xff,0xff,0xe4,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc7,0xff,0xff,0xff,0xe5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc8,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9b,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcf,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd0,0xff,0xff,0xff,0xe9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd1,0xff,0xff,0xff,0xea,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9c,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc9,0xff,0xff,0xff,0xec,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xca,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcb,0xff,0xff,0xff,0xee,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9d,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd2,0xff,0xff,0xff,0xf0,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd3,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0xff,0xff,0xff,0xf2,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x97,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbd,0xff,0xff,0xff,0xf4,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc1,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc4,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbe,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc5,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcc,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc6,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcd,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xce,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd5,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x96,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7e,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x13,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x78, 0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x44,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x1,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x3,0x0, 0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x9d,0x1, 0x0,0x0,0x23,0x2,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55, 0x3,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x1,0x0,0x0, 0x2a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x15,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x88,0x2,0x0,0x0,0x4b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x13,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x0,0x0, 0x0,0xaa,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x12,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x66, 0x1,0x0,0x0,0x2c,0x2,0x0,0x0,0xba,0x3,0x0,0x0,0x22,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe0,0x2,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3a,0x5, 0x0,0x0,0x31,0x5,0x0,0x0,0xbf,0x3,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfa,0x2,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x22,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x57,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x17,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xf8,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xae,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5, 0x0,0x0,0x32,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0xee, 0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc9,0x3,0x0,0x0,0x1e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x31,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0xa1,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0xb6,0x5,0x0, 0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0xbb,0x3, 0x0,0x0,0xa7,0x5,0x0,0x0,0x27,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x33,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22, 0x3,0x0,0x0,0xbc,0x1,0x0,0x0,0x9c,0x1,0x0,0x0,0x24,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0x47,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x31,0x5,0x0,0x0,0x5b,0x5,0x0,0x0,0xbf,0x0,0x0,0x0,0xfc,0x0,0x0, 0x0,0xa1,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x39,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5c,0x2, 0x0,0x0,0xb6,0x1,0x0,0x0,0x77,0x2,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x55,0x2,0x0,0x0,0xb6,0x0,0x0,0x0,0xee, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe8,0x4,0x0,0x0,0xe,0x0,0x0,0x0, 0x5b,0x2,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x41,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5,0x0, 0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x80,0x5, 0x0,0x0,0xb6,0x1,0x0,0x0,0xa3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc, 0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x50,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0,0x0, 0x27,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x89,0x5,0x0,0x0,0x10,0x5,0x0, 0x0,0xe,0x5,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x57,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x44,0x0, 0x0,0x0,0xa7,0x5,0x0,0x0,0xab,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x42,0x1,0x0,0x0,0xc4,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xe2,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x97,0x1,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe2, 0x4,0x0,0x0,0x2,0x5,0x0,0x0,0xc4,0x2,0x0,0x0,0x5b,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb9,0x2,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x39,0x2, 0x0,0x0,0x2a,0x2,0x0,0x0,0x1a,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xc4,0x2, 0x0,0x0,0xcf,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x54, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x5f,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xa0,0x2,0x0,0x0,0x6b,0x5,0x0,0x0,0xe5,0x4,0x0,0x0,0x1b,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xb2,0x0,0x0,0x0,0x66, 0x3,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x1,0x0,0x0, 0xdf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0xf8,0x2,0x0, 0x0,0xa5,0x0,0x0,0x0,0x11,0x5,0x0,0x0,0x8f,0x1,0x0,0x0,0xee,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x99,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x84,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xba,0x3,0x0,0x0,0xb0,0x5,0x0,0x0,0xef,0x2,0x0,0x0,0x8c,0x2,0x0,0x0, 0x4f,0x1,0x0,0x0,0x2c,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x85,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0, 0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0xc0,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0xf4,0x0,0x0,0x0,0x1c, 0x1,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0, 0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xd9,0x0,0x0, 0x0,0xb4,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x96,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfb,0x4, 0x0,0x0,0x10,0x5,0x0,0x0,0x84,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0xb8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3a,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0, 0x0,0x34,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x58,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x8,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0xda,0x0,0x0,0x0,0x6c,0x5,0x0,0x0, 0xe4,0x4,0x0,0x0,0xf,0x2,0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x41,0x2,0x0,0x0,0x30,0x3,0x0,0x0,0x2c,0x3,0x0,0x0,0x1e,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x11,0x3,0x0,0x0,0x27, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x6b,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xa2,0x0,0x0,0x0,0x73,0x2,0x0, 0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0xe2,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbb,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0, 0x0,0x0,0xea,0x2,0x0,0x0,0x9a,0x5,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x51,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xce,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x31,0x5,0x0, 0x0,0xfb,0x1,0x0,0x0,0x7a,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x5e,0x0,0x0, 0x0,0x5,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0x1b,0x0, 0x0,0x0,0xaf,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20, 0x2,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfa,0x4,0x0,0x0, 0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x94,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf0,0x1,0x0,0x0,0xa7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x0,0x0, 0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xaa,0x5, 0x0,0x0,0x5c,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb, 0x0,0x0,0x0,0xaa,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1b,0x2,0x0,0x0, 0x58,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x79,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xeb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x4, 0x0,0x0,0xdc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x8, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0xea,0x2,0x0,0x0, 0x16,0x1,0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x5,0x0, 0x0,0x2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xe1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x9e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x51,0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x0, 0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0xc7, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0xc9,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x30,0x2,0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab, 0x5,0x0,0x0,0x73,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x19,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x1,0x0,0x0, 0x9a,0x5,0x0,0x0,0xd6,0x4,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xfd,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x31,0x5,0x0,0x0,0xf8,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xcb,0x0,0x0,0x0,0xb9,0x0, 0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x1c, 0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x55,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb6,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x23,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0x7,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x74,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xda,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x5d,0x1,0x0,0x0, 0x86,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x6c,0x5,0x0, 0x0,0xbb,0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0xf,0x0,0x0,0x0,0xa7,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0x5,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x33,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0, 0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0xe9,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd1,0x2,0x0,0x0,0x3f,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x98,0x2,0x0,0x0,0x2b,0x1,0x0,0x0,0x37,0x5,0x0,0x0,0xeb,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x8,0x5,0x0,0x0,0x2e,0x3,0x0,0x0,0xb, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x31,0x5,0x0,0x0, 0x1e,0x2,0x0,0x0,0xb,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x41,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0, 0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xcc,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x1d,0x0,0x0,0x0,0xbf, 0x3,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0, 0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x6a,0x3,0x0, 0x0,0x3f,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0, 0x0,0x0,0xe2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0xc5, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0xaa,0x0,0x0,0x0, 0xe1,0x4,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x51,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x2,0x0, 0x0,0x55,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0xd8,0x0, 0x0,0x0,0xb2,0x5,0x0,0x0,0xfd,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x57,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x2,0x0,0x0,0x22,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0, 0x56,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0x33,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x25,0x2,0x0,0x0,0x47,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x65,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x79,0x5,0x0, 0x0,0x3e,0x3,0x0,0x0,0x18,0x1,0x0,0x0,0x8f,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x14,0x5,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9b, 0x3,0x0,0x0,0xf8,0x2,0x0,0x0,0xed,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0xf0,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x93,0x5,0x0,0x0,0xe4,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x2, 0x0,0x0,0x42,0x2,0x0,0x0,0xd6,0x1,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xae,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8f,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0, 0x0,0x13,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x43,0x0, 0x0,0x0,0xdc,0x4,0x0,0x0,0x53,0x1,0x0,0x0,0xe7,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x34,0x2,0x0,0x0,0xe1,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x2a,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x5e,0x2,0x0,0x0,0x2b, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0x69,0x1,0x0,0x0, 0x57,0x5,0x0,0x0,0x5a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x3,0x0, 0x0,0x38,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x45,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x47,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x0,0x1,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x97,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1c,0x1, 0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0x8f,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x41,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x49,0x0,0x0, 0x0,0x71,0x1,0x0,0x0,0xf,0x3,0x0,0x0,0xda,0x0,0x0,0x0,0x61,0x5,0x0, 0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x44,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0x4d, 0x2,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x4,0x0,0x0, 0x5b,0x5,0x0,0x0,0x14,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x28,0x2,0x0,0x0,0xd8,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x2f,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x5d,0x1, 0x0,0x0,0x6d,0x5,0x0,0x0,0x2f,0x3,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3f,0x2,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xab,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x0,0x0, 0x0,0x0,0x3,0x0,0x0,0xc7,0x1,0x0,0x0,0xc9,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x73,0x0,0x0,0x0,0xba,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf8, 0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0xe4,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0xac,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x55,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0xbd,0x5,0x0,0x0,0xbc,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x2d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x61,0x1,0x0,0x0,0x2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x0,0x0, 0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0x60,0x1, 0x0,0x0,0x5f,0x1,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac, 0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x20,0x4,0x0,0x0, 0x22,0x5,0x0,0x0,0xc,0x3,0x0,0x0,0xbc,0x1,0x0,0x0,0x3e,0x1,0x0,0x0, 0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x99,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x99,0x3, 0x0,0x0,0xc3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x11, 0x1,0x0,0x0,0xa1,0x0,0x0,0x0,0x6c,0x1,0x0,0x0,0xb6,0x5,0x0,0x0,0x35, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x2a,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xae,0x5,0x0,0x0,0xaf,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0xc1,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x86,0x5,0x0,0x0, 0xea,0x2,0x0,0x0,0x56,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7f,0x5,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdc,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x3, 0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x96, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0xc0,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9b,0x1,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5, 0x0,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0, 0xce,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x2,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x33,0x5,0x0,0x0,0x7e,0x0, 0x0,0x0,0x35,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0xba, 0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x27,0x5,0x0,0x0,0x4e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0, 0x0,0xf1,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x18,0x1, 0x0,0x0,0xb6,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21, 0x2,0x0,0x0,0xda,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0xb2,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x5a,0x0,0x0,0x0,0x7a,0x1,0x0,0x0, 0x2b,0x1,0x0,0x0,0x8e,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x3,0x5,0x0,0x0,0x7b,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x5,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x63,0x2,0x0,0x0,0xaf,0x2, 0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0xf3, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x4a,0x3,0x0,0x0, 0x6a,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x4,0x0, 0x0,0xf7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0xca,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0xe, 0x3,0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x13,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb4,0x3,0x0,0x0, 0x6,0x5,0x0,0x0,0x72,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x18,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf0,0x1, 0x0,0x0,0xb2,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x51,0x0,0x0,0x0,0x64, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x9e,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x77,0x5,0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x28,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x12, 0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0, 0x53,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x60,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x3a,0x2,0x0,0x0,0x4d,0x0, 0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xc4, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x0,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x59,0x3,0x0,0x0,0x62,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x42,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98, 0x1,0x0,0x0,0x57,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x44,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbe,0x5,0x0,0x0, 0xc1,0x5,0x0,0x0,0x66,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x89,0x5,0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5, 0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x52, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x2b,0x3,0x0,0x0, 0x6c,0x2,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0, 0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0xc4,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x3f,0x3,0x0,0x0,0x57,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x36,0x2,0x0, 0x0,0xf,0x1,0x0,0x0,0x17,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x63,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5, 0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0xdb, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0xed,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xc4,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x16,0x1,0x0,0x0,0x6b,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x7c,0x5,0x0,0x0,0x47,0x3,0x0,0x0,0x10,0x1,0x0,0x0, 0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x52,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x89,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x0,0x0, 0x0,0x16,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x11,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x38,0x0,0x0,0x0,0x56, 0x3,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x90,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x0,0x0,0x0, 0x4d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xec,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x8e,0x5, 0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x76, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xb7,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa0,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37, 0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x2,0x0,0x0, 0x6c,0x5,0x0,0x0,0x57,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2d,0x3,0x0,0x0,0x3c,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xaf,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6c,0x3, 0x0,0x0,0x8c,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x36,0x2,0x0,0x0,0x6b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0, 0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0xf2,0x0, 0x0,0x0,0x19,0x5,0x0,0x0,0xbe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69, 0x3,0x0,0x0,0xad,0x3,0x0,0x0,0x91,0x1,0x0,0x0,0x6d,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x15,0x3,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x3, 0x0,0x0,0x68,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x10, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xfd,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x96,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3,0x3,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4, 0x4,0x0,0x0,0x9b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x1,0x0,0x0, 0x77,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x1,0x0,0x0,0x2a,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x30,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x70,0x5,0x0, 0x0,0x42,0x5,0x0,0x0,0xef,0x4,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x37,0x1,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5, 0x5,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x4,0x0,0x0, 0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x56,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x11,0x1,0x0,0x0,0xe0,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x4e, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0xd5,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x54,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6,0x3,0x0,0x0,0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc, 0x1,0x0,0x0,0x7b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0,0x0, 0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x18,0x0,0x0, 0x0,0x67,0x1,0x0,0x0,0xfe,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfe,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x3, 0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0x5e, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x4e,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0xdb,0x1,0x0, 0x0,0xf4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0x8a,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x18,0x3,0x0,0x0,0x85, 0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0,0x0, 0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x38,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xfb,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x18,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x24,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x3,0x0, 0x0,0x64,0x1,0x0,0x0,0x13,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe,0x3,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe, 0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x4,0x0,0x0, 0xf4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x5f,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x92,0x1, 0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x1e, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x22,0x2,0x0,0x0, 0xbb,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0xa6,0x1,0x0,0x0,0xe2,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0x45,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6a,0x1,0x0,0x0,0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63, 0x5,0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x42,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0, 0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x3f,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x29,0x3,0x0,0x0,0xf8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3,0x0, 0x0,0xdc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0xff,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0xf5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xd9,0x4,0x0,0x0,0x7,0x5,0x0,0x0, 0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x4a,0x5,0x0, 0x0,0x96,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x2, 0x0,0x0,0x9d,0x1,0x0,0x0,0x89,0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x98,0x2,0x0,0x0,0x11,0x5,0x0,0x0,0x7,0x5,0x0,0x0,0x4b,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xa3,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x73,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0x5a,0x5,0x0,0x0,0x22,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0x68,0x0,0x0,0x0,0x3d,0x1,0x0,0x0, 0xfd,0x4,0x0,0x0,0xf,0x3,0x0,0x0,0x9e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x75,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x39,0x2,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x77,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3d,0x5, 0x0,0x0,0xb,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd9,0x4,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaf,0x5,0x0, 0x0,0xec,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xa9,0x5,0x0,0x0,0x68,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xd5,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x43,0x5,0x0,0x0, 0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0xcb,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0xb,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa1,0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0, 0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0xae,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x78,0x3,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x5, 0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x90, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x7d,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0xba,0x2,0x0,0x0,0x86,0x5,0x0, 0x0,0x74,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x6d,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x6d,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0xb2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0, 0x36,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x28,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x2b,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x4b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5d,0x1,0x0,0x0,0x47,0x1,0x0,0x0,0x6f,0x0,0x0,0x0,0x77,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0xfb,0x1,0x0, 0x0,0x73,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x46,0x0,0x0,0x0,0x5,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3e, 0x1,0x0,0x0,0xa0,0x5,0x0,0x0,0x2a,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x49,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xed,0x4,0x0,0x0,0x42,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x1, 0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x34, 0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0xe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46,0x3,0x0, 0x0,0xd1,0x2,0x0,0x0,0xaf,0x2,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd8,0x4,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0, 0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x42,0x5,0x0, 0x0,0x47,0x2,0x0,0x0,0x35,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3, 0x0,0x0,0xcc,0x2,0x0,0x0,0xea,0x4,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x50,0x1,0x0,0x0,0x29,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x13,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x3,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb, 0x3,0x0,0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0,0x0, 0xc2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0xff,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3,0x2,0x0,0x0,0x98,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x3,0x0, 0x0,0xe,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x9,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x2,0x0,0x0,0xfc,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x14,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x28,0x2,0x0,0x0,0x42,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x17,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xed,0x2, 0x0,0x0,0x90,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0x3b,0x0,0x0,0x0,0x27,0x3, 0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xa4, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x37,0x0,0x0,0x0, 0xf,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x5,0x0, 0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0xa5,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0xe,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2c,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x4b,0x2,0x0,0x0,0xba,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x46,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xd6,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x2a,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x6a, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x64,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0x33,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf, 0x3,0x0,0x0,0xab,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x4,0x0,0x0, 0xa7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x13,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0x4e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x12,0x5,0x0,0x0,0x1e,0x3,0x0,0x0,0x2d, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x11,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x6c,0x0,0x0,0x0,0x65,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0x27,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0xbe,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x62,0x5,0x0,0x0,0x21,0x2,0x0,0x0, 0xf3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0xc5,0x1,0x0, 0x0,0xaf,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x0, 0x0,0x0,0xc9,0x1,0x0,0x0,0xd1,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa,0x5,0x0,0x0,0xf8,0x2,0x0,0x0,0x85,0x0,0x0,0x0,0x6a, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x75,0x1,0x0,0x0, 0x2f,0x3,0x0,0x0,0xdf,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x62,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x5,0x0, 0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x8e,0x0, 0x0,0x0,0xed,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x66,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14, 0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x68,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0, 0x6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xcf,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x1f,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xb2,0x1,0x0,0x0,0xd7,0x0,0x0,0x0,0x46, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0xcc,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0x49,0x2,0x0,0x0,0xb6,0x5,0x0, 0x0,0x82,0x5,0x0,0x0,0x7,0x3,0x0,0x0,0x1e,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xdb,0x1,0x0,0x0,0x32,0x3,0x0,0x0,0x51,0x0,0x0,0x0,0x7b,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x6,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x82,0x5,0x0,0x0,0x91,0x1,0x0,0x0, 0xdc,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x2,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x90,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd2,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0, 0x0,0x92,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x25,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xea,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xe1,0x0,0x0,0x0,0x4,0x2,0x0,0x0, 0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0x0,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x92,0x2,0x0,0x0,0x25,0x1,0x0,0x0,0x27,0x2,0x0,0x0,0x4e,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf7,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1b, 0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0xdb,0x1,0x0,0x0,0x11,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0xfe,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9c,0x3,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbc,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x11,0x1, 0x0,0x0,0x48,0x1,0x0,0x0,0x3,0x5,0x0,0x0,0x5b,0x5,0x0,0x0,0x36,0x3, 0x0,0x0,0x16,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0xba, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0xb9,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5b,0x3,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb,0x3,0x0,0x0,0x27,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2, 0x0,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x2,0x0,0x0, 0xd1,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0x12,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x56,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xce,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x10,0x4,0x0,0x0,0x44,0x5,0x0,0x0,0x1,0x1,0x0,0x0,0x3c,0x1,0x0,0x0, 0x5e,0x2,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x2,0x0, 0x0,0x67,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0xb1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x2,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdc,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6,0x2,0x0,0x0,0xd9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf4,0x0, 0x0,0x0,0x79,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xf4, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0x79,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfd,0x2,0x0,0x0,0x32,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x56,0x2,0x0,0x0,0x5d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24, 0x3,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0, 0x7a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x46,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x6,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x5b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0, 0x0,0xe0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x1d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x15,0x3,0x0,0x0,0xa6, 0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x81,0x0,0x0,0x0, 0x99,0x5,0x0,0x0,0x5,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc0,0x5,0x0,0x0,0xd2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x0, 0x0,0x0,0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x42, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0xe0,0x4,0x0,0x0, 0xcf,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x10,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0, 0x0,0xbe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x35,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0xc0,0x1,0x0,0x0,0x19,0x2,0x0,0x0, 0x19,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0xec,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbc,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x31,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4d,0x1,0x0, 0x0,0x4b,0x2,0x0,0x0,0xed,0x4,0x0,0x0,0x36,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x3,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0x3e,0x1,0x0,0x0,0x8c,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0xc,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x2f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x41,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x4b,0x5,0x0,0x0,0xf1,0x4,0x0,0x0,0x6c,0x0,0x0,0x0,0xb7,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x66,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x21,0x5,0x0,0x0,0xfe, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0x2d,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0xed,0x0,0x0, 0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xf5,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0x2b,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x9c,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x6c,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x60,0x2,0x0,0x0,0x16,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x59,0x3, 0x0,0x0,0x37,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x73, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x44,0x3,0x0,0x0, 0xd2,0x4,0x0,0x0,0x65,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x60,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x3,0x0, 0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0x24,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0xb6,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf7,0x1,0x0,0x0,0x2a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x69,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2, 0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x4,0x0,0x0,0x48, 0x5,0x0,0x0,0x28,0x5,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0,0x0, 0x0,0xc5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x9c,0x0, 0x0,0x0,0x78,0x3,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x72,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5, 0x5,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x2,0x0,0x0, 0x27,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf2,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x75,0x0, 0x0,0x0,0x34,0x0,0x0,0x0,0x39,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x9d,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x6c,0x0,0x0,0x0,0x5b, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x8b,0x0,0x0,0x0, 0x4d,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0, 0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xe4,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x10,0x3,0x0,0x0,0xc2, 0x3,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x92,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x8f,0x2,0x0, 0x0,0xf9,0x4,0x0,0x0,0x60,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x3, 0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x47, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x61,0x2,0x0,0x0, 0x5e,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x5,0x0, 0x0,0x50,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0xfb,0x4, 0x0,0x0,0x96,0x3,0x0,0x0,0xa5,0x5,0x0,0x0,0x8f,0x5,0x0,0x0,0x37,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x3b,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x26,0x3,0x0,0x0,0x8a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x67,0x2, 0x0,0x0,0xe,0x1,0x0,0x0,0xc8,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x8c,0x5,0x0,0x0,0x5f,0x1,0x0,0x0,0x1e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x97,0x1,0x0,0x0, 0x4d,0x1,0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xbc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0, 0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0x55,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0x32,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xe0,0x2,0x0,0x0,0xb7,0x5,0x0,0x0, 0xd9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x91,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x96,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x37,0x5,0x0,0x0,0xc6,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x3f,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4,0x3,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xde,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99, 0x2,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0, 0xb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x98,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x39,0x3, 0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x2,0x0,0x0,0xc9, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x24,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x10,0x4,0x0,0x0,0x69,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51, 0x5,0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7a,0x5,0x0,0x0, 0xf4,0x4,0x0,0x0,0xde,0x4,0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf8,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xe4,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xbf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5b,0x2,0x0,0x0,0xd9,0x1,0x0,0x0,0x24,0x3,0x0,0x0,0x15,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2a,0x5,0x0,0x0,0xba,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x10,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0, 0xf1,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x46,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x19,0x3, 0x0,0x0,0x24,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x86, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x9f,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xaa,0x3,0x0,0x0,0xf6,0x0,0x0, 0x0,0xfc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xc5,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0xfd,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xb5,0x5,0x0,0x0,0xed,0x4,0x0,0x0,0xc5,0x3,0x0,0x0,0x8f,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xb4,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x84,0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x45,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x2,0x0, 0x0,0x1a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x6a,0x2, 0x0,0x0,0x36,0x1,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57, 0x5,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69,0x0,0x0,0x0, 0x45,0x3,0x0,0x0,0xb5,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb8,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x51,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0, 0x0,0x0,0x8f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x81, 0x1,0x0,0x0,0x15,0x3,0x0,0x0,0x36,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x56,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x63,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x57,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0, 0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xea,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xad,0x5,0x0,0x0,0xfa,0x4,0x0,0x0, 0x3c,0x1,0x0,0x0,0x85,0x2,0x0,0x0,0x60,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x62,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc4,0x2,0x0,0x0,0xd1,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6e,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x3, 0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x92, 0x1,0x0,0x0,0xba,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0, 0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x7b,0x2, 0x0,0x0,0x43,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36, 0x3,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x84,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0, 0x78,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x0,0x0,0x0,0x36,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0xdd,0x2,0x0,0x0,0xe2, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x67,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x61,0x0,0x0, 0x0,0x86,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0xf5,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x5f,0x2,0x0,0x0,0x70,0x0,0x0,0x0, 0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xa2,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x60,0x1,0x0,0x0,0xf3,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x1d, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xae,0x0,0x0,0x0, 0x1e,0x2,0x0,0x0,0x1e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0, 0x0,0xb2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x3,0x0,0x0,0xc7,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x9b,0x3,0x0,0x0,0x3d, 0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x5,0x0,0x0, 0xea,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x13,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x55,0x2,0x0,0x0,0x79,0x3, 0x0,0x0,0xd,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x48, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x11,0x5,0x0,0x0, 0xbf,0x3,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc4,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x5,0x0, 0x0,0x72,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x2a,0x2, 0x0,0x0,0x7,0x1,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xca,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b, 0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd0,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xdc,0x4,0x0,0x0, 0x84,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd1,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x59,0x2,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x2, 0x0,0x0,0x37,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x67, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x1,0x0,0x0,0xb2,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb,0x1,0x0,0x0,0x72,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb, 0x1,0x0,0x0,0x2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe3,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x42,0x3,0x0,0x0, 0x21,0x3,0x0,0x0,0xaa,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x6a,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0x86,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x11,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xef,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x25,0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0x3a,0x3,0x0,0x0,0x61,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x62,0x5,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x9c,0x1,0x0,0x0,0x30,0x5,0x0,0x0,0x16,0x3,0x0,0x0,0x55,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x8c,0x0,0x0,0x0,0x86, 0x1,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x65,0x1,0x0,0x0, 0x85,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xaa,0x1,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfe,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xbb,0x3, 0x0,0x0,0x53,0x1,0x0,0x0,0xe4,0x4,0x0,0x0,0x5,0x5,0x0,0x0,0xab,0x0, 0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x33, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x4a,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xb,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf7,0x1,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x38, 0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0x15,0x2,0x0,0x0,0xe,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x4, 0x0,0x0,0x58,0x1,0x0,0x0,0x6,0x3,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xad,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x12,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x69,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x19,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x2,0x0, 0x0,0xb2,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x4c,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x22,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1,0x3,0x0,0x0,0x75,0x1,0x0,0x0,0x14,0x5,0x0,0x0,0xd6,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x4,0x0,0x0,0xc,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x1d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2b,0x3,0x0,0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0, 0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0x50,0x1, 0x0,0x0,0x70,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x44,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f, 0x1,0x0,0x0,0xc3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4d,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x1,0x0,0x0, 0x4b,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4e,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1a,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x1a,0x3,0x0,0x0,0x65,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0xe2,0x0,0x0,0x0,0xaa,0x2, 0x0,0x0,0x14,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xc3, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x75,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5,0x3,0x0,0x0,0xfd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb, 0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x61,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x0,0x0,0x0, 0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x54,0x3,0x0, 0x0,0x24,0x2,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x69,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2, 0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x80, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xa8,0x5,0x0,0x0, 0xdd,0x4,0x0,0x0,0x51,0x5,0x0,0x0,0x17,0x3,0x0,0x0,0x45,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x85,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x75,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf1, 0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0x73,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x82,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5d,0x1,0x0,0x0,0x2b,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x83,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3, 0x0,0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x94, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x8b,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x20,0x3,0x0,0x0,0x25,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x92,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a, 0x5,0x0,0x0,0x31,0x5,0x0,0x0,0xba,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x52,0x1,0x0,0x0,0x46,0x1,0x0,0x0, 0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xaa,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x3b,0x0,0x0,0x0,0x9b,0x3, 0x0,0x0,0xee,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x86, 0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa1,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfd,0x0,0x0,0x0,0x2a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0, 0x0,0x4,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0x4a,0x3, 0x0,0x0,0x42,0x1,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xab,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x65, 0x1,0x0,0x0,0x1c,0x5,0x0,0x0,0x0,0x1,0x0,0x0,0x70,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbb,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbe,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x5, 0x0,0x0,0x7a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x13, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x1,0x0,0x0,0x74,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x41,0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0x77,0x3,0x0,0x0,0x22,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0xde,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x99,0x3,0x0,0x0,0x59,0x5,0x0,0x0,0xbb,0x1,0x0,0x0,0xc3,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x4,0x0, 0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x90,0x5, 0x0,0x0,0xf4,0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1e, 0x3,0x0,0x0,0xb9,0x5,0x0,0x0,0x1f,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0xe9,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x14,0x2,0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf8,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5, 0x0,0x0,0x6b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x57, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0xb1,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xfc,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb9, 0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x3c,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0xb2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xd2,0x2,0x0,0x0,0x49,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xb3,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x57,0x2,0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x40,0x3,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1c,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x77,0x0,0x0, 0x0,0x1e,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf5,0x4,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x22,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x2,0x0,0x0, 0xbc,0x1,0x0,0x0,0x8e,0x5,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7f,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x31,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb6,0x5, 0x0,0x0,0xb9,0x3,0x0,0x0,0x37,0x5,0x0,0x0,0x2b,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x54,0x5,0x0,0x0,0x31,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x39,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x0,0x0, 0x0,0xe2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x89,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x52,0x2,0x0,0x0, 0xa6,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0x6a,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x26,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe2,0x4,0x0,0x0,0x31,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4c,0x1,0x0, 0x0,0x45,0x3,0x0,0x0,0x4d,0x1,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x3,0x0,0x0,0x68,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x58,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18, 0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x60,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x3,0x0,0x0, 0xe6,0x2,0x0,0x0,0xde,0x4,0x0,0x0,0x57,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x31,0x5,0x0,0x0,0xd1,0x2,0x0,0x0,0x61,0x2,0x0,0x0,0x61,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x70,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf0,0x1,0x0,0x0,0xb2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x71,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x3,0x0, 0x0,0x29,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x39,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xc3,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x78,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x24,0x3,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3, 0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0xe9, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xf6,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x26,0x3,0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x98,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68, 0x5,0x0,0x0,0x2c,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x47,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xe8,0x1,0x0,0x0, 0xa4,0x3,0x0,0x0,0xf7,0x4,0x0,0x0,0xe9,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9c,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x2b,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xc,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x41,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa7,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x5,0x0, 0x0,0x2d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x7d,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0xc9,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x61,0x5,0x0,0x0,0x90,0x0,0x0,0x0, 0xb4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x48,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xba,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x7,0x3,0x0,0x0,0xb9,0x0,0x0,0x0,0xc3, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0xc5,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x47,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x10,0x4,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20, 0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcc,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x2,0x0,0x0, 0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x61,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x47,0x5, 0x0,0x0,0xe,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0x6c, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x23,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0,0x0,0x38,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xff,0x4,0x0,0x0,0xfc,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96, 0x3,0x0,0x0,0xae,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x3,0x0,0x0, 0xff,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xc0,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x61,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x42,0x1,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xeb,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x2,0x0, 0x0,0x68,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x2e,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xff,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1b,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3a,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5, 0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x65, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x70,0x1,0x0,0x0, 0xf9,0x4,0x0,0x0,0xdf,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0xc0,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x8,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x46,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x12,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x95,0x3,0x0,0x0,0x5f,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x14,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x3, 0x0,0x0,0x50,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xfc, 0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x22,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9f,0x5,0x0,0x0,0x2a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x0,0x0, 0x0,0x2c,0x3,0x0,0x0,0xf1,0x1,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x50,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x39,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x4,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x2,0x0,0x0, 0xef,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x26,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xff,0x2,0x0,0x0,0xef,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x48,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x2,0x0, 0x0,0x31,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0x7,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x18,0x1,0x0,0x0,0x27,0x0,0x0,0x0, 0x39,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x24,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x71,0x1,0x0,0x0,0x3,0x2,0x0,0x0,0x67, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x49,0x2,0x0,0x0, 0x9b,0x1,0x0,0x0,0x5f,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x60,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x5,0x0, 0x0,0xdf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0xec,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3,0x0,0x0,0x56,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0xac,0x1,0x0,0x0, 0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x45,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7a,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x89,0x5,0x0,0x0,0x8,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x81,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0x56,0x1,0x0,0x0,0x64,0x2,0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x38,0x1,0x0,0x0,0x41,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b, 0x3,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x88,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x3,0x0,0x0, 0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xe0,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x94,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x37,0x1,0x0,0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0, 0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0xfd,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x59,0x4,0x0,0x0,0x4d, 0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0xd1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x80,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x1f,0x1,0x0,0x0,0x27,0x5,0x0,0x0,0xf8, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x2,0x0,0x0,0x80,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x9,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xb5,0x0,0x0,0x0,0x11,0x5,0x0,0x0,0x26,0x3,0x0,0x0,0x8c,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x22,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd6,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3b,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd9,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x0, 0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x63, 0x2,0x0,0x0,0x9f,0x5,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdb,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xce,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xde,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x2,0x0, 0x0,0x26,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0xb9,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x90,0x1,0x0,0x0,0x7b, 0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe6,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0, 0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf4,0x4,0x0,0x0,0x1e,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xea,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x66,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf1,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x96,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf2,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x3,0x0, 0x0,0xba,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x9, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x9e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x2d,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2a,0x3,0x0,0x0,0x3a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x23,0x3, 0x0,0x0,0x6a,0x2,0x0,0x0,0xdc,0x2,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x11,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1a,0x1,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x14,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x2,0x0, 0x0,0x75,0x1,0x0,0x0,0xe2,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3f,0x2,0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf, 0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1d,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x1,0x0,0x0, 0x33,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x8,0x0,0x0, 0x0,0x8a,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x22,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2, 0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x45, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x90,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfa,0x2,0x0,0x0,0x20,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1f,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2d,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4a, 0x2,0x0,0x0,0xc6,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x94,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x33,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1, 0x0,0x0,0x78,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0xcb, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0xb,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe1,0x4,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x38,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9, 0x2,0x0,0x0,0xb3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3a,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0, 0x46,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x8b,0x5,0x0, 0x0,0x2d,0x1,0x0,0x0,0x96,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3e,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0, 0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x33, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x5,0x0,0x0,0x21,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xc9,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x4b,0x2,0x0,0x0,0xc3,0x2,0x0,0x0,0xb3,0x0,0x0,0x0,0x76,0x1, 0x0,0x0,0x4,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b, 0x3,0x0,0x0,0x7,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4b,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x1,0x0,0x0, 0x6d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0x43,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x92,0x1,0x0,0x0,0x57,0x3, 0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0xd2, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x73,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd1,0x1,0x0,0x0,0xbc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x58,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf0, 0x1,0x0,0x0,0x18,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0x63,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x61,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x61,0x1,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x64,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x2, 0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdf,0x4,0x0,0x0,0x37, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0xf1,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x83,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x59, 0x2,0x0,0x0,0xe8,0x4,0x0,0x0,0xf,0x5,0x0,0x0,0x7f,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x22,0x3,0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x88,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3, 0x0,0x0,0x81,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0xb, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x2,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x70,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa1,0x5,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x95,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde, 0x0,0x0,0x0,0x19,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x99,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x3,0x0,0x0, 0x2e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x7b,0x2,0x0, 0x0,0x71,0x3,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9f,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5, 0x0,0x0,0x52,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x4c, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xe0,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x64,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x1,0x0,0x0,0x97,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6c, 0x2,0x0,0x0,0x39,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb4,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb5,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0, 0x0,0x0,0x10,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x5b, 0x2,0x0,0x0,0xfb,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb9,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x21,0x3,0x0,0x0,0xed,0x4,0x0,0x0,0xbb,0x2,0x0,0x0,0xb7,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x54,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x69,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfb, 0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0xda,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcb,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xfc,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x65,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x60,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8f,0x5,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd9,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x1,0x0, 0x0,0x42,0x2,0x0,0x0,0x6a,0x0,0x0,0x0,0x25,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x6c,0x2,0x0,0x0,0xf9,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xfd,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xa,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x69,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf8,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe4,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfa,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x89,0x0, 0x0,0x0,0xc0,0x1,0x0,0x0,0x15,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xed,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfe,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0, 0x0,0xc7,0x1,0x0,0x0,0x90,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe8,0x1,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1, 0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x3,0x0,0x0, 0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0x22,0x5,0x0, 0x0,0xe,0x2,0x0,0x0,0x3e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x1, 0x0,0x0,0x64,0x5,0x0,0x0,0x8c,0x2,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x51,0x0,0x0,0x0,0xbb,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x15,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3b,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x19,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0, 0x0,0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0xec,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x8a,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0xd9,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x25,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4a,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x26,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x5, 0x0,0x0,0xbf,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x3,0x0,0x0,0x70, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x2,0x0,0x0,0x4d,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x5,0x0,0x0,0x49,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22, 0x2,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0,0x0, 0x6d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x61,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe0,0x4,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3c,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0xe7,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x20,0x3,0x0,0x0,0x90,0x2,0x0,0x0,0x45,0x1,0x0,0x0,0x8e,0x5,0x0, 0x0,0x28,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x55,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x1, 0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0x9a, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x55,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2a,0x2,0x0,0x0,0x7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51, 0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0, 0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x5c,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x59,0x1,0x0,0x0,0xd1,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x80,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0, 0x0,0x41,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xe9,0x2, 0x0,0x0,0x68,0x3,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77, 0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x87,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa1,0x1,0x0,0x0, 0x24,0x1,0x0,0x0,0xac,0x1,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8b,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe0,0x2,0x0,0x0,0xc4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8e,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x0, 0x0,0x0,0x2f,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x67,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0, 0x0,0xf7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0xe3,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x42,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0x45,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa8,0x5,0x0,0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xae,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3, 0x0,0x0,0x9d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0x59, 0x4,0x0,0x0,0x2d,0x1,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb2,0x2,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb3,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x3,0x0, 0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xd3,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbf,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x23,0x3,0x0,0x0,0x49,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc5,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3, 0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x98, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x4,0x0,0x0,0x6f,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0xd5,0x2,0x0,0x0,0xf7,0x0,0x0, 0x0,0x99,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xf3,0x4, 0x0,0x0,0x37,0x5,0x0,0x0,0xbf,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdc,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57, 0x2,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0, 0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x82,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x50,0x3,0x0,0x0,0x98,0x1,0x0,0x0,0x86, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x56,0x2,0x0,0x0, 0x7a,0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0xaf,0x5,0x0,0x0,0xd6,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0, 0x3,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3,0x0,0x0, 0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xe4,0x4,0x0, 0x0,0x26,0x3,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x16,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x2, 0x0,0x0,0xc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x0, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x26,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x58,0x3,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b, 0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x26,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x0,0x0,0x0, 0x27,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x84,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x49,0x1,0x0,0x0,0xa0,0x2, 0x0,0x0,0x6d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x2d, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x99,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x87,0x0,0x0,0x0,0x18,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22, 0x1,0x0,0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x42,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x3,0x0,0x0, 0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xf0,0x4,0x0, 0x0,0x7f,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x44,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb6,0x0, 0x0,0x0,0xa1,0x5,0x0,0x0,0xc7,0x1,0x0,0x0,0xea,0x4,0x0,0x0,0x29,0x2, 0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x75, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x15,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0x5e,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xcf,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4c,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb, 0x1,0x0,0x0,0x1b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x0,0x0,0x0, 0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x2c,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5b,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcf,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5d,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x3,0x0, 0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0xd5,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x38,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0x95,0x3,0x0,0x0, 0x22,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0xaa,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x72,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x3,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x73,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0xaf,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x1f,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x54,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0xb6,0x5,0x0,0x0,0x24,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0xa5, 0x0,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0, 0xe7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x33,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x5,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8b,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x0,0x0, 0x0,0xd5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x6a,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbb,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2, 0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x4a, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x91,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x62,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x49,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa2,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1, 0x1,0x0,0x0,0x17,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5,0x0,0x0, 0xd8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x71,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x35,0x3,0x0,0x0,0x63,0x0,0x0,0x0,0x37, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x45,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb2,0x2,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbc,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17, 0x1,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbe,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x3,0x0,0x0, 0x4b,0x5,0x0,0x0,0x98,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc2,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd2,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1, 0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x1,0x0,0x0,0xc6, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0x93,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xbf,0x3,0x0, 0x0,0xdf,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x23,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x92,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x22,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd1,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x30,0x1,0x0,0x0,0x36,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x3, 0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0xa3, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x61,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x65,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x87,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xee,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88, 0x2,0x0,0x0,0x61,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xef,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0, 0x25,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x12,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x5,0x0,0x0,0xa3,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xb1,0x5,0x0,0x0,0x7,0x3,0x0,0x0,0xbd, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0x22,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x4c,0x2,0x0, 0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xbd,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xb,0x2,0x0,0x0,0xe8, 0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x5,0x0,0x0, 0xf9,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x94,0x0,0x0,0x0,0x86,0x0,0x0,0x0, 0x47,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x1d,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x10,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0xd2,0x0,0x0,0x0,0xd9, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0xc0,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0,0x0,0x4,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x21,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x3,0x2,0x0,0x0,0x20,0x3,0x0,0x0,0x95,0x3,0x0,0x0,0x15,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x13,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x29,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x69,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x8e,0x2,0x0,0x0,0x90,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0xdd,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x31,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x3,0x1,0x0,0x0,0xa2,0x5,0x0,0x0,0x5f,0x0,0x0,0x0,0x67,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa,0x3,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x34,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5, 0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x36,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x0,0x0,0x0, 0xac,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x2,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x36,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xba,0x2,0x0,0x0,0xcf,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x5e,0x5,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x2,0x0, 0x0,0x7e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x98,0x5, 0x0,0x0,0xcc,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c, 0x2,0x0,0x0,0x89,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0, 0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x19,0x3,0x0,0x0,0x4c,0x5,0x0, 0x0,0xb5,0x5,0x0,0x0,0xf4,0x2,0x0,0x0,0x27,0x0,0x0,0x0,0x47,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x57,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf1,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x58,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x86,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xe0,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x61,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6,0x2,0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x62,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5, 0x0,0x0,0xf8,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x8f, 0x5,0x0,0x0,0xa1,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x67,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc5,0x3,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x69,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0, 0x0,0xb2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x71,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xd7,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x6,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7d,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd8,0x1,0x0,0x0,0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x4, 0x0,0x0,0x38,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x55, 0x1,0x0,0x0,0xb7,0x3,0x0,0x0,0x6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x84,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6c,0x2,0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3,0x0, 0x0,0x68,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x2,0x0,0x0,0x84,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xbd,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa9,0x2,0x0,0x0,0x53,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x25,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0xb0,0x3,0x0,0x0,0xfa,0x4, 0x0,0x0,0x51,0x2,0x0,0x0,0x95,0x1,0x0,0x0,0x76,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xa9,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa2,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xef,0x2,0x0,0x0,0xc2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa8,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6b,0x5,0x0, 0x0,0x65,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x2c,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x4e,0x2,0x0,0x0,0x9d, 0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb6,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x91,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x9e,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x91,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc3,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbb,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc7,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x3,0x0, 0x0,0xa2,0x0,0x0,0x0,0x74,0x5,0x0,0x0,0x7b,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbe,0x3,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcc,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48, 0x3,0x0,0x0,0xd1,0x2,0x0,0x0,0x18,0x5,0x0,0x0,0x12,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcf,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd2,0x2,0x0,0x0,0x58,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x0, 0x0,0x0,0xfe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x2a, 0x1,0x0,0x0,0xfa,0x2,0x0,0x0,0xf,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdc,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfd,0x4,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdd,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0, 0x0,0x7a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0xf8,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xeb,0x1,0x0,0x0,0x2f, 0x5,0x0,0x0,0xf0,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x55,0x0,0x0,0x0, 0x60,0x0,0x0,0x0,0x86,0x2,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x43,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xab,0x2,0x0,0x0,0xf6,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xcc,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x14,0x5,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfd,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbf,0x2,0x0, 0x0,0x23,0x1,0x0,0x0,0x1f,0x5,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4,0x5,0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x31, 0x1,0x0,0x0,0x4d,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x66,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x31,0x3,0x0,0x0,0xc5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x3, 0x0,0x0,0x51,0x5,0x0,0x0,0xb5,0x5,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x9d,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x60, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0,0x19,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x69,0x1,0x0,0x0,0xdc,0x4,0x0, 0x0,0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0xa9,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x80,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x26,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x20,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1, 0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x2,0x0,0x0,0x4e, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x38,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x69,0x3,0x0, 0x0,0x57,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x5f,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0x71,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3e,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb,0x3,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x68, 0x1,0x0,0x0,0xb7,0x3,0x0,0x0,0x25,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x16,0x5,0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x48,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0, 0x0,0xf0,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xc4,0x0, 0x0,0x0,0xf2,0x4,0x0,0x0,0x66,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe, 0x3,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0, 0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x1d,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x91,0x0,0x0,0x0,0xff,0x4, 0x0,0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0xf8, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0x10,0x2,0x0,0x0, 0x2a,0x3,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x3,0x0, 0x0,0xab,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0xa1,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x1d,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x67,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x1,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6a,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0, 0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0x84, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x3b,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0x1e,0x0,0x0,0x0,0xbb,0x5,0x0, 0x0,0xf5,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x7d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x29,0x0,0x0,0x0,0x26, 0x5,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x82,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x3,0x0,0x0, 0x8,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf6,0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x90,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x1, 0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe8,0x1,0x0,0x0,0x22, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xf3,0x1,0x0,0x0, 0x72,0x2,0x0,0x0,0xe,0x2,0x0,0x0,0xb6,0x5,0x0,0x0,0xf,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x27,0x3,0x0,0x0,0x77,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9e,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x9f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0, 0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x64,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xe7,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x4f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa8,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xed,0x2,0x0,0x0,0xcc,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xab,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x0,0x0, 0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x4b,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0x22,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x92,0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbc,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0, 0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x1e, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x5c,0x0,0x0,0x0, 0xd8,0x4,0x0,0x0,0x66,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc1,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0, 0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x3d,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xd5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xeb,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xce,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x73,0x2,0x0,0x0,0x22,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd2,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5, 0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0x40, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x98,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xde,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa1,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe2,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40, 0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe3,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x0,0x0,0x0, 0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x6,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xce,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xd2,0x1,0x0,0x0,0x9e,0x0,0x0,0x0,0xd6, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x4b,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x44,0x1,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x41,0x3,0x0,0x0,0x49,0x3,0x0,0x0,0x5a,0x2,0x0,0x0,0xc4,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x22,0x2,0x0,0x0, 0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x1e,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xc,0x5,0x0,0x0,0x53,0x2, 0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0x48, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x49,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x47,0x1,0x0, 0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0xc,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x6b,0x1,0x0,0x0,0x1f, 0x1,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x2,0x0,0x0, 0x72,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x7b,0x0,0x0, 0x0,0xbc,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x12,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x0, 0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x1d, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0,0x56,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x2,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x23,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd8, 0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x98,0x1,0x0,0x0,0x42,0x0,0x0,0x0,0x3, 0x3,0x0,0x0,0xd6,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x2,0x0,0x0, 0xfc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0xba,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x1,0x0,0x0,0x2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x31,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0, 0x0,0x8c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xf3,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb5,0x5,0x0,0x0,0x41,0x3,0x0,0x0,0xf7, 0x1,0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x35,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbc,0x5,0x0,0x0, 0xfc,0x4,0x0,0x0,0x1d,0x3,0x0,0x0,0x1d,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3d,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x40,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3, 0x0,0x0,0xf,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x82, 0x5,0x0,0x0,0x1b,0x2,0x0,0x0,0x9d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7c,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x44,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x5,0x0, 0x0,0x19,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x47,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x39,0x3,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a, 0x2,0x0,0x0,0xbb,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x61,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x1,0x0,0x0, 0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x97,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x2e,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x66,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x10,0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x69,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x5,0x0, 0x0,0x13,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x2f,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0xae,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x83,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x47,0x3,0x0,0x0,0x75,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x84,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x5, 0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x36, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x43,0x0,0x0,0x0, 0x7a,0x1,0x0,0x0,0xcc,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x5,0x0, 0x0,0xea,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x1d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x20,0x1,0x0,0x0,0x73, 0x2,0x0,0x0,0x7a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x98,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0, 0xcd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xd2,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0xda,0x0,0x0,0x0,0xa,0x2, 0x0,0x0,0xa2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0xe4, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0xe6,0x2,0x0,0x0, 0xf3,0x4,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa5,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x5,0x0, 0x0,0xe,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x5,0x0,0x0,0xe0,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0xeb,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1d,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xab,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x3, 0x0,0x0,0x13,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x3,0x0,0x0,0x15, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0xa0,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x5a,0x1,0x0,0x0,0xed,0x0,0x0, 0x0,0x6f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xde,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x0,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbb,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa1,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbc,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3, 0x0,0x0,0x2a,0x1,0x0,0x0,0xfe,0x2,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xe3,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbe,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8b,0x5,0x0,0x0,0x9a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xbf,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x3,0x0, 0x0,0x6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x49,0x1, 0x0,0x0,0xfd,0x1,0x0,0x0,0xa3,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c, 0x1,0x0,0x0,0xd8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcc,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0xc,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0xb2,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe8,0x4,0x0,0x0,0x2b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd5,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0xd9,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0x27,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x22,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x99, 0x3,0x0,0x0,0x62,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xdd,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0,0x0, 0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x31,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe6,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x96,0x3,0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe8,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0, 0x0,0x59,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x26,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf3,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x20,0x2,0x0,0x0,0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfa,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x0, 0x0,0x0,0xbc,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x29, 0x5,0x0,0x0,0x87,0x5,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xaa,0x1,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x3,0x0,0x0,0x1d,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x23,0x1,0x0,0x0,0x33,0x0,0x0,0x0,0xae, 0x3,0x0,0x0,0xfe,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0, 0xf,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xc6,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x50,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x24,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x21,0x2,0x0,0x0,0x37,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x27,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0, 0x0,0x6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x5b,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x3e,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x29,0x3,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x32,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x0, 0x0,0x0,0x4e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x2e, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x42,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x2,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0xb5,0x5,0x0,0x0,0xec,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xf8,0x4,0x0,0x0,0x6, 0x1,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0xc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xe,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x56,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x40,0x3,0x0,0x0,0x6e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x58,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x3,0x0, 0x0,0x2d,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x7,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4,0x3,0x0,0x0,0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5c,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41, 0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe8,0x0,0x0,0x0, 0x94,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x60,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x40,0x3,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x64,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x2, 0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x1e, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xd9,0x1,0x0,0x0, 0xfe,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6c,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3b,0x5,0x0, 0x0,0x32,0x1,0x0,0x0,0x7e,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1e,0x3,0x0,0x0,0xe2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x76,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46, 0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x4d,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0x71,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7b,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x38,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0x99,0x2,0x0,0x0,0x85,0x1,0x0, 0x0,0x2d,0x3,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x81,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0, 0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0xbb, 0x1,0x0,0x0,0x77,0x1,0x0,0x0,0x8e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x83,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x21,0x5,0x0,0x0,0xa8,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x84,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0, 0x0,0x58,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xd5,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xc3,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xb2,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x96,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4d,0x2,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x2, 0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x76, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0x5f,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0xb6,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x29,0x2,0x0,0x0,0x2c,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38, 0x5,0x0,0x0,0x69,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaa,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0, 0xe6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x6a,0x2,0x0, 0x0,0x8a,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb3,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x24,0x5, 0x0,0x0,0x63,0x2,0x0,0x0,0x4f,0x1,0x0,0x0,0x57,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x53,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb6,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x45,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb9,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0, 0x0,0xd2,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0x41,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x11,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xca,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd3,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcf,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3, 0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0xf3, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x98,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x23,0x5,0x0,0x0,0x30,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x21,0x2,0x0,0x0,0xbc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3e, 0x3,0x0,0x0,0xbe,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xde,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x3,0x0,0x0, 0x27,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xb8,0x3,0x0, 0x0,0x9f,0x0,0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe0,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x5, 0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xc, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0xb7,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x92,0x2,0x0,0x0,0xab,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xea,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f, 0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xeb,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x1,0x0,0x0, 0xd9,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x5d,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x53,0x0,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x88,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x86,0x0,0x0,0x0,0x3c,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x3b,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x9d,0x5,0x0,0x0,0x77,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xe0,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x12,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0xac,0x1,0x0,0x0,0x19,0x1,0x0,0x0,0x66,0x0,0x0,0x0,0xab,0x0,0x0, 0x0,0x27,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x13,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2, 0x0,0x0,0xe0,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x4e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0xbe,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0x9b,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc0,0x3,0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x28,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85, 0x2,0x0,0x0,0xf4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x1,0x0,0x0, 0x8f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0xd6,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0xe7,0x0, 0x0,0x0,0x6,0x1,0x0,0x0,0x67,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0xb2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x36,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x90,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4c,0x1,0x0,0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x45,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3, 0x3,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4f,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd,0x5,0x0,0x0, 0x6d,0x2,0x0,0x0,0xfe,0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x69,0x3,0x0,0x0, 0x10,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x0,0x0,0x0,0x2a,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0xd,0x1,0x0,0x0,0x85,0x2, 0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xe4, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x49,0x3,0x0,0x0, 0x12,0x5,0x0,0x0,0x1e,0x1,0x0,0x0,0xb1,0x2,0x0,0x0,0x26,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x16,0x3,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0, 0x2,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x71,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc1,0x2,0x0,0x0, 0x60,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x93,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0x68,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0xcf, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x81,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x4,0x3,0x0, 0x0,0x56,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x56,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xc9, 0x3,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x96,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x0,0x0,0x0, 0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x42,0x5,0x0, 0x0,0xde,0x4,0x0,0x0,0xf7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x0, 0x0,0x0,0x9e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xa4, 0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0x7d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf0,0x1,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0x59,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2e,0x3,0x0,0x0,0xa2,0x0,0x0,0x0,0x5f, 0x5,0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbc,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x3,0x0,0x0, 0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x9b,0x3,0x0, 0x0,0xf,0x3,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc5,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x1, 0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x70, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x4a,0x3,0x0,0x0, 0x6a,0x1,0x0,0x0,0xb3,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xca,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0, 0x0,0x4b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x3e,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0xd5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x19,0x3,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd6,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1, 0x0,0x0,0x46,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0x42, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x6c,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x50,0x1,0x0,0x0,0xa3,0x1,0x0, 0x0,0xee,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9,0x5,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39, 0x3,0x0,0x0,0x17,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf1,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x23,0x1,0x0,0x0, 0xe8,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x69,0x3,0x0,0x0,0x5c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf6,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5, 0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x4c, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x2,0x0,0x0,0x48,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x69,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2f, 0x1,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x3,0x0,0x0,0x13,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x98,0x0,0x0,0x0,0x61,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xa3,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x5,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x13,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x99,0x2,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x14,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0, 0x0,0x69,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xdb,0x0, 0x0,0x0,0x3c,0x1,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2, 0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x18,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x3,0x0,0x0, 0x4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xc7,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x4e,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0x12,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x33,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x14,0x3,0x0,0x0,0x91,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0xcc,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x22,0x1,0x0,0x0,0x84,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3d,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e, 0x2,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3e,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x1,0x0,0x0, 0xb2,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x37,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x49,0x2,0x0,0x0,0x2d,0x5, 0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x51, 0x5,0x0,0x0,0xbd,0x1,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x15,0x5,0x0,0x0,0x8,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4a,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0, 0x0,0xee,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x4,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3b,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x59,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0x5c,0x3,0x0,0x0,0x9d,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x16,0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x62,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0, 0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x74,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x51,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x74,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xaf,0x0,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7a,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2, 0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0xd8, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xa7,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x5a,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x2,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8c,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28, 0x1,0x0,0x0,0x81,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x90,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x5,0x0,0x0, 0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0xdf,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x72,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa1,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe6,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaa,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x62,0x5,0x0, 0x0,0x1c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x55,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb4,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9b,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb5,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3, 0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x36, 0x2,0x0,0x0,0x37,0x3,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb9,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb9,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc3,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0, 0x0,0x10,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xe6,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x11,0x3,0x0,0x0,0xc6, 0x1,0x0,0x0,0xbb,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x4,0x0,0x0, 0x46,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x1a,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x34,0x1,0x0,0x0,0x2,0x5,0x0,0x0,0xc, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2,0x3,0x0,0x0,0x78,0x0,0x0,0x0, 0x7c,0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xea,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0, 0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x39,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0x32,0x5,0x0,0x0,0x11,0x5,0x0,0x0, 0x55,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x9,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x7f,0x0, 0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xb2, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0x1b,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x88,0x0,0x0,0x0,0x50,0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x38,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x76,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd1,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x10,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4, 0x0,0x0,0x1c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x7d, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x78,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf,0x3,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1d, 0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0xf5,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x27,0x0,0x0,0x0,0x8f,0x0,0x0,0x0, 0xff,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x70,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x35,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfa,0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x39,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x2,0x0, 0x0,0xc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0xec,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xba, 0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x0,0x0,0x0, 0xa3,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0xb2,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xb0,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xc6, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x17,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe0,0x1,0x0,0x0,0x36,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x3c,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0xe7,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x5,0x0,0x0,0x59,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x2,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x70,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x4, 0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0xce, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0xb1,0x5,0x0,0x0, 0x23,0x3,0x0,0x0,0x26,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x76,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0, 0x0,0x7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x6b,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0xaa,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3b,0x5,0x0,0x0,0xd5,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x88,0x5,0x0,0x0,0xa6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8e,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x0, 0x0,0x0,0xcb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x44, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x84,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x76,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0xce,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa2,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x1,0x0,0x0, 0x94,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0x15,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0xf0,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xbf,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc3,0x3,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc0,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0, 0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x86,0x0, 0x0,0x0,0x1e,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc8,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23, 0x3,0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x3,0x0,0x0, 0x4,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd7,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe2,0x4,0x0,0x0,0xb1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe5,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb,0x3, 0x0,0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0,0x0,0xcf, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x89,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0xba,0x5,0x0, 0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0xfe,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x3,0x0,0x0,0x16,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x34,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x88,0x2,0x0,0x0,0x38,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x11,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x0, 0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x70, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xc9,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0xb1,0x5,0x0,0x0,0xd1,0x2,0x0, 0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x68,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0xd5,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x26,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe,0x5,0x0,0x0,0x57,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x28,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc8,0x0, 0x0,0x0,0x5a,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2b,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x26,0x5,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2d,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0, 0x0,0x2b,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x73,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x1c,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xcd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3d,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4c,0x1,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x42,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x3, 0x0,0x0,0x4b,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x5b,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x97,0x5,0x0,0x0,0xd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x15,0x5,0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x49,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x5,0x0, 0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xe4,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0x39,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x36,0x2,0x0,0x0,0x3a,0x0,0x0,0x0, 0x82,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xa7,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x14,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x4e,0x1,0x0,0x0,0x39,0x2,0x0,0x0,0x56, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0xd9,0x1,0x0,0x0, 0xe5,0x4,0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x75,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x2,0x0, 0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0xbd,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0xa8,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x77,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x77,0x2,0x0,0x0,0xff,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8a,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x0, 0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0x6c,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x4,0x0,0x0,0x6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa2,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a, 0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa6,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0, 0xfc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0x35,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x14,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe8,0x4,0x0,0x0,0xca,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb5,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x21,0x2,0x0,0x0,0xa1,0x3,0x0,0x0,0x42,0x1,0x0,0x0,0xb2,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa3,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd4,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x4,0x0,0x0, 0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0xaa,0x0,0x0, 0x0,0x9a,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xdb,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x4, 0x0,0x0,0x56,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x3c, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0xce,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x0,0x2,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe, 0x2,0x0,0x0,0x1b,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfd,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x2,0x0,0x0, 0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x68,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0x68,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x10,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x47,0x1,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x11,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0, 0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x68,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0x29,0x5,0x0,0x0,0x34,0x1,0x0,0x0, 0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x15,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x1,0x0,0x0,0x99,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x43,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x35,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x2,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3d,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0, 0x0,0xb1,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x4e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7d,0x1,0x0,0x0,0x15,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x58,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1b,0x3,0x0,0x0,0x93,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5d,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3, 0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x6e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0x2a,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x60,0x2,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd, 0x0,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0, 0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x15,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0xa3,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x7b,0x2,0x0,0x0,0x54,0x0, 0x0,0x0,0x95,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x3c, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0x84,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe1,0x4,0x0,0x0,0x4a,0x3,0x0,0x0,0x5f,0x1,0x0,0x0,0x54,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x91,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x67,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x5, 0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x24, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0x77,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa,0x3,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42, 0x1,0x0,0x0,0x51,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb4,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd5,0x0,0x0,0x0, 0xcc,0x1,0x0,0x0,0x1,0x3,0x0,0x0,0x98,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb8,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x70,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbb,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x2, 0x0,0x0,0x63,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0xef, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x0,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x34,0x2,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd6,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x1,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xdd,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x0,0x0,0x0, 0x85,0x1,0x0,0x0,0x76,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x71,0x3,0x0,0x0,0x3d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf8,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2, 0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xb8, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x15,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x2c,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5e,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x10,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x6a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x11,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x2,0x0,0x0, 0xc9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xd5,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6c,0x0,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x26,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0, 0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x97,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xef,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x16,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3a,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbc,0x5,0x0,0x0,0xba,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3b,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x1, 0x0,0x0,0x4b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0x7f, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x1c,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x22,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa6,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x52,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87, 0x5,0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x55,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x0,0x0,0x0, 0xf1,0x1,0x0,0x0,0x68,0x3,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x56,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x41,0x1,0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x59,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3, 0x0,0x0,0xbd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x3,0x0,0x0,0x99, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x10,0x5,0x0,0x0, 0x66,0x2,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x64,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0, 0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x0,0x0,0x0,0x1c,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x16,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xac,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x77,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc6,0x1,0x0,0x0,0xce,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x78,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x0, 0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0xe, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xa8,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0xdc,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x42,0x1,0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x89,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a, 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8f,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x3,0x0,0x0, 0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0xd,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3f,0x5,0x0,0x0,0xd2,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa7,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x2,0x0, 0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x32,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0x46,0x5,0x0,0x0,0x31, 0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaf,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0, 0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x46,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0xe0,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x6,0x1,0x0,0x0,0xee,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x6d, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x5,0x0,0x0,0x99,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe9,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f, 0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x3,0x0,0x0, 0x21,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x2e,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x31,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xdc,0x4,0x0,0x0,0xa6,0x5,0x0,0x0,0x8f, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x18,0x1,0x0,0x0, 0x78,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xeb,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x0,0x0, 0x0,0x78,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x36,0x5, 0x0,0x0,0xba,0x3,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f, 0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf0,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0,0x0,0x0, 0x6b,0x1,0x0,0x0,0x5a,0x5,0x0,0x0,0x5c,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf3,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3a,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2, 0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0xf3, 0x0,0x0,0x0,0x49,0x3,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd8,0x0,0x0,0x0,0x52,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x3,0x0, 0x0,0x5b,0x1,0x0,0x0,0x4b,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2b,0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x12,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6, 0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x17,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0, 0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x63,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xf,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1f,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2f,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x0,0x0, 0x0,0x62,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xce,0x2,0x0,0x0,0xaa,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0x21,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x43,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3,0x2,0x0,0x0,0x97,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x45,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2, 0x0,0x0,0x37,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0xac, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x77,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x17,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x96,0x2,0x0,0x0,0xfa,0x4,0x0, 0x0,0x5f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x8e,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x60,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x80,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5c,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x56,0x5,0x0,0x0,0x66,0x5,0x0,0x0,0x12,0x1,0x0,0x0,0x7,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0x7e,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0x30,0x5,0x0,0x0,0x3c,0x1,0x0,0x0,0xa2, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x95,0x1,0x0,0x0, 0x74,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x66,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0x77,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x1,0x0,0x0,0xc1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x9c,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x39,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x72,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x76,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x1, 0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0x7c, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x32,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x17,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd3,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x89,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0, 0x37,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x6b,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x85,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x94,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa1,0x1,0x0,0x0,0xa6,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9e,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3,0x0, 0x0,0x9c,0x3,0x0,0x0,0x71,0x5,0x0,0x0,0x7c,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x45,0x1,0x0,0x0,0x13,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb2,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8, 0x2,0x0,0x0,0x60,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb8,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xac,0x3,0x0,0x0, 0xb,0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x46,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd3,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xe1,0x4,0x0,0x0,0xa7,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0x67,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x46,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdd,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6c,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdf,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x0,0x0, 0x0,0x82,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0xce,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x9e,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf4,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x63,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf7,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5, 0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xa4, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x5b,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0xc4,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x6,0x2,0x0,0x0,0xa6,0x1,0x0,0x0,0xd8,0x1,0x0,0x0,0x9e,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x16,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd1,0x1,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1c,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x1, 0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x7f, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0x21,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0x35,0x3,0x0,0x0,0x3a,0x5,0x0, 0x0,0x6e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0x26,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0x89,0x5,0x0,0x0,0xf0, 0x4,0x0,0x0,0x34,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x33,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0, 0xb2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0xc9,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x45,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9d,0x5,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4c,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6b,0x5,0x0, 0x0,0x42,0x5,0x0,0x0,0x5e,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb5,0x5,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x56,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x2,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x58,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0, 0x6c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x2d,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x5,0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x78,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x41,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x5,0x0, 0x0,0xd4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x6d,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23,0x5,0x0,0x0,0xe5,0x4,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x92,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x95,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x2, 0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xa6, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x29,0x2,0x0,0x0,0xbd,0x5,0x0,0x0,0xa9,0x5,0x0,0x0,0xe1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x6d,0x0,0x0,0x0, 0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xff,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc0,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1e,0x2,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc1,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x2,0x0, 0x0,0x96,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x2b,0x1, 0x0,0x0,0xaf,0x5,0x0,0x0,0x11,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcc,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a, 0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0,0x0, 0x29,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x84,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x58,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe8,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x0,0x2,0x0,0x0,0x84,0x1,0x0,0x0,0xd2,0x1,0x0,0x0,0x9d,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x5,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xec,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9, 0x2,0x0,0x0,0xf2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xed,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0xc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x71,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x5,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf8,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbd,0x5,0x0,0x0,0x7a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0x13,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0x1e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x5b,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2, 0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x5e, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x5,0x0,0x0,0xf6,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x24,0x3,0x0,0x0,0x22,0x3,0x0,0x0,0xce,0x2,0x0,0x0,0x9c,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xf,0x2,0x0,0x0,0x4,0x2,0x0,0x0,0x77,0x1,0x0,0x0,0x7f,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3a,0x5,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0, 0x0,0xe7,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x39,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x93,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x77,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4c,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x38,0x2,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x53,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3, 0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xbd, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x2a,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xed,0x0,0x0,0x0,0x44,0x3,0x0,0x0,0x4d,0x5,0x0,0x0,0x2e,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x6,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x9,0x3,0x0,0x0,0xf1,0x0,0x0,0x0, 0xb,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x62,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x96,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x92,0x0,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0, 0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xc8,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0x59,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0xe4,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x49,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x1, 0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0x22, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0xfb,0x1,0x0,0x0, 0x2a,0x3,0x0,0x0,0x15,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb5,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x5,0x0, 0x0,0x3e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x8f,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x53,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc9,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe7,0x2,0x0,0x0,0x29,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xca,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1, 0x0,0x0,0xe,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0x36, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xb3,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x42,0x1,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd7,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2, 0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0, 0x86,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0x3d,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x2b,0x5, 0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x10, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xf4,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1a,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x48,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x3,0x0,0x0,0x2f,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0, 0xaa,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0xa,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4c,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x47,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4f,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x0,0x0, 0x0,0x35,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1b,0x2,0x0,0x0,0x29,0x0, 0x0,0x0,0xf9,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x54,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd, 0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x60,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x5,0x0,0x0, 0x52,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x8f,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x75,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8a,0x5,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7c,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0, 0x0,0xbf,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x65,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x1a,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x63,0x1,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x5, 0x0,0x0,0xaa,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x5,0x0,0x0,0xf3, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xed,0x2,0x0,0x0, 0x41,0x2,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xab,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x0,0x0, 0x0,0x12,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0x2f,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x44, 0x2,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb6,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xff,0x4,0x0,0x0, 0x20,0x5,0x0,0x0,0x67,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x23,0x5,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb9,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x2, 0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0xda, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0x13,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1a,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd1,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x4,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0, 0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x4,0x0,0x0,0x7a,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xec,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfe,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xb9,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x65,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x13,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xef,0x4,0x0,0x0,0xe2,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x17,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3b,0x3, 0x0,0x0,0xe8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0xe1, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x9,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x42,0x3,0x0,0x0,0xb7,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x22,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa, 0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x24,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x5,0x0,0x0, 0xf8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0xd8,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x2d,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x2c, 0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0xd,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3a,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xac,0x1,0x0,0x0,0x99,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3c,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0, 0x0,0x5b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xc,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0xc6,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf7,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x47,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x4,0x0,0x0,0x2d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x48,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5, 0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x1b, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x76,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x40,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x52,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x3,0x0,0x0,0xb4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0x9,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xd,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x37,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6d,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xac,0x3,0x0,0x0,0x68,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x77,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x5,0x0, 0x0,0xf3,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0xa9,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0xcc,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x95,0x1,0x0,0x0,0x3b,0x0,0x0,0x0,0x7a,0x5,0x0,0x0, 0x7b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0x63,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x35,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0, 0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x3,0x0,0x0,0x21,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x9b, 0x1,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa8,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x5,0x0,0x0, 0x29,0x5,0x0,0x0,0xd3,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa9,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x8f,0x2,0x0,0x0,0x6c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x5, 0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x62, 0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0xa,0x1,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2e,0x3,0x0,0x0,0x2,0x3,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc0,0x5,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61, 0x1,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xca,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0, 0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xd,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xf1,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xda,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8,0x5,0x0,0x0,0x44,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe0,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x5,0x0, 0x0,0xcc,0x1,0x0,0x0,0x6c,0x1,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9b,0x1,0x0,0x0,0xb0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xee,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a, 0x2,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf0,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0, 0x62,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0xdc,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x5,0x0,0x0,0xa,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x13,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xaa,0x5,0x0,0x0,0xb3,0x5,0x0,0x0,0x33,0x2,0x0,0x0,0x26,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x26,0x2,0x0,0x0,0xfd,0x1,0x0, 0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xc6,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x1f,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0xf1,0x0,0x0,0x0, 0x3c,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0xd5,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x40,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1f,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x28,0x3,0x0, 0x0,0x20,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x96,0x2, 0x0,0x0,0x39,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x36,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0, 0x1,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3b,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x0,0x0,0x0, 0xa,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xfb,0x4,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x4,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x49,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x2a,0x2,0x0,0x0,0x5b,0x5,0x0,0x0,0xe,0x5,0x0,0x0,0x3c,0x2,0x0,0x0, 0x7f,0x1,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4a,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0xc0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0xc0,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x1c,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x23,0x3,0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5e,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x1, 0x0,0x0,0x20,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x59, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0,0x1f,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x5a,0x1,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xba,0x3,0x0,0x0,0xb9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6c,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7, 0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x2,0x0,0x0, 0x4a,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0xe,0x3,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3,0x5,0x0,0x0,0x64,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6,0x2,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8e,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x3,0x0, 0x0,0x14,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x2,0x0,0x0,0x1a,0x3, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xc9,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xca,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x96,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x8,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x2, 0x0,0x0,0x2e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x21, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x4e,0x5,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x37,0x2,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x90,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb1,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16, 0x5,0x0,0x0,0xec,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb3,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x4,0x0,0x0, 0x48,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x12,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc0,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd9,0x4,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc7,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0x61,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x60,0x1,0x0,0x0,0x64,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x5,0x0,0x0,0x46,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0xd8,0x0,0x0,0x0,0x15,0x2,0x0,0x0, 0x2c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x3b,0x2,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe8,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc4,0x3,0x0,0x0,0xb0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xed,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0, 0x0,0x9d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x2c,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0x61,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x1a,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7e,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf7,0x1, 0x0,0x0,0x5f,0x3,0x0,0x0,0x4f,0x1,0x0,0x0,0x2a,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x79,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x12,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0, 0x0,0x40,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0x7b,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1d,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x23,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x5, 0x0,0x0,0xf3,0x4,0x0,0x0,0x5e,0x2,0x0,0x0,0x49,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x26,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x15,0x2,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2a,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0, 0x0,0x4e,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x23,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x36,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf5,0x4,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x38,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x78,0x5, 0x0,0x0,0x4,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xeb, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0x61,0x0,0x0,0x0, 0x69,0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x48,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0, 0x0,0x5b,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0x60,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x5a,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4e,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfe,0x1,0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5, 0x0,0x0,0xfb,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0xf8, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x27,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3a,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37, 0x1,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5e,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x0,0x0,0x0, 0xa,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x5b,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0xee,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x24,0x5,0x0,0x0,0xd3,0x4,0x0,0x0,0x67,0x0,0x0,0x0,0x44, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0xf4,0x4,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xad,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61, 0x1,0x0,0x0,0xbe,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x1,0x0,0x0, 0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0x11,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x1,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x88,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2e,0x5,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x5,0x0, 0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x16,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0x3d,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0xaa,0x0,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaf,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe6,0x2,0x0,0x0,0x25,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb1,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3, 0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xbd, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0x7d,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc,0x1,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc0,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc6,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x0,0x0,0x0, 0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xfc,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd5,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x80,0x5,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd6,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x5,0x0, 0x0,0x9,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0xbb,0x5, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x59,0x2,0x0,0x0,0x26,0x2,0x0,0x0,0xfd, 0x1,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe1,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb6,0x0,0x0,0x0, 0xbb,0x5,0x0,0x0,0x31,0x1,0x0,0x0,0x4,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe8,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfa,0x4,0x0,0x0,0x51,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xeb,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2, 0x0,0x0,0x63,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xfc, 0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0x65,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x25,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xef,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x23, 0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0,0x0, 0x5e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1e,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0xda,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x1e,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x5c,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1f,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0, 0x0,0x85,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x97,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x27,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc, 0x5,0x0,0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x30,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0, 0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x1e,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0x80,0x0,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1e,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0xe8,0x4,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xe1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x48,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x86,0x1,0x0,0x0,0xa7,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x3,0x0, 0x0,0x3e,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0x29,0x1, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1d,0x1,0x0,0x0,0xf1,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x81,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6f,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x0, 0x0,0x0,0x8f,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x16, 0x2,0x0,0x0,0x3a,0x3,0x0,0x0,0xbb,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x87,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc1,0x2,0x0,0x0,0xc6,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8c,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x2,0x0, 0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0xd5,0x4, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0xa4,0x3,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x14,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa4,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe2,0x4,0x0,0x0,0x13,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa6,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5, 0x0,0x0,0xe4,0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x20, 0x4,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0x1b,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x8f,0x5,0x0,0x0,0xd4,0x2,0x0, 0x0,0xb0,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x62,0x2,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xd2,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc7,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x35,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x0, 0x0,0x0,0xe9,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0x7b, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xee,0x2,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x6e,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xba,0x2,0x0,0x0,0xc,0x5,0x0,0x0,0x57,0x2,0x0,0x0,0x2f,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf0,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x14,0x2,0x0,0x0,0x76,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf5,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0, 0x0,0x0,0x64,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x4e, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x3,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0x9a,0x0,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x28,0x1,0x0,0x0,0x58,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x16,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac, 0x1,0x0,0x0,0x35,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1a,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x0,0x0,0x0, 0x94,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x3d,0x1,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x5,0x0,0x0,0x86,0x1,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xaa,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2b,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1f,0x5,0x0,0x0,0x22,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x30,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x1,0x0, 0x0,0xc6,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x10,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0x27,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x40,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfb,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x41,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x5, 0x0,0x0,0x41,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x1c, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x66,0x1,0x0,0x0, 0xcf,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x47,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0, 0x0,0x9d,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x6e,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x52,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x56,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1e,0x2,0x0,0x0,0x50,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5f,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x0, 0x0,0x0,0x5c,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0xd9,0x2,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xa2,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x61,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x66,0x2,0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x64,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0, 0x0,0x90,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xaf,0x2, 0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x46,0x5,0x0,0x0,0x1, 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x63,0x2,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x75,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb6,0x5,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x80,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x2, 0x0,0x0,0x2b,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1,0x0,0x0,0x40, 0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xc0,0x3,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x81,0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb6,0x5,0x0,0x0,0x11,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x91,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a, 0x2,0x0,0x0,0x9c,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x92,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x5,0x0,0x0, 0x6d,0x5,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x5,0x0,0x0,0x5,0x5,0x0, 0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5,0x0,0x0,0x4f,0x5,0x0,0x0,0x1,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x6a,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa6,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa9,0x1,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xad,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4,0x0, 0x0,0x20,0x5,0x0,0x0,0xbd,0x1,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x8f,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x18,0x1,0x0,0x0,0x52,0x2, 0x0,0x0,0xe9,0x4,0x0,0x0,0x44,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed, 0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0, 0x26,0x1,0x0,0x0,0xa1,0x1,0x0,0x0,0x91,0x1,0x0,0x0,0x1,0x4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x5,0x0,0x0,0xff,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd4,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x1, 0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0xcf, 0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xb,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0xa7,0x5,0x0,0x0,0x1,0x4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x47,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe8,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2, 0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xed,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x4,0x0,0x0, 0x70,0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x68,0x1,0x0, 0x0,0xfd,0x2,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf1,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xca,0x0, 0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0xa4, 0x3,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x9c,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x4a,0x2,0x0,0x0,0x52,0x5,0x0,0x0,0xb5,0x0,0x0,0x0,0xfd,0x0, 0x0,0x0,0x96,0x3,0x0,0x0,0x47,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63, 0x1,0x0,0x0,0x5d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x1,0x0,0x0, 0x30,0x1,0x0,0x0,0x71,0x1,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x1,0x0,0x0,0x27,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0, 0x0,0x0,0xdf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0xb7, 0x1,0x0,0x0,0xe7,0x4,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x21,0x3,0x0,0x0,0x48,0x2,0x0,0x0,0xa,0x2,0x0,0x0,0x31,0x0,0x0,0x0, 0x4d,0x2,0x0,0x0,0xcf,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x5,0x0, 0x0,0x73,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0xda,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x41,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x22,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xd5,0x2,0x0,0x0,0xab,0x2,0x0, 0x0,0x46,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x16,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd1,0x0, 0x0,0x0,0x92,0x2,0x0,0x0,0x2,0x3,0x0,0x0,0x14,0x5,0x0,0x0,0xcc,0x2, 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0x58, 0x1,0x0,0x0,0xf6,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe2,0x2,0x0,0x0,0xfd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3,0x0, 0x0,0xe0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0x31,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x67,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x3a,0x0,0x0,0x0,0x49,0x0,0x0,0x0, 0x4,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x3f,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2f,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x24,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5, 0x0,0x0,0x5d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0xb2, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0x25,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xbd,0x1,0x0,0x0,0x99,0x3,0x0,0x0,0xef,0x4,0x0, 0x0,0xb9,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0xe9,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x26, 0x2,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xba,0x3,0x0,0x0, 0x11,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x26,0x0,0x0,0x0,0xde,0x4,0x0,0x0, 0xf6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x53,0x1,0x0,0x0,0xfa,0x2,0x0, 0x0,0x47,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x1, 0x0,0x0,0x91,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xd4, 0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xc4,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x60,0x2,0x0,0x0,0x37,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x34,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x4,0x0, 0x0,0x59,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x4,0x0,0x0,0x6f,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0xc7,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x55,0x2,0x0,0x0,0x30,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xc2,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x3e,0x0,0x0,0x0,0x7a,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x79,0x5,0x0,0x0,0x72,0x5, 0x0,0x0,0x42,0x2,0x0,0x0,0x76,0x1,0x0,0x0,0x1b,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe2,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0xa7, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0x25,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0x36,0x1,0x0, 0x0,0xdf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x5,0x0,0x0,0x1a,0x1, 0x0,0x0,0x3f,0x1,0x0,0x0,0x8b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4c, 0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x3c,0x5,0x0,0x0,0xe2,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x63,0x1,0x0,0x0,0x70,0x2,0x0,0x0,0xbc,0x5,0x0,0x0,0xd2,0x0,0x0, 0x0,0x37,0x2,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x44,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5, 0x0,0x0,0xc9,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0x1e, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x97,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x6d,0x2,0x0,0x0,0x3c,0x0,0x0, 0x0,0x16,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0xe9,0x1, 0x0,0x0,0x4d,0x2,0x0,0x0,0xe2,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0xc6,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x92,0x2,0x0,0x0,0xeb, 0x2,0x0,0x0,0x6d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x5,0x0,0x0, 0x25,0x5,0x0,0x0,0xa3,0x2,0x0,0x0,0x26,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa6,0x5,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2d,0x0, 0x0,0x0,0xbe,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0xd5,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x22,0x5,0x0,0x0,0x34,0x2,0x0,0x0,0x3f,0x2,0x0,0x0,0x24,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xbe,0x5,0x0,0x0,0xc9,0x2,0x0, 0x0,0xe7,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x2e,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0xd4,0x0,0x0,0x0,0x46, 0x3,0x0,0x0,0x85,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x0,0x0,0x0, 0xe,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x6b,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0x51,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x66,0x5,0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x69,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x31,0x3,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x2,0x0, 0x0,0xfb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0xbc,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0xe6,0x4,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0x1e,0x0,0x0,0x0, 0xc0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xe4,0x1,0x0, 0x0,0x36,0x1,0x0,0x0,0x6e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x73,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x81,0x5, 0x0,0x0,0x90,0x1,0x0,0x0,0x3d,0x1,0x0,0x0,0x21,0x0,0x0,0x0,0x2f,0x3, 0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x3e, 0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0xee,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x81,0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x2,0x0, 0x0,0x6c,0x5,0x0,0x0,0x35,0x3,0x0,0x0,0x6d,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x88,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4, 0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x81,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x5,0x0,0x0, 0xd8,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x9,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x19,0x5,0x0,0x0,0x9b,0x3, 0x0,0x0,0x6f,0x0,0x0,0x0,0x55,0x2,0x0,0x0,0xb1,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xd8,0x4,0x0,0x0,0x36,0x1,0x0,0x0,0x6a, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0xfa,0x4,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x8,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xa,0x2,0x0,0x0,0x22,0x0,0x0,0x0,0x62,0x2,0x0,0x0,0x4d,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0xcf,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xd2,0x1,0x0,0x0, 0x92,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7e,0x5,0x0, 0x0,0x3c,0x5,0x0,0x0,0xa8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x98,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3, 0x0,0x0,0xe3,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x48, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x83,0x5,0x0,0x0, 0xd3,0x4,0x0,0x0,0x3f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0x41,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0x5,0x1,0x0,0x0,0x67,0x3,0x0, 0x0,0x8f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x50,0x1, 0x0,0x0,0x2c,0x3,0x0,0x0,0xfc,0x1,0x0,0x0,0x5,0x0,0x0,0x0,0xf,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x8c,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0x99,0x3,0x0,0x0,0x67,0x5,0x0,0x0, 0x6c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x91,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x64,0x2,0x0,0x0,0x9,0x0,0x0,0x0,0x6,0x3,0x0,0x0,0x33,0x0,0x0,0x0, 0x9e,0x5,0x0,0x0,0x4d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x39,0x3,0x0, 0x0,0x18,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x72,0x2,0x0,0x0,0x21,0x1,0x0, 0x0,0xe,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x65,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0x4e,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x76,0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0xd4,0x4,0x0,0x0,0x37,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0x43,0x5,0x0,0x0,0xdf, 0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x13,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x12,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x2a,0x0, 0x0,0x0,0xc2,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x12, 0x2,0x0,0x0,0x73,0x3,0x0,0x0,0x67,0x5,0x0,0x0,0x67,0x1,0x0,0x0,0x95, 0x5,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x64,0x0,0x0,0x0, 0x70,0x5,0x0,0x0,0x4b,0x2,0x0,0x0,0xfb,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x37,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x4, 0x0,0x0,0x19,0x5,0x0,0x0,0x92,0x5,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x82,0x1,0x0,0x0,0x38,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x31,0x5,0x0,0x0,0x67,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x78,0x0,0x0, 0x0,0x2a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0x58,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0xf, 0x5,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0, 0x48,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0xc4,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x2,0x0,0x0,0xa3,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x81,0x2,0x0,0x0,0x85,0x2,0x0,0x0,0x5e,0x5,0x0,0x0,0xdc, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x69,0x2,0x0,0x0, 0x45,0x5,0x0,0x0,0x9a,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x5,0x0, 0x0,0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x1,0x0,0x0,0xa6,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x14,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x17,0x0,0x0,0x0,0xfd,0x1,0x0,0x0, 0x51,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x2,0x0,0x0,0x91,0x5,0x0, 0x0,0x49,0x5,0x0,0x0,0xa1,0x2,0x0,0x0,0xa5,0x0,0x0,0x0,0xaa,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x82,0x1,0x0,0x0,0x4d,0x5, 0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0x6c, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xf0,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe,0x5,0x0,0x0,0x9e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x55, 0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x1,0x0,0x0,0x11,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf0,0x4,0x0,0x0,0x69,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x2, 0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x9, 0x1,0x0,0x0,0x22,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0x46,0x5,0x0,0x0,0x67,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x13,0x1,0x0,0x0,0x5f,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb7,0x3,0x0,0x0,0xc,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88, 0x2,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xea,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0, 0x7c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x9b,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8e,0x2,0x0,0x0,0x6a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x19,0x3,0x0, 0x0,0x1d,0x2,0x0,0x0,0xad,0x5,0x0,0x0,0xbf,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x37,0x1,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96, 0x5,0x0,0x0,0xbf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xca,0x0,0x0,0x0, 0x69,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x1e,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb2,0x1,0x0,0x0,0x43,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x1, 0x0,0x0,0x41,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0x17, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0xe4,0x1,0x0,0x0, 0x5b,0x1,0x0,0x0,0x5e,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x5,0x0, 0x0,0x33,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0xc0,0x0, 0x0,0x0,0x66,0x2,0x0,0x0,0x43,0x1,0x0,0x0,0xaf,0x2,0x0,0x0,0xb7,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0xa0,0x1,0x0,0x0,0x5e, 0x0,0x0,0x0,0x18,0x2,0x0,0x0,0x27,0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xba,0x2,0x0,0x0,0x10,0x1,0x0,0x0,0xe,0x0,0x0,0x0, 0xd7,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x1c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x70,0x0,0x0,0x0,0x15,0x2, 0x0,0x0,0x7a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x4,0x0,0x0,0x9, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x90,0x2,0x0,0x0, 0x14,0x0,0x0,0x0,0x99,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x44,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x19,0x5,0x0,0x0,0x2f,0x0,0x0, 0x0,0x85,0x1,0x0,0x0,0x7f,0x5,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xbf,0x3,0x0,0x0,0x82,0x1,0x0,0x0,0x27,0x0,0x0,0x0,0x5d,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0xa4,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x62,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0xd3,0x0,0x0,0x0,0x3c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0,0x0,0x3c,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5b,0x5,0x0,0x0,0x61,0x5,0x0,0x0,0x4e,0x0,0x0,0x0,0x92,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0x9d,0x2,0x0,0x0,0x1f,0x3,0x0, 0x0,0x7f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x36,0x0, 0x0,0x0,0x6a,0x2,0x0,0x0,0x13,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x24,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd, 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x26,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x5,0x0,0x0, 0x18,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x18,0x5,0x0, 0x0,0x7f,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x29,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0, 0x0,0x0,0xfd,0x4,0x0,0x0,0xd,0x1,0x0,0x0,0xc5,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x38,0x5,0x0,0x0,0xb5,0x0,0x0,0x0,0xd1, 0x1,0x0,0x0,0xc6,0x3,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x3,0x0,0x0,0x9b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x3,0x0, 0x0,0x34,0x2,0x0,0x0,0x4b,0x2,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa1,0x3,0x0,0x0,0x6,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe, 0x5,0x0,0x0,0x24,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x32,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x3,0x0,0x0, 0x55,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x9d,0x2,0x0, 0x0,0xe2,0x2,0x0,0x0,0x3f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x35,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa3,0x2, 0x0,0x0,0x86,0x2,0x0,0x0,0x35,0x2,0x0,0x0,0x1b,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x9c,0x1,0x0,0x0,0x2d,0x5,0x0,0x0,0xcf, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x33,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0xdd,0x4,0x0, 0x0,0xfb,0x4,0x0,0x0,0x4e,0x3,0x0,0x0,0x5d,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1f,0x3,0x0,0x0,0x30,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0xa0,0x1,0x0,0x0,0x9e,0x5,0x0,0x0,0x9c,0x1,0x0,0x0,0x15, 0x3,0x0,0x0,0x66,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x3,0x0,0x0, 0xaa,0x2,0x0,0x0,0xbf,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x37,0x1,0x0,0x0, 0x5c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xa1,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0x27,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x42,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa5,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x43,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x5,0x0, 0x0,0x33,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0xb0,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x63,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xb6,0x0,0x0,0x0,0x12,0x0,0x0,0x0, 0x9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x86,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x28,0x2,0x0,0x0,0x56,0x1, 0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x3e, 0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x2,0x0,0x0,0x9c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x52,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x51,0x0, 0x0,0x0,0x9e,0x5,0x0,0x0,0xd4,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37, 0x5,0x0,0x0,0xd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x57,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0, 0x5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0xe0,0x2,0x0, 0x0,0x64,0x1,0x0,0x0,0xa9,0x1,0x0,0x0,0x34,0x2,0x0,0x0,0x4d,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x46,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x31,0x3,0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x56,0x5,0x0,0x0,0x63,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x2,0x0, 0x0,0x24,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x9f,0x0, 0x0,0x0,0x1e,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb, 0x3,0x0,0x0,0x9d,0x2,0x0,0x0,0x55,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x5b,0x1,0x0,0x0,0x62,0x1,0x0,0x0, 0x64,0x2,0x0,0x0,0x37,0x1,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x9d,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0x25,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xc5,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x70,0x5,0x0,0x0,0x11,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x3a,0x3,0x0,0x0, 0x1d,0x5,0x0,0x0,0x3e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x37,0x1,0x0, 0x0,0x55,0x0,0x0,0x0,0x99,0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1,0x1,0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x66, 0x5,0x0,0x0,0x48,0x3,0x0,0x0,0x51,0x2,0x0,0x0,0x50,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x3,0x0,0x0,0x3d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x74,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x5, 0x0,0x0,0x3,0x3,0x0,0x0,0x74,0x5,0x0,0x0,0x23,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x44,0x2,0x0,0x0,0xf7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x7b,0x2,0x0,0x0,0xf,0x1,0x0,0x0,0x2b,0x2,0x0,0x0,0xc3,0x2,0x0,0x0, 0x57,0x3,0x0,0x0,0x6f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x78,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x3,0x0, 0x0,0xd1,0x1,0x0,0x0,0x88,0x5,0x0,0x0,0xbb,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xdd,0x2,0x0,0x0,0x2a,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26, 0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x80,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x0,0x0,0x0, 0x56,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x99,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0xd9,0x2,0x0,0x0,0xa1,0x2,0x0,0x0,0x22,0x0,0x0,0x0,0x1a,0x5,0x0, 0x0,0xc9,0x3,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7a,0x5, 0x0,0x0,0xeb,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xc3,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x6f,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x3f, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x85,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5,0x3,0x0,0x0,0xb4,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x13,0x5,0x0,0x0,0x3a,0x3,0x0,0x0,0x2d,0x3,0x0,0x0,0xe,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0x6c,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0xc9,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa5,0x5,0x0,0x0,0xb0,0x5,0x0,0x0,0x2b,0x0,0x0,0x0,0x7d,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xc3,0x2,0x0,0x0,0xec,0x4,0x0,0x0,0x16, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x31,0x0,0x0,0x0, 0x1f,0x3,0x0,0x0,0x5b,0x3,0x0,0x0,0x2f,0x1,0x0,0x0,0x5,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x58,0x0,0x0, 0x0,0x30,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x9c,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9b,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x93,0x2,0x0,0x0,0x31,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x22,0x0, 0x0,0x0,0xe8,0x4,0x0,0x0,0x2b,0x5,0x0,0x0,0x21,0x2,0x0,0x0,0xf3,0x1, 0x0,0x0,0x92,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x28, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x15,0x1,0x0,0x0,0x74,0x5,0x0,0x0, 0x66,0x5,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe8,0x1,0x0, 0x0,0xb8,0x3,0x0,0x0,0x4,0x1,0x0,0x0,0x4a,0x5,0x0,0x0,0x57,0x0,0x0, 0x0,0xd7,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x0,0x0,0x0,0x59,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x4,0x0,0x0,0xeb,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xaf,0x5,0x0,0x0,0x4d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa9,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa1,0x5, 0x0,0x0,0x28,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xf5, 0x0,0x0,0x0,0x68,0x5,0x0,0x0,0x34,0x5,0x0,0x0,0x4f,0x0,0x0,0x0,0xdf, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0xfa,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0x5a,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x72,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb9,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x62, 0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xba,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x0,0x0,0x0, 0xd9,0x1,0x0,0x0,0xb7,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4c,0x2,0x0,0x0,0x86,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4a,0x0, 0x0,0x0,0xf0,0x1,0x0,0x0,0x4f,0x5,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x8e,0x5,0x0,0x0,0x96,0x3,0x0,0x0,0x13, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x80,0x5,0x0,0x0, 0x9a,0x5,0x0,0x0,0x1c,0x3,0x0,0x0,0x5a,0x0,0x0,0x0,0x25,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0xb9,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xfe,0x1,0x0,0x0,0x2a,0x3, 0x0,0x0,0xf7,0x4,0x0,0x0,0x5f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x5,0x0,0x0,0x30,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x42,0x2,0x0,0x0, 0x60,0x2,0x0,0x0,0xbd,0x0,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1e,0x2,0x0,0x0,0xb9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xca,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x2, 0x0,0x0,0x38,0x2,0x0,0x0,0x4b,0x5,0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x66,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xcd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x33,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x5,0x0, 0x0,0xb2,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x11,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x16,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0x5b,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x0, 0x0,0x0,0x39,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x1e, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0xd8,0x2,0x0,0x0, 0x77,0x2,0x0,0x0,0x32,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xdb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xea,0x2,0x0, 0x0,0x9a,0x0,0x0,0x0,0x3d,0x1,0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf9,0x4,0x0,0x0,0x21,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35, 0x2,0x0,0x0,0xae,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xde,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x5,0x0,0x0, 0xb2,0x0,0x0,0x0,0x47,0x3,0x0,0x0,0x3d,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xab,0x2,0x0,0x0,0x84,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x0, 0x0,0x0,0x69,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x3,0x0,0x0,0x30, 0x3,0x0,0x0,0xcc,0x2,0x0,0x0,0xb6,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x77,0x2,0x0,0x0,0x5d,0x1,0x0,0x0,0xc2,0x5,0x0,0x0,0xac,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xfb,0x4,0x0,0x0,0xc7,0x0,0x0, 0x0,0x8b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x69,0x2, 0x0,0x0,0x96,0x0,0x0,0x0,0xd5,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49, 0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc7,0x1,0x0,0x0, 0xaa,0x5,0x0,0x0,0xbe,0x2,0x0,0x0,0x26,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5b,0x0,0x0,0x0,0xc1,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xeb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x0, 0x0,0x0,0xc0,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x1d, 0x2,0x0,0x0,0x80,0x5,0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x7b,0x0,0x0,0x0,0xc3,0x2,0x0,0x0,0x63,0x1,0x0,0x0,0xc6,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x85,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x2,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52, 0x5,0x0,0x0,0x63,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x60,0x5,0x0,0x0, 0x4e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0x8f,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x8a,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x48,0x5,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x29,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x16,0x2,0x0,0x0,0x6,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x13,0x5,0x0,0x0,0x69,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd, 0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0x60,0x2,0x0,0x0,0x5b,0x0,0x0,0x0, 0xc1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x1,0x0,0x0,0x44,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x90,0x1,0x0,0x0,0x42,0x0,0x0,0x0,0x2b,0x1,0x0,0x0,0x8b, 0x5,0x0,0x0,0x84,0x1,0x0,0x0,0x27,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x64,0x2,0x0,0x0,0x79,0x3,0x0,0x0,0x55,0x1,0x0,0x0,0x25,0x5,0x0,0x0, 0x77,0x3,0x0,0x0,0x8f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x90,0x2,0x0, 0x0,0x20,0x5,0x0,0x0,0x59,0x2,0x0,0x0,0xa8,0x0,0x0,0x0,0x37,0x3,0x0, 0x0,0x63,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0xc7,0x1, 0x0,0x0,0xad,0x5,0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c, 0x2,0x0,0x0,0x2c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x38,0x5,0x0, 0x0,0x56,0x5,0x0,0x0,0x3,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x3, 0x0,0x0,0x28,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0xa7,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x50,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x11,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x43,0x0,0x0, 0x0,0xe0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0x25,0x3,0x0, 0x0,0x9e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0x59,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x70,0x2,0x0,0x0,0xa1, 0x0,0x0,0x0,0x53,0x2,0x0,0x0,0xf,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0xd1,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x44,0x5,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb,0x0, 0x0,0x0,0x5d,0x1,0x0,0x0,0x8b,0x1,0x0,0x0,0xe6,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x3,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x62,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x22,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x5,0x0, 0x0,0x58,0x5,0x0,0x0,0xe,0x3,0x0,0x0,0xc5,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0xf0,0x4,0x0,0x0,0xb0,0x5,0x0,0x0,0xc1,0x0,0x0,0x0,0xf5,0x4, 0x0,0x0,0x73,0x3,0x0,0x0,0x6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x25,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x41, 0x3,0x0,0x0,0xc6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x27,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x12,0x2,0x0,0x0, 0xe0,0x1,0x0,0x0,0x35,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x18,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x73,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x56,0x5,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x34,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe0,0x4,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x35,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0, 0x0,0x70,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0xc0,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xd5,0x4,0x0,0x0,0x62, 0x5,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x39,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x0,0x0,0x0, 0xc7,0x1,0x0,0x0,0x81,0x2,0x0,0x0,0x77,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x50,0x3,0x0,0x0,0x6c,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x5f,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xad,0x5,0x0,0x0,0xd2,0x1,0x0,0x0,0x27,0x0, 0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xe7, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x5c,0x5,0x0,0x0, 0x65,0x5,0x0,0x0,0x3d,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0xc6,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x36,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0xc0,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xf3,0x4,0x0,0x0,0xbc,0x5,0x0,0x0,0x62,0x0,0x0,0x0,0x12,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0xe7,0x2, 0x0,0x0,0xa4,0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x29,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xa,0x5,0x0,0x0,0x41,0x3,0x0,0x0,0xc4,0x3,0x0,0x0,0xba, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0x4,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x6,0x5,0x0, 0x0,0x43,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xc0,0x3,0x0,0x0,0x5c,0x3,0x0,0x0,0x6b,0x5,0x0,0x0,0x3e,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb,0x2,0x0,0x0,0x26,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc4,0x2,0x0,0x0,0xb7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xef,0x2, 0x0,0x0,0xfe,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x1f,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x29,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf7,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x61,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0, 0x0,0x9b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x22,0x2, 0x0,0x0,0x1f,0x1,0x0,0x0,0x48,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x63,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x44, 0x2,0x0,0x0,0x4f,0x1,0x0,0x0,0xde,0x4,0x0,0x0,0x27,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x77,0x3,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x50,0x0, 0x0,0x0,0xa,0x3,0x0,0x0,0x52,0x2,0x0,0x0,0x9b,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x76,0x1,0x0,0x0,0x5b,0x2,0x0,0x0,0x20,0x2,0x0,0x0,0x19, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5,0x0,0x0,0x70,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5c,0x3,0x0,0x0,0xdb,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x74,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48, 0x3,0x0,0x0,0xd8,0x1,0x0,0x0,0xc,0x1,0x0,0x0,0x30,0x1,0x0,0x0,0xa7, 0x5,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x76,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x5,0x0,0x0, 0xe7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x4b,0x1,0x0, 0x0,0xfc,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0xfd,0x1,0x0,0x0,0xb5,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xd1,0x2,0x0,0x0,0x1c,0x1, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x28, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0xeb,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0xd9,0x2,0x0,0x0,0xad,0x0,0x0,0x0,0x43,0x1,0x0, 0x0,0x49,0x5,0x0,0x0,0xb7,0x5,0x0,0x0,0x87,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2e,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x86,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x0,0x0,0x0,0xa0,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x87,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa7,0x5,0x0,0x0, 0xe6,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfd,0x1,0x0,0x0,0xfc,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x3, 0x0,0x0,0x70,0x2,0x0,0x0,0x55,0x1,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x43,0x1,0x0,0x0,0xbb,0x5,0x0,0x0,0x23, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x69,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x9b,0x0,0x0,0x0,0x5e,0x0,0x0, 0x0,0xd4,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x34,0x0, 0x0,0x0,0xea,0x4,0x0,0x0,0xb6,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x93,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7, 0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x94,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x2,0x0,0x0, 0x49,0x1,0x0,0x0,0xbb,0x5,0x0,0x0,0x39,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x7b,0x0,0x0,0x0,0xb0,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x5a,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x5c,0x1,0x0,0x0,0xa3,0x0,0x0,0x0,0x9e, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0xaa,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x11,0x5,0x0,0x0,0xaa,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe1,0x4,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x54, 0x0,0x0,0x0,0xef,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x58,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0xc6,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x3,0x2,0x0,0x0,0x68,0x3,0x0,0x0,0xfe,0x4,0x0,0x0,0x7c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0x29,0x3,0x0,0x0,0x15,0x2, 0x0,0x0,0xbb,0x1,0x0,0x0,0x57,0x2,0x0,0x0,0xe3,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xb9,0x3,0x0,0x0,0x30,0x1,0x0,0x0,0x90,0x5,0x0,0x0,0x9b,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x22,0x1,0x0,0x0,0x28,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x62,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x70,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x15,0x3,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7b,0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x0, 0x0,0x0,0x2a,0x3,0x0,0x0,0xa,0x5,0x0,0x0,0x1e,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x10,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x4b,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x22,0x2,0x0,0x0, 0x95,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xba,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2c,0x2,0x0, 0x0,0x15,0x1,0x0,0x0,0x83,0x5,0x0,0x0,0x86,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf,0x3,0x0,0x0,0x2f,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e, 0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x0,0x0,0x0, 0xe9,0x1,0x0,0x0,0x3b,0x1,0x0,0x0,0x9f,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x15,0x2,0x0,0x0,0xed,0x2,0x0,0x0,0x76,0x0,0x0,0x0,0x38,0x1,0x0, 0x0,0x68,0x5,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x1, 0x0,0x0,0x6c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0xae, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x77,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe8,0x1,0x0,0x0,0xdc,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xca,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89, 0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0, 0x46,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xdc,0x4,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x44,0x2,0x0,0x0,0x6a,0x1,0x0,0x0,0x8e,0x2, 0x0,0x0,0x57,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x70, 0x1,0x0,0x0,0x24,0x2,0x0,0x0,0x33,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd2,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0, 0x0,0x33,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0x4,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x5,0x0,0x0,0x16,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xb9,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdf,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa6,0x0,0x0,0x0,0xf,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe1,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x0, 0x0,0x0,0xb4,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xc5, 0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x4a,0x2,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x0,0x0, 0x0,0x2b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0x6d,0x0, 0x0,0x0,0x2f,0x2,0x0,0x0,0x2e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x12, 0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x5e,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xe8,0x4,0x0,0x0,0xa6,0x5,0x0,0x0,0xbb,0x0,0x0,0x0,0xcf,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x71,0x1,0x0,0x0,0x15,0x2, 0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x6c, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0x2c,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x13,0x5,0x0,0x0,0x6f,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xc0,0x2,0x0,0x0,0x5d,0x1,0x0,0x0,0x99,0x5,0x0,0x0,0xaf,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x2f,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x10,0x1,0x0,0x0,0x79,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x84,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46,0x1, 0x0,0x0,0xed,0x2,0x0,0x0,0xb5,0x5,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1,0x3,0x0,0x0,0xb9,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x45,0x5,0x0,0x0,0x31,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x1,0x0, 0x0,0x55,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x68,0x5, 0x0,0x0,0x6,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa3, 0x2,0x0,0x0,0x7,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x79,0x5,0x0,0x0, 0x8b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0xf4,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0x36,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x35,0x3,0x0,0x0,0x11,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x10,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x1,0x0, 0x0,0x6d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x2,0x0,0x0,0x90,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xa7,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x67,0x5,0x0,0x0,0x4e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x0, 0x0,0x0,0x42,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xef, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0x97,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0x36,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x41,0x5,0x0,0x0,0x46,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x28,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa2, 0x0,0x0,0x0,0x89,0x1,0x0,0x0,0xb7,0x1,0x0,0x0,0x99,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xea,0x4,0x0,0x0,0x3c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x2, 0x0,0x0,0x8f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5c,0x5,0x0,0x0,0x44, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0xc7,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x46,0x5,0x0, 0x0,0x3,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x3,0x0,0x0,0xdf,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0xb0,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0xfc,0x1,0x0,0x0,0x6d,0x0,0x0,0x0, 0x5d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x34,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xba,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xee,0x2,0x0,0x0,0xd2,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x20,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0xec,0x0,0x0,0x0,0x92,0x2,0x0, 0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x30,0x2, 0x0,0x0,0x9d,0x5,0x0,0x0,0x24,0x2,0x0,0x0,0x6d,0x5,0x0,0x0,0x7,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x3d, 0x1,0x0,0x0,0xd5,0x1,0x0,0x0,0xa7,0x5,0x0,0x0,0x2e,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x64,0x1,0x0,0x0,0xc6,0x3,0x0,0x0, 0xf6,0x4,0x0,0x0,0x1f,0x5,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x81,0x1,0x0,0x0,0xd9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x45,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3, 0x0,0x0,0x74,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x35, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x21,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7b,0x5,0x0,0x0,0x14,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb2, 0x1,0x0,0x0,0xbb,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x53,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x25,0x3,0x0,0x0, 0x15,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x39,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xc0,0x5,0x0,0x0,0xc4,0x1,0x0,0x0,0x26,0x3,0x0,0x0,0x6e,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xba,0x5,0x0,0x0,0xb4,0x3,0x0,0x0,0x7a,0x5,0x0,0x0,0x52, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x2,0x0,0x0,0x93,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0x8,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x4,0x0,0x0,0x9e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x62,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x5,0x0,0x0,0x9f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x64,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x64,0x0,0x0,0x0, 0x79,0x5,0x0,0x0,0xff,0x0,0x0,0x0,0xba,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x66,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x44,0x0,0x0,0x0,0x3c,0x1,0x0,0x0,0x4d,0x0,0x0,0x0,0xd5,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x64,0x2,0x0,0x0,0xaf,0x2, 0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x23, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0xe2,0x1,0x0,0x0, 0xc0,0x2,0x0,0x0,0x2b,0x3,0x0,0x0,0x7f,0x0,0x0,0x0,0x92,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0x6c,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x67,0x5,0x0,0x0,0x23,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7, 0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x73,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0xaa,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0x1e,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x47,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xc0,0x2,0x0,0x0,0xde,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x35,0x3,0x0,0x0, 0x62,0x5,0x0,0x0,0x9c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb,0x2,0x0, 0x0,0xc6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x19,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0x3a,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x87,0x0,0x0,0x0, 0x9b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xe7,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5b,0x5,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1e,0x2,0x0,0x0,0x39,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xea,0x4,0x0, 0x0,0x23,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xf5,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x14,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0xb2,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf3,0x4,0x0,0x0,0xb1,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x5c,0x2,0x0,0x0,0x98,0x3,0x0,0x0,0xde,0x2,0x0,0x0, 0xab,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0xb1,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x50,0x3,0x0,0x0,0x89,0x1,0x0,0x0,0x40,0x5, 0x0,0x0,0xa1,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x0,0x0,0x0,0xb7, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbb,0x0,0x0,0x0,0xf1,0x0,0x0,0x0, 0x54,0x1,0x0,0x0,0x2c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x3,0x0, 0x0,0x49,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0x4a,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x49,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0x55,0x0,0x0,0x0,0xd5,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x52,0x3,0x0,0x0,0x44, 0x1,0x0,0x0,0x3b,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x97,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x5,0x0,0x0, 0xb6,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x12,0x1,0x0, 0x0,0x5a,0x5,0x0,0x0,0x50,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x5, 0x0,0x0,0x68,0x1,0x0,0x0,0x58,0x0,0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x9,0x3,0x0,0x0,0xb6,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xee, 0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5,0x0,0x0,0x76,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2b,0x5,0x0,0x0,0x93,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe9,0x4,0x0,0x0,0xf8,0x4,0x0,0x0,0x9a,0x0,0x0,0x0,0x58,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x98,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x55,0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x3, 0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0x32, 0x5,0x0,0x0,0x3a,0x3,0x0,0x0,0x1c,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0x5f, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x2,0x0,0x0,0x23,0x2,0x0,0x0, 0x49,0x3,0x0,0x0,0x8c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x3,0x0, 0x0,0x43,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xe8,0x4, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0xa2,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0xa8,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x29,0x2,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x2, 0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0xb4, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xbf,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0xce,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x24,0x3,0x0,0x0,0xeb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd9, 0x2,0x0,0x0,0x31,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xc5,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0xfb,0x1,0x0,0x0,0x81,0x1,0x0,0x0, 0x56,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x0,0x0,0x0,0x56,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x86,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x5f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x62,0x2,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcb,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0, 0x0,0xbb,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0xde,0x4, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x2f, 0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0,0x0, 0x6a,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xa7,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0x18,0x0,0x0,0x0,0x1e,0x2, 0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0x5a, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xfd,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x71,0x1,0x0,0x0,0xaa,0x1,0x0, 0x0,0x37,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0x42,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x2,0x0,0x0,0x1d,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xaf,0x5,0x0,0x0,0x97,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x36,0x5,0x0,0x0,0x40,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xcb,0x0,0x0, 0x0,0x6c,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x3, 0x0,0x0,0xaa,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x94, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x66,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x12,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb5,0x3,0x0,0x0,0x26,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3a, 0x3,0x0,0x0,0x59,0x4,0x0,0x0,0xb3,0x0,0x0,0x0,0xb7,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x31,0x3,0x0,0x0,0x97,0x1,0x0,0x0,0x69,0x5,0x0,0x0,0x1d,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x5f,0x2,0x0,0x0,0x56,0x5, 0x0,0x0,0x66,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x1,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x27,0x2,0x0,0x0,0x42,0x2,0x0,0x0, 0xd1,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x3,0x0, 0x0,0xcb,0x0,0x0,0x0,0x7c,0x5,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x22,0x3,0x0,0x0,0x4c,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x4,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x2,0x0,0x0,0x2b,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x73,0x0,0x0,0x0,0x77,0x1,0x0,0x0, 0xe6,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xf3,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc5,0x1,0x0,0x0,0xbf,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x84,0x5,0x0,0x0,0x80,0x5,0x0,0x0,0x57,0x2,0x0,0x0,0xa3, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0x4,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x5,0x0,0x0,0x2c,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1a,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x27, 0x5,0x0,0x0,0xf4,0x4,0x0,0x0,0xc3,0x5,0x0,0x0,0xa6,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x63,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0x8f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x25,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0x23,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x86,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x18,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x3,0x0, 0x0,0x3c,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0x2e,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x5c,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xaf,0x2,0x0,0x0,0x18,0x1,0x0,0x0,0x7f,0x0,0x0,0x0,0x1b,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0x7d,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x8b,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x23,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x30,0x5,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x26,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x2,0x0, 0x0,0xb2,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0x3d,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0x3a,0x0,0x0,0x0,0x3e, 0x3,0x0,0x0,0x3f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x29,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x3,0x0,0x0, 0x97,0x5,0x0,0x0,0xf4,0x4,0x0,0x0,0x43,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x24,0x5,0x0,0x0,0xd3,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2c,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb,0x3, 0x0,0x0,0x24,0x1,0x0,0x0,0xb,0x1,0x0,0x0,0x8a,0x0,0x0,0x0,0xf,0x5, 0x0,0x0,0xf4,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0xa, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0x1f,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x43,0x2,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc2,0x0,0x0,0x0,0x13,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26, 0x5,0x0,0x0,0xc9,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3d,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x2,0x0,0x0, 0x5d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0x80,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x37,0x0, 0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x1,0x0,0x0,0x60, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x37,0x0,0x0,0x0,0xc1,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x57,0x3,0x0,0x0,0xfb,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1d,0x5,0x0,0x0,0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7, 0x0,0x0,0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4c,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x44,0x2,0x0,0x0, 0x48,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x5,0x0,0x0,0xc9,0x1,0x0, 0x0,0x9c,0x1,0x0,0x0,0x67,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x52,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0, 0x0,0x0,0xc3,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x21, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xfa,0x4,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbb,0x5,0x0,0x0,0x7c,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc0, 0x2,0x0,0x0,0x92,0x5,0x0,0x0,0xca,0x1,0x0,0x0,0xce,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x24,0x2,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xaf,0x5,0x0,0x0,0xa5,0x5,0x0,0x0,0x76,0x1,0x0,0x0,0x6f,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xea,0x4,0x0,0x0,0x85,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x69,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x2,0x0, 0x0,0x6d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0x60,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0xc4,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0xa4,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x72,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf4,0x4,0x0,0x0,0x79,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x74,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x5, 0x0,0x0,0xe8,0x1,0x0,0x0,0xad,0x3,0x0,0x0,0x9d,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe7,0x2,0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x79,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9b,0x3,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x5,0x0, 0x0,0xd,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x8a,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x62,0x5,0x0,0x0,0x47,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa3,0x3,0x0,0x0,0xb0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x82,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x12,0x2, 0x0,0x0,0xf,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x7f, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x38,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0xa,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x76,0x0,0x0,0x0,0x52,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd, 0x5,0x0,0x0,0x56,0x5,0x0,0x0,0xbe,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x19,0x2,0x0,0x0,0x77,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xcc,0x1,0x0,0x0,0x73,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x5, 0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfa,0x4,0x0,0x0,0x59, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x78,0x5,0x0,0x0, 0x49,0x1,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x1,0x0, 0x0,0x58,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0x63,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x20,0x2,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9d,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x5,0x0,0x0,0xba,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x3, 0x0,0x0,0x9d,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0x77, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x3,0x0,0x0,0x25,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x60,0x5,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc6,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa8,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b, 0x5,0x0,0x0,0x98,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0,0x0, 0x94,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xab,0x0,0x0,0x0,0x25,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x98,0x5,0x0,0x0,0xbf,0x2, 0x0,0x0,0x25,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x5,0x0,0x0,0x92, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0xa6,0x2,0x0,0x0, 0xbe,0x2,0x0,0x0,0x7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb0,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x0,0x0, 0x0,0x6c,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2,0x2,0x0,0x0,0x60,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x0,0x0,0x0,0x9c,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x2a,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3b,0x3,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x0, 0x0,0x0,0xb2,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x64, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x4c,0x1,0x0,0x0, 0x44,0x5,0x0,0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xbe,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x4,0x0, 0x0,0x36,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0xae,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x94,0x3,0x0,0x0,0x74, 0x0,0x0,0x0,0xff,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xce,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x1,0x0,0x0, 0x3e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0x7a,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x2f,0x3, 0x0,0x0,0xda,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0xc6, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2b,0x3,0x0,0x0,0xc5,0x1,0x0,0x0, 0x71,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x2,0x0, 0x0,0x4e,0x1,0x0,0x0,0x54,0x5,0x0,0x0,0x64,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc6,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56, 0x2,0x0,0x0,0x14,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0, 0x13,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x96,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x2,0x0,0x0,0x0,0x7c,0x5, 0x0,0x0,0xc4,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xf0, 0x1,0x0,0x0,0xe6,0x4,0x0,0x0,0x39,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd2,0x1,0x0,0x0,0xc5,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x0,0x0, 0x0,0x9b,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x0,0x0,0x0,0xba,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0xfc,0x1,0x0,0x0,0x6c, 0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xeb,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x0,0x0,0x0, 0xd0,0x0,0x0,0x0,0x5a,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa6,0x2,0x0,0x0,0x22,0x2,0x0,0x0,0x2e,0x2,0x0,0x0,0x64,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x3,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0x69,0x3,0x0,0x0,0x1,0x3, 0x0,0x0,0xb2,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xbd,0x0,0x0,0x0,0xd,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf4,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x14,0x2,0x0,0x0,0xbe,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x0,0x0, 0x0,0xad,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0xd7,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x2,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0xc2,0x3,0x0,0x0,0xc,0x3,0x0,0x0, 0x52,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x0,0x3,0x0, 0x0,0xab,0x5,0x0,0x0,0x1b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfd,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x84,0x1, 0x0,0x0,0xa0,0x5,0x0,0x0,0x55,0x3,0x0,0x0,0x97,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x55,0x2,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0, 0x0,0xa,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x7d,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaa,0x3,0x0,0x0,0xa8,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x9e,0x0,0x0,0x0, 0x73,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x59,0x4,0x0, 0x0,0xd,0x0,0x0,0x0,0x37,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2f,0x2, 0x0,0x0,0xef,0x2,0x0,0x0,0x54,0x3,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xa1,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xd9,0x4,0x0,0x0,0x8a,0x1,0x0,0x0,0x72,0x5,0x0,0x0,0x63,0x5,0x0,0x0, 0x66,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x10,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x2,0x0, 0x0,0x93,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0xf5,0x0, 0x0,0x0,0x1c,0x1,0x0,0x0,0x36,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75, 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x16,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0, 0xec,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x85,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x99,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1c,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x54,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x4,0x0, 0x0,0x3,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0xce,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0xc4,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x54,0x5,0x0,0x0,0xef,0x0,0x0,0x0,0x17,0x2,0x0,0x0, 0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x28,0x1,0x0, 0x0,0x22,0x2,0x0,0x0,0x2a,0x5,0x0,0x0,0xba,0x5,0x0,0x0,0x9d,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0xc,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x49,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x56,0x1,0x0,0x0,0x59,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x0,0x0, 0x0,0x7,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x92,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x33,0x5,0x0,0x0,0x6a,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x34,0x1,0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x32,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2, 0x0,0x0,0x53,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x73, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x19,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x41,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5f,0x5,0x0,0x0,0x30,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae, 0x3,0x0,0x0,0x89,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaf,0x5,0x0,0x0, 0x5f,0x2,0x0,0x0,0x33,0x5,0x0,0x0,0xac,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x45,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0, 0x0,0x6c,0x2,0x0,0x0,0x20,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x61,0x0,0x0, 0x0,0xbe,0x3,0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x48,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x5, 0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x42, 0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x72,0x5,0x0,0x0,0xec,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x2f,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0x41,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x41,0x5,0x0,0x0,0xbc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x55,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xeb, 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x56,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x5,0x0,0x0, 0xcc,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a,0x2,0x0,0x0,0x11,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0xfc,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x5b,0x5,0x0,0x0,0x57,0x2,0x0,0x0,0x3f, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x4d,0x0,0x0,0x0, 0xad,0x3,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x63,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x2,0x0, 0x0,0xfe,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x2,0x0,0x0,0x59,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xbb,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x35,0x1,0x0,0x0,0x59,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x3, 0x0,0x0,0x77,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0xbd, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3c,0x5,0x0,0x0,0xfa,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe9,0x2,0x0,0x0,0xa1,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xad,0x3,0x0,0x0,0xc,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x76,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x99, 0x2,0x0,0x0,0x15,0x0,0x0,0x0,0xd4,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x36,0x3,0x0,0x0,0xe,0x2,0x0,0x0, 0x1e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0x11,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x65,0x5,0x0,0x0,0x5a,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xc3,0x5,0x0,0x0,0x5a,0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x10,0x5,0x0,0x0, 0x32,0x3,0x0,0x0,0x41,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0, 0x0,0x19,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xf2,0x4,0x0,0x0,0xa8,0x3, 0x0,0x0,0xb5,0x0,0x0,0x0,0xe,0x5,0x0,0x0,0xbe,0x3,0x0,0x0,0xa7,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x22,0x5,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x85,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2e,0x0,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x87,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x3, 0x0,0x0,0x37,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x1,0x0,0x0,0x3f, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xb6,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x85,0x0,0x0,0x0,0x68,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x35,0x3,0x0,0x0,0xfb,0x4,0x0,0x0,0xd9,0x2,0x0,0x0,0x88,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xc1,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x3,0x0,0x0,0xbc,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x29,0x2,0x0,0x0,0x43,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x98,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x1, 0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x33, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0xaa,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x29,0x5,0x0,0x0,0x14,0x2,0x0, 0x0,0xf1,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x19,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x1,0x0,0x0,0x4,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x6,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x0,0x0,0x0,0xdf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2,0x0, 0x0,0x0,0x32,0x5,0x0,0x0,0x9b,0x1,0x0,0x0,0x8b,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x62,0x5,0x0,0x0,0xfd,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x27,0x1,0x0,0x0,0xf6,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaa,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x2,0x0, 0x0,0x7a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x5,0x0,0x0,0x60,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x53,0x0,0x0,0x0,0xc7,0x1,0x0,0x0, 0x4d,0x1,0x0,0x0,0xb1,0x2,0x0,0x0,0x27,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x1a,0x3,0x0,0x0,0x22,0x1,0x0,0x0,0x43,0x0,0x0,0x0,0x37,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x8e,0x2,0x0,0x0,0x4c,0x1,0x0,0x0,0x2b,0x5, 0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x9e, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x2,0x0,0x0,0x2e,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0x7a,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x81,0x1,0x0,0x0,0x5b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb8,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73, 0x2,0x0,0x0,0x82,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa,0x1,0x0,0x0, 0x84,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0xf5,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe,0x3,0x0,0x0,0x5f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbf,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x5, 0x0,0x0,0x4d,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xa8, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x31,0x3,0x0,0x0,0xd8,0x4,0x0,0x0, 0x4c,0x2,0x0,0x0,0x16,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0, 0x0,0x23,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0x7,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x8a,0x5,0x0,0x0,0x14,0x1,0x0,0x0,0xd7,0x4,0x0,0x0,0x57,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x3,0x0,0x0,0xd9,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3f,0x3,0x0,0x0,0xd7,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xce,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xad,0x3,0x0,0x0,0x7a,0x2,0x0,0x0,0x17,0x2,0x0,0x0,0xdf,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x38,0x5,0x0,0x0,0x99,0x5,0x0,0x0,0x72,0x5,0x0, 0x0,0x7,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x5f,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0x1b,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc1,0x2,0x0,0x0,0x78,0x0,0x0,0x0,0x19,0x5,0x0,0x0, 0x29,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x5,0x0,0x0,0x9d,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0xe2,0x0,0x0,0x0,0x97,0x3, 0x0,0x0,0x64,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfd,0x4,0x0,0x0,0x8, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0xd,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x1e,0x0,0x0,0x0,0x4,0x3,0x0, 0x0,0x99,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x3b,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x6b,0x5,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf2,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x90,0x5,0x0,0x0,0x10,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf4,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x1, 0x0,0x0,0x50,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x5,0x0,0x0,0xd, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x4,0x0,0x0,0x24,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x67,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6a,0x0,0x0,0x0,0xc,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfc,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f, 0x0,0x0,0x0,0x1d,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfd,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x2,0x0,0x0, 0x1e,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x13,0x2,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x18,0x5,0x0,0x0,0x31,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x51,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x4a,0x1,0x0,0x0,0x34,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0x28,0x3,0x0,0x0,0xac,0x3,0x0, 0x0,0xf5,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x5,0x0,0x0,0x94,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x25,0x1,0x0,0x0,0xdb,0x2,0x0,0x0, 0x16,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0x54,0x1,0x0, 0x0,0x56,0x1,0x0,0x0,0x1d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x12,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x99,0x5, 0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x1,0x0,0x0,0x51, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf0,0x4,0x0,0x0,0x72,0x3,0x0,0x0, 0x40,0x1,0x0,0x0,0x53,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x0,0x0, 0x0,0xbe,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x1,0x0,0x0,0x1e,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x48,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0x63, 0x1,0x0,0x0,0xe4,0x0,0x0,0x0,0x90,0x1,0x0,0x0,0xa4,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x88,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x26,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xea,0x2,0x0,0x0,0x74,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x27,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2, 0x0,0x0,0xfa,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x2,0x0,0x0,0xa, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x3,0x0,0x0,0x71,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x22,0x5,0x0,0x0,0xd3,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x30,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x77, 0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x27,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x30,0x1,0x0,0x0,0x33,0x5,0x0,0x0, 0x3,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x5,0x0,0x0,0x7e,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x5e,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd,0x3,0x0,0x0,0x1d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3d,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x43,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc7,0x1,0x0, 0x0,0x77,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x2,0x0,0x0,0x3e,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0xc7,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x38,0x2,0x0,0x0,0x92,0x1,0x0,0x0, 0x98,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x0,0x0,0x0,0xa,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0xa0,0x1,0x0,0x0,0x10,0x0, 0x0,0x0,0xfa,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x5,0x0,0x0,0xae, 0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x3,0x0,0x0,0x43,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0x6,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb5,0x3,0x0,0x0,0xb,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x65,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x89, 0x0,0x0,0x0,0xe2,0x1,0x0,0x0,0x30,0x5,0x0,0x0,0x4e,0x2,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1c,0x3,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6d,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbc,0x3,0x0,0x0,0x3f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6e,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x0, 0x0,0x0,0x4,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xc7, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0xbf,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0xa7,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xfd,0x2,0x0,0x0,0x52,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd, 0x4,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfd,0x1,0x0,0x0, 0x97,0x3,0x0,0x0,0xd9,0x2,0x0,0x0,0xc9,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7b,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x55,0x1,0x0,0x0,0x1f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7c,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x0, 0x0,0x0,0x5f,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x30, 0x1,0x0,0x0,0x2e,0x2,0x0,0x0,0xc1,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x6b,0x5,0x0,0x0,0x19,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x80,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x2,0x0, 0x0,0xc2,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x22,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x5,0x0,0x0,0x78,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd9,0x4,0x0,0x0,0xc2,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x98,0x1,0x0,0x0,0x18,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x13,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd3,0x0,0x0,0x0,0xeb,0x4,0x0,0x0,0x91,0x0,0x0,0x0,0xa6, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x55,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xa7,0x5,0x0, 0x0,0x6d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6c,0x2,0x0,0x0,0x4e,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x3,0x0,0x0,0x4d,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xe2,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x99,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x13,0x5,0x0,0x0,0x8c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9a,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x4, 0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x49, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0xa,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x96,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x50, 0x3,0x0,0x0,0x9,0x5,0x0,0x0,0x62,0x1,0x0,0x0,0x76,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x9,0x3,0x0,0x0,0xbe,0x3,0x0,0x0, 0xdf,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9,0x5,0x0,0x0,0xd,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x5,0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x27,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xaf,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x48,0x3,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb0,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x0,0x0, 0x0,0x77,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x3,0x0,0x0,0xba,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x3,0x0,0x0,0xe6,0x0,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa3,0x3,0x0,0x0,0x8f,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1a,0x3,0x0,0x0,0x3f,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb6,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x2, 0x0,0x0,0xdb,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x2a, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x50,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x99,0x3,0x0,0x0,0xe0,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x8c,0x2,0x0,0x0,0x48,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c, 0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0, 0x7d,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x89,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x8f,0x2, 0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x2,0x0,0x0,0x8a, 0x5,0x0,0x0,0xf1,0x1,0x0,0x0,0x24,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xcc,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x7a,0x5,0x0,0x0,0xd8,0x1,0x0,0x0,0x3e,0x5,0x0,0x0,0xd4,0x4,0x0,0x0, 0xf,0x3,0x0,0x0,0x2f,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcd,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x3,0x0, 0x0,0x58,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x5,0x1, 0x0,0x0,0xe1,0x4,0x0,0x0,0xfe,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd0,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7, 0x4,0x0,0x0,0xee,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd1,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x0,0x0,0x0, 0xa1,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x3,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0xbf,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x78,0x5,0x0,0x0,0xe9,0x1,0x0,0x0,0xa,0x0,0x0,0x0,0xe2, 0x1,0x0,0x0,0xc5,0x0,0x0,0x0,0x67,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xf9,0x4,0x0,0x0,0x1c,0x5,0x0,0x0,0x49,0x3,0x0,0x0,0x29,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc3,0x3,0x0,0x0,0x5a,0x1,0x0,0x0,0x84,0x0,0x0, 0x0,0x47,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x6,0x0, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x10,0x3,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x5e,0x2,0x0,0x0,0x1a,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x15,0x5, 0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0xba, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4d,0x5,0x0,0x0,0x9c,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0x20,0x1,0x0,0x0,0x84,0x5,0x0, 0x0,0xb6,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x26,0x5,0x0,0x0,0x5c,0x3, 0x0,0x0,0x78,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb9, 0x2,0x0,0x0,0x90,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xee,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbc,0x5,0x0,0x0, 0x61,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x56,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4a,0x3,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xda,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0xbe,0x3,0x0,0x0,0xb6, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x5,0x0,0x0,0x62,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x70,0x2,0x0,0x0,0x5b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa3, 0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfc,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x0,0x0,0x0, 0x3a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0xd6,0x1,0x0, 0x0,0x5e,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xff,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x5, 0x0,0x0,0x95,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf1,0x2,0x0,0x0,0xc2, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x2,0x0,0x0,0x94,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe9,0x4,0x0,0x0,0xf2,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x15,0x2,0x0,0x0,0x7a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x12, 0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x3e,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4e,0x3,0x0,0x0,0x28,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xda,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x0, 0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x4,0x0,0x0,0x1e, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0x24,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2e,0x2,0x0,0x0,0x3f,0x0,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe1,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0x29,0x3, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0x52,0x1,0x0,0x0,0xf3, 0x4,0x0,0x0,0x9e,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x2,0x0,0x0, 0xe0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x3,0x0,0x0,0x95,0x3,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xad,0x3,0x0,0x0,0x19,0x0,0x0,0x0,0xc5,0x1, 0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x56,0x1,0x0,0x0,0x55, 0x3,0x0,0x0,0x1e,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x19, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x1c,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbd,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x29,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e, 0x3,0x0,0x0,0x6a,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb5,0x3,0x0,0x0, 0xac,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0x3d,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0x72,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x22,0x2,0x0,0x0,0x93,0x5,0x0,0x0,0x9b,0x0,0x0,0x0,0xdc,0x4,0x0,0x0, 0xc4,0x2,0x0,0x0,0x3e,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8f,0x5,0x0, 0x0,0x20,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x35,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x65,0x1,0x0,0x0,0xd8,0x4,0x0,0x0,0x88, 0x5,0x0,0x0,0xc,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1b,0x2,0x0,0x0, 0x72,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x26,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0xbc,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x6d,0x2,0x0,0x0,0x98,0x2,0x0,0x0,0x76,0x0,0x0,0x0,0x6a, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2,0x4,0x0,0x0,0x23,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x90,0x2,0x0,0x0,0x36,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4d,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf, 0x2,0x0,0x0,0x7a,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6,0x0,0x0,0x0, 0x1b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x1,0x0,0x0,0x8f,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x17,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x67,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0x1d, 0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x1,0x0,0x0,0x56,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0x50,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x3a,0x5,0x0,0x0,0xaa,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b, 0x3,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x67,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x5,0x0,0x0, 0x32,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0xa8,0x3,0x0, 0x0,0x3c,0x3,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x3, 0x0,0x0,0xfe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8c,0x2,0x0,0x0,0xc0,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xe9,0x1,0x0,0x0,0xa1,0x5,0x0,0x0,0xa,0x2,0x0,0x0,0x4a,0x5,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0xd3,0x4,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x90,0x1,0x0,0x0,0x90,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0xc,0x5, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x5,0x0,0x0,0x72,0x5,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0x15,0x2,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x7a,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x28,0x0,0x0,0x0,0xba,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7c,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x1, 0x0,0x0,0x92,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x27,0x5,0x0,0x0,0x21, 0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc9,0x1,0x0,0x0,0x31,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0xd,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x87,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x70,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0x22,0x0,0x0,0x0,0x4d,0x2, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0xd2,0x1,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0x2b,0x3,0x0,0x0,0xaf,0x0,0x0,0x0, 0xf7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0x4c,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x2,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x97,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xd2,0x2,0x0,0x0,0x14,0x1,0x0,0x0,0x5c,0x3,0x0,0x0,0x5c,0x0,0x0,0x0, 0x56,0x0,0x0,0x0,0xfd,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9a,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x2,0x0, 0x0,0x33,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x85,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0x18,0x3,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x60,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x52,0x3,0x0,0x0,0x9e,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x50,0x0, 0x0,0x0,0xe0,0x1,0x0,0x0,0x73,0x2,0x0,0x0,0xa1,0x1,0x0,0x0,0x7d,0x1, 0x0,0x0,0x33,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x5,0x0,0x0,0xd3, 0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x2,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xec,0x4,0x0,0x0,0x2c,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x77,0x3,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x19, 0x1,0x0,0x0,0x1b,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb0,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x0,0x0,0x0, 0x47,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x1,0x0,0x0,0x99,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x5,0x0,0x0,0x52,0x1,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x17,0x5,0x0,0x0,0x5f,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb9,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x62,0x1,0x0,0x0,0x2a,0x3,0x0,0x0,0x46,0x3,0x0,0x0,0xc3,0x2,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x11,0x3,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x32,0x3,0x0,0x0,0xd5,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbe,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17, 0x5,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x1,0x0,0x0, 0x9a,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x67,0x3,0x0,0x0,0x1b,0x1,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0xc0,0x3,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xca,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x45,0x1,0x0,0x0,0x40,0x0,0x0,0x0,0x2f,0x5,0x0,0x0,0x68,0x1,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcf,0x0,0x0,0x0,0xb,0x1,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x10,0x1,0x0,0x0,0xe0,0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe2, 0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd3,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x5,0x0,0x0, 0xed,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0x34,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0xeb,0x4, 0x0,0x0,0x6,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xf6, 0x2,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x98,0x3,0x0,0x0, 0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x77,0x1,0x0,0x0,0x79,0x5,0x0,0x0,0x1,0x5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x80,0x0,0x0,0x0,0xc2,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x8c,0x0, 0x0,0x0,0x76,0x0,0x0,0x0,0xe5,0x4,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7a, 0x0,0x0,0x0,0x73,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfe,0x1,0x0,0x0, 0xa0,0x1,0x0,0x0,0x35,0x2,0x0,0x0,0x4d,0x0,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xb9,0x5,0x0,0x0,0xa,0x2,0x0,0x0,0x4e,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x1,0x0,0x0,0xe3,0x0,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6a,0x2,0x0,0x0,0x68,0x3,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xeb,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x1,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xed,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdb,0x2,0x0, 0x0,0xfc,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xf0,0x1, 0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x5,0x0,0x0,0xeb,0x4,0x0,0x0,0x1, 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x86,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0x1,0x5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf5,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x2b,0x2,0x0,0x0,0x32,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf1,0x0, 0x0,0x0,0xb9,0x5,0x0,0x0,0x13,0x5,0x0,0x0,0x12,0x5,0x0,0x0,0x1,0x5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf9,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x24,0x1,0x0,0x0,0xa9,0x5,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x0,0x0, 0x0,0x33,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x67,0x2, 0x0,0x0,0x77,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfe,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0, 0x1,0x0,0x0,0xf8,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x4,0x0,0x0, 0x15,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc8,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4,0x0, 0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xf9,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0xee,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2, 0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x97, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x16,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbb,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd5,0x3,0x0,0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2, 0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1,0x0,0x0, 0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x65,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x32,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2d,0x2,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0xcd,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0xec,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x7d,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3, 0x0,0x0,0xfa,0x0,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xa8, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xb3,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xef,0x3,0x0,0x0,0xe6,0x1,0x0, 0x0,0x76,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x8,0x4, 0x0,0x0,0x9c,0x4,0x0,0x0,0x83,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e, 0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0, 0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0xa2,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0xb,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x1,0x4,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x57,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0, 0x0,0xda,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xed,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x8d,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xdd,0x1,0x0,0x0,0x8d,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4, 0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0x94, 0x1,0x0,0x0,0x2,0x4,0x0,0x0,0x13,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbb,0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3,0x0, 0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x1,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5e,0x3,0x0,0x0,0xa9,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x87,0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x2, 0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xe9, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0xcd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x43,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76, 0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0, 0xab,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0xce,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x87,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4, 0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xe9, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0x13,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xac,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x76,0x4,0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x79,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4, 0x1,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7a,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x3,0x0,0x0, 0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x58,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x58,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xef,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x91,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0xe2,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x93,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0, 0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0xa0,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xd,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xbb,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x98,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2, 0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xb5, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x31,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x4,0x0,0x0,0x13,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf6,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82, 0x3,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xda,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0, 0xce,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0xa6,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xf,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0xfe,0x3,0x0,0x0,0xd0,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6f,0x2,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda, 0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x31,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0, 0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x82,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc8,0x1,0x0,0x0,0x50,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x44,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x3,0x0, 0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xa9,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xcb,0x1,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x79,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4, 0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0xfa, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x6d,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x41,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x97,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xea,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c, 0x4,0x0,0x0,0x3e,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaa,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0, 0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb2,0x3,0x0,0x0,0x7,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x93,0x3,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xcc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0, 0x0,0xd4,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x82,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfe,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x1, 0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x86, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x9d,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xea,0x1,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c, 0x4,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x40,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0xa,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x71,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x7f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x59,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xda,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x60,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x3,0x0, 0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x4,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xda,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x4,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xa7,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x86,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x3,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x92,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c, 0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xcd, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x4,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0xd4,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x4,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xea,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb8,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde, 0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb9,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0, 0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x4,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xc7,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x4,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd5,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe0,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf2,0x1,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe3,0x4,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4,0x0, 0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x4, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x5,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x5,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x11,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x19,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20, 0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xc2, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x5,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0xbd,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x5,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2, 0x4,0x0,0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5b,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0, 0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x86,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x9,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x91,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x2,0x0, 0x0,0xbe,0x4,0x0,0x0,0xc2,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x87,0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43, 0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0, 0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd3,0x5,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0xd0,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x5,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xed,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9f,0x2,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf1,0x5,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0, 0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x5, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0xa0,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x85,0x3,0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x12,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf9,0x3,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x20,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1, 0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0x64, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x4a,0x4,0x0,0x0, 0xd9,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x36,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0, 0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x7c,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x45,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x4,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4b,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1, 0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x99, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0xf9,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x64,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83, 0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x69,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0, 0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0xa0,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x85,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf2,0x1,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0, 0x0,0x96,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xe5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x6,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xce,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa9,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4, 0x0,0x0,0xed,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, 0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xfa, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x6,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xb8,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x6,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xa7,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x75,0x2,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd2,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54, 0x2,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3d,0x2,0x0,0x0, 0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x6,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x4,0x0,0x0,0xbd,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x6,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x7a,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xee,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x1,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xef,0x6,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0, 0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x6, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x82,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x6,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0xf0,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6f,0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4, 0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0x75, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0x1c,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd7,0x1,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x40,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87, 0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x41,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0, 0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xcd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x61,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x2d,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x66,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x1,0x0, 0x0,0x7c,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x88,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xe5,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x89,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd5,0x3,0x0,0x0,0x5,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x90,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x85,0x3, 0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93, 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x94, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x7,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xa0,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x7,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb7,0x2,0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9f,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1, 0x1,0x0,0x0,0xd3,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa6,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0, 0x76,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xf0,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x7,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x76,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd2,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0, 0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x7, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x1c,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0x7,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x7,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0xbd,0x3,0x0,0x0,0xec,0x1,0x0,0x0, 0xed,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x7,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xca,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x83,0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x2d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7f,0x3,0x0,0x0,0xce,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x3,0x0, 0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x9f,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xa5,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5b,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x87,0x3,0x0,0x0,0x79,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x63,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4, 0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0x8, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xec,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0xe9,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe3,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x72,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b, 0x3,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x77,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0, 0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x3,0x0,0x0,0x60,0x3,0x0, 0x0,0xd,0x2,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7d,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4, 0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x88, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x8,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0x80,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x8,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xaf,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb, 0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0, 0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x8,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xe1,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x8,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xa9,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x76,0x4,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd3,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa5,0x3,0x0, 0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x8, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xec,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x8,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xe4,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x8,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xea,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4b,0x3,0x0,0x0,0xd6,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xef,0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1, 0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd, 0x8,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xee, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0x7e,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x9,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xaf,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0xfb,0x3,0x0,0x0,0xf0,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x9,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xb9,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x9,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe0,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3d,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3, 0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c, 0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0xac, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x9,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xc1,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x9,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6f,0x2,0x0,0x0,0xb5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x7b,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7f,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0, 0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x7f,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa5,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc2,0x1,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaf,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6e,0x2,0x0, 0x0,0x12,0x4,0x0,0x0,0xff,0x3,0x0,0x0,0xdb,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x17,0x4,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1, 0x1,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0, 0xa5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x9,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x9,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x3,0x0,0x0,0xda,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf8,0x9,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xdd,0x1,0x0,0x0,0xe8,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0, 0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0xa, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0xf9,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0xa,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xac,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x19,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa8,0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1c,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd5,0x3, 0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x4a, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0xf0,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2f,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x44,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9f,0x2,0x0,0x0,0xa6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x50,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4, 0x1,0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x51,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0, 0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x1,0x0,0x0,0xf7,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x93,0x3,0x0,0x0,0xa8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5f,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0, 0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0xa, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xef,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xa,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xa,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x18,0x4,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x75,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1, 0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xec, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x75,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4c,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa9,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda, 0x2,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xba,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xf,0x4,0x0,0x0, 0xa0,0x3,0x0,0x0,0xb2,0x3,0x0,0x0,0xda,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xbe,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc0,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1, 0x0,0x0,0x80,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4, 0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x64, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xa,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xc0,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0xa,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd2,0x3,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdd,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x3,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe6,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0, 0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0xa,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xa9,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xa,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfe,0xa,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe6,0x1,0x0,0x0,0xa6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0, 0x0,0xa9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x7e,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0x71,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x23,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbb,0x4,0x0,0x0,0x9b,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x27,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1, 0x0,0x0,0xe9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33, 0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x6d, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0xb,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x97,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xb,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x65,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb8,0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x68,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f, 0x2,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x85,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0, 0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xb,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0xd0,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0xb,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x4d,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa4,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xaf,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0, 0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x87,0x3,0x0,0x0,0x75,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x6d,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xc7,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc8,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcf,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x2, 0x0,0x0,0xe9,0x3,0x0,0x0,0xe5,0x3,0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd4,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x84,0x2,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe2,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfe,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe3,0xb,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0, 0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0xb, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xf5,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xb,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xfa,0x0,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xb,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa5,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x3, 0x0,0x0,0x0,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x2,0x0,0x0,0xf3, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xc3,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x14,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x18,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f, 0x3,0x0,0x0,0xf0,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2e,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x2,0x0,0x0, 0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0xf9,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x47,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xde,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x49,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0, 0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0xca,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xa7,0x1,0x0,0x0,0xbb, 0x4,0x0,0x0,0xa,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x62,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0, 0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x6d,0x4,0x0, 0x0,0xff,0x3,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6d,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4, 0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e, 0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0xb1, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xc,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0xd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xc,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0,0x8d,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd9,0x3,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x90,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2, 0x3,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x94,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0, 0xab,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0xc,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x12,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0xc,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb1,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa4,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb6,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4,0x0, 0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0xc, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x84,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,0xc,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0xc,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xea,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc8,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xec,0xc,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3, 0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xd6, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xfa,0x0,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x29,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7e,0x1,0x0,0x0,0xa,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x31,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e, 0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x37,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0xa7,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x3,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x76,0x2,0x0,0x0,0xfb,0x3,0x0,0x0,0x86, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x94,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x6b,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x60,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe5,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x61,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95, 0x2,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x65,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0, 0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0xd,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xa8,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0xd,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8f,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x91,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0, 0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x97,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x3,0x0,0x0,0x8,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xa6,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0x61,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa0,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbe,0x1,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa1,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0x80, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x7a,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x75,0x3,0x0,0x0,0xf2,0x1,0x0, 0x0,0xcb,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xd, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xe5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0xd,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0xd0,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0xd,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe2,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6e,0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe3,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb8,0x1, 0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea, 0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0x9f, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0xd,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0x99,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0xd,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x8d,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x53,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xfd,0xd,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x4,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd9,0x3,0x0,0x0, 0x1c,0x2,0x0,0x0,0xf8,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x19,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd8,0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1e,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1, 0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0xa8, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x27,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0x1c,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x1,0x0,0x0,0xb3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x38,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93, 0x3,0x0,0x0,0x9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x3c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0, 0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x59,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0, 0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0x7c,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x92,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x53,0x3,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9c,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3, 0x0,0x0,0x2f,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f, 0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0x7, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0xe,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xb6,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0xe,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc8,0x1,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbd,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5, 0x3,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbe,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x2,0x0,0x0, 0xcb,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xe,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x16,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0xe,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd9,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x4,0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe5,0xe,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0, 0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0xe, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0xd,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0xe,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0xf2,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0xe,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb7,0x2,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x2, 0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xbe, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0x31,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x8f,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb2,0x3,0x0,0x0,0xf5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x47,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97, 0x2,0x0,0x0,0xf5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x48,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0, 0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0xf,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xff,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0xf,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5d,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xaf,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x64,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0, 0x0,0xd6,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0xb9,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x40,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb6,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x30,0x4,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc3,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2, 0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf, 0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0x12, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0xf,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4,0x0,0x0,0x82,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0xf,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x8d,0x3,0x0,0x0,0x3,0x4,0x0, 0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xf, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x9d,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0xf,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0x75,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0xf,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfb,0xf,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4f,0x2,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3, 0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11, 0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x71, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x10,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0,0xf7,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x46,0x2,0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x32,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30, 0x4,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x35,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0, 0xe9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0xdf,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc,0x4,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x54,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x30,0x4,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x58,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0, 0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x10, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x6b,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x10,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0xb1,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x10,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0x12,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x8f,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x85,0x3,0x0,0x0,0xee,0x1,0x0,0x0,0x57,0x4,0x0,0x0,0x3e,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x1,0x0,0x0,0x4d,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xfc,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0xcb,0x1,0x0,0x0,0x1,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x10,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd8,0x3,0x0,0x0,0xcd,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18, 0x4,0x0,0x0,0x7c,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf0,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0, 0xf9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x10,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xce,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x10,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x10,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcb,0x1,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x23,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa7,0x4,0x0, 0x0,0xf0,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf8,0x3,0x0,0x0,0xa7,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x3f,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xda, 0x3,0x0,0x0,0x16,0x4,0x0,0x0,0xff,0x3,0x0,0x0,0x9f,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd5,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x49,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4b,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2, 0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55, 0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x8d, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x11,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x6d,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x11,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x85,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c, 0x4,0x0,0x0,0x76,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0, 0x91,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xd4,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x8d,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9e,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x4,0x0,0x0,0x50,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0, 0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0xb3,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0x1,0x2,0x0,0x0,0xb4, 0x1,0x0,0x0,0xd1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc3,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0, 0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x11,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xfa,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x11,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe9,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x4c,0x3,0x0,0x0,0x7d,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xef,0x11,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0, 0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x11, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x82,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x11,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xd,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x11,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x58,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xcf,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1, 0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x82, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x82,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa8,0x1,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x32,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57, 0x4,0x0,0x0,0x13,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x34,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3,0x0,0x0, 0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x12,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0xfa,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x12,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x62,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe1,0x3,0x0,0x0,0xb3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6e,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0, 0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x71,0x12, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xcd,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x12,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0,0xfa,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x12,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9f,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x2,0x0,0x0,0xd6,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xac,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1, 0x0,0x0,0xfa,0x0,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda, 0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xe5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdc,0x12,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x12,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf6,0x12,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2, 0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x1,0x0,0x0, 0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x62,0x3,0x0,0x0,0x99,0x1,0x0, 0x0,0xe7,0x3,0x0,0x0,0x5e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1, 0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0x82, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x6,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x2,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x51,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2, 0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x56,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0, 0x8f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xce,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6b,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x51,0x3,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7f,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0, 0x0,0x50,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x7a,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x13,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x4,0x0,0x0,0xa6,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x13,0x0,0x0,0xff,0xff,0xff,0xff, 0x3,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4,0x0,0x0,0x81,0x3,0x0,0x0, 0x12,0x4,0x0,0x0,0x5a,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x93,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xda,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xb0,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2, 0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2, 0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0x44, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x13,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x2,0x0,0x0,0xf7,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x13,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa8,0x2,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x1,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc4,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2, 0x1,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc6,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0, 0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x13,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xe1,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x13,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x7c,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfa,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9e,0x2,0x0,0x0,0x66,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfb,0x13,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0, 0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x13, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x9a,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0x7d,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe3,0x2,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x2, 0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xd6, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x3,0x0,0x0,0xe9,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x25,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x31,0x2,0x0,0x0,0xfe,0x3,0x0, 0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x97,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x3,0x0,0x0,0x66,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x6,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x48,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x89,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4d,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc,0x4, 0x0,0x0,0x75,0x4,0x0,0x0,0x8e,0x3,0x0,0x0,0xe8,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x3,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x60,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x4,0x0,0x0,0x82,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x62,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0, 0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x14, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x14,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x14,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0xe4,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9b,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x6e,0x2,0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa8,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3, 0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xcd, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x14,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xd6,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x14,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x8e,0x3,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xce,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d, 0x2,0x0,0x0,0xdf,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd6,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0, 0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x14,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x4,0x0,0x0,0xe,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x14,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe9,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0xfb,0x3,0x0,0x0,0xfd,0x3,0x0,0x0,0x30,0x4,0x0,0x0,0xe4,0x2,0x0,0x0, 0xd2,0x3,0x0,0x0,0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf7,0x14,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0, 0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xa7,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xe7,0x3,0x0,0x0,0x1,0x2,0x0,0x0,0xde,0x1,0x0,0x0, 0x88,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x15,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8d,0x1,0x0,0x0,0xc3,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x44,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe7,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x46,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0, 0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xf7,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xce,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x79,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xd3,0x1,0x0,0x0,0x9f,0x3,0x0,0x0,0x4c,0x3,0x0,0x0,0xce,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x15,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x9c,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd3,0x1,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0, 0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x15, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xc9,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x15,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x15,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcf,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x4,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd6,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3, 0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0, 0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0xa0, 0x3,0x0,0x0,0xc8,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe4,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x82,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x80,0x3,0x0,0x0,0xed,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x15,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4b,0x3,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xec,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xde,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xef,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda, 0x2,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfd,0x15,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0, 0x96,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0xf3,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x87,0x1,0x0,0x0,0xa5,0x1,0x0,0x0,0xf2,0x1,0x0,0x0,0xcb, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x9d,0x3,0x0,0x0, 0x30,0x4,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1d,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfa,0x3,0x0, 0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0xf0,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x16,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0xd7,0x3,0x0,0x0,0xb2, 0x3,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2d,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0, 0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0xa5,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x9b,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5a,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xd,0x2,0x0,0x0,0xcd,0x4,0x0,0x0,0xde,0x1,0x0,0x0,0x5,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe3,0x1,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x78,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e, 0x3,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x7c,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0, 0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0xe5,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8d,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb4,0x1,0x0,0x0,0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x1,0x0, 0x0,0x8f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x16, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x4f,0x2,0x0,0x0,0xe9,0x3, 0x0,0x0,0x7f,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c, 0x4,0x0,0x0,0xa0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x4,0x0,0x0, 0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xd,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x1,0x0,0x0,0xf2,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb5,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x2,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0xfe,0x3,0x0,0x0,0x82,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xda,0x2,0x0,0x0,0x75,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xcb,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd3, 0x1,0x0,0x0,0x63,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xcd,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x95,0x2,0x0,0x0, 0xa5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x16,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x7c,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x16,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0xf7,0x3,0x0,0x0,0xb7,0x2, 0x0,0x0,0xf9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde, 0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80,0x3,0x0,0x0,0xed, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6,0x16,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xf0,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x16,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe8,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7f,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf7,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xff,0x16,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0,0x0, 0x76,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0xe8,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xec,0x1,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc8,0x3,0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x36,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7f,0x3,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x37,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0, 0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0xa9,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x80,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0xcb,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x59,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x3,0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x5e,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde,0x1, 0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x1, 0x2,0x0,0x0,0xff,0x3,0x0,0x0,0x11,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x85,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x90,0x3,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8b,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x54,0x2,0x0, 0x0,0x4d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x17, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0xb5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x17,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x91,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x17,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xff,0x3,0x0,0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xab,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1, 0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad, 0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x1,0x0,0x0,0x3d, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x17,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xfa,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb8,0x17,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0x12,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xe1,0x1,0x0,0x0,0x83,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc3,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc, 0x2,0x0,0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd0,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0, 0xd4,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x17,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xf9,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x17,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf7,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9e,0x2,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xfd,0x17,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0, 0x0,0xf7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xf7,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0x65,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3b,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x30,0x4,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x3f,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x2, 0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0,0x0,0xd6, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x63,0x3,0x0,0x0, 0x43,0x4,0x0,0x0,0xe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5f,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0, 0x0,0xe4,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x18, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x4,0x0,0x0,0x86,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x18,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x2,0x0,0x0,0xa2,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x18,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x72,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x76,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfc,0x3, 0x0,0x0,0x5,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x99, 0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x1,0x0,0x0,0xcd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x75,0x2,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x1,0x0,0x0,0x5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x8b,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xde, 0x1,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8c,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0, 0x12,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8e,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0x7c,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x82,0x4,0x0,0x0,0x54,0x2, 0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98, 0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xe5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x18,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0xad,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x18,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf2,0x2,0x0,0x0,0x95,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xdf,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8, 0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe8,0x18,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0, 0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x18,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x16,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x18,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf8,0x3,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0, 0x0,0xdb,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0x94,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x86,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x57,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2e,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4f,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4c,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1, 0x0,0x0,0xe5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0xb5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x18,0x4,0x0,0x0,0x84,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xef,0x1,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x3,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x69,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1, 0x4,0x0,0x0,0xcd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0, 0xb9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xb5,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd3,0x2,0x0,0x0,0xa8,0x4,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xf9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x80,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe5,0x3,0x0,0x0,0xb1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x82,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd2,0x3,0x0, 0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x19, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x3,0x0,0x0,0x71,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x19,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xca,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x19,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x94,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xdd,0x1,0x0,0x0,0x1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9b,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2, 0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0xfd, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x40,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0,0x0,0x94,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x89,0x3,0x0,0x0,0xf9,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb4,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1, 0x1,0x0,0x0,0xee,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb5,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x2,0x0,0x0, 0xf7,0x2,0x0,0x0,0xcb,0x1,0x0,0x0,0xad,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb7,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa4,0x1,0x0,0x0,0xd4,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbd,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xec,0x1, 0x0,0x0,0xdf,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xe1, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x19,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x8,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xca,0x19,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2d,0x2,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xeb,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3, 0x1,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf3,0x19,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4,0x1,0x0,0x0, 0xdb,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,0x19,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa7,0x4,0x0,0x0,0x6d,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x19,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x4,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x9c,0x4,0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x7f,0x3,0x0, 0x0,0xa7,0x1,0x0,0x0,0xcf,0x4,0x0,0x0,0xcb,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xae,0x4,0x0,0x0,0xfd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x17,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a, 0x3,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1a,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x3,0x0,0x0, 0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0xc7,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0x91,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x87,0x2,0x0,0x0,0xf7,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x38,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x89,0x3,0x0,0x0,0xfb,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3b,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0, 0x0,0x64,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x1a, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x2,0x0,0x0,0x33,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x31,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1a,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xe9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x68,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x68,0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x70,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3, 0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72, 0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0x5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0xe5,0x2,0x0,0x0, 0xd6,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x79,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xfb,0x3,0x0, 0x0,0x8,0x4,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc8,0x3,0x0,0x0,0x74,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2, 0x1,0x0,0x0,0x9d,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xaa,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0, 0x75,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x1a,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9f,0x2,0x0,0x0,0xa6,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x1a,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0xda,0x2,0x0,0x0,0xf7, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x1a,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0xdb,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x1a,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xae,0x4,0x0,0x0,0x75,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xbb,0x4,0x0,0x0,0x12,0x4,0x0,0x0,0xe5,0x3,0x0,0x0,0xfa,0x0, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1a,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x1a,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xff,0x3,0x0,0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xfc,0x1a,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x54,0x2,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xef,0x1, 0x0,0x0,0xa5,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xd,0x2,0x0,0x0,0xd, 0x4,0x0,0x0,0xf,0x4,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1d,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x54,0x2,0x0,0x0,0x9f,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x21,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x2,0x0, 0x0,0xf3,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x1b, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0xa5,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe6,0x1,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x52,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb7,0x2,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x54,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1, 0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xf7, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x32,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc8,0x3,0x0,0x0,0x3e,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x78,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9, 0x3,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x79,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0, 0x66,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1b,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x1,0x0,0x0,0xe8,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x1b,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x54,0x2,0x0,0x0,0x99,0x1,0x0,0x0,0xd0,0x2, 0x0,0x0,0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xce, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0xc7,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xf8,0x3,0x0,0x0,0x86,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9f,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe3,0x1,0x0,0x0,0xa2,0x2,0x0,0x0,0x94,0x2,0x0,0x0,0xfd,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa4,0x1b,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76,0x4,0x0,0x0,0x15,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1b,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x3,0x0,0x0,0xd7,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa9,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa4,0x1,0x0,0x0,0xef,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xaa,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3,0x4, 0x0,0x0,0x3e,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xf0, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x1b,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0x16,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1b,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xea,0x1,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1,0x4,0x0,0x0,0x71,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xe1,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb, 0x4,0x0,0x0,0x65,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xe4,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x2,0x0,0x0, 0xf9,0x2,0x0,0x0,0x4c,0x3,0x0,0x0,0xca,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xef,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9e,0x2,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf0,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x3, 0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7, 0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x75, 0x3,0x0,0x0,0xb0,0x1,0x0,0x0,0xfa,0x0,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfc,0x1b,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xde,0x1,0x0,0x0,0xb9,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x15,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0, 0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x4,0x0,0x0,0x50,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0xf2,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x31,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x7f,0x3,0x0,0x0,0x99,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2, 0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x1,0x0,0x0,0x12, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x55,0x1c,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x8d,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x1c,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xd,0x2,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x71,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x80, 0x3,0x0,0x0,0xed,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x74,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x2,0x0,0x0, 0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1c,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x4,0x0,0x0,0xf9,0x2,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1c,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4f,0x3,0x0,0x0,0x7,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8c,0x1,0x0,0x0,0x8,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x92,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x53,0x4,0x0,0x0,0x16,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0, 0x0,0xe8,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x1c, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xed,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1c,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0x64,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb7,0x1c,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb7,0x2,0x0,0x0,0x12,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xda,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc8,0x3,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf0,0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x4, 0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8, 0x1c,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xe5, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0x16,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xa2,0x1,0x0,0x0,0xb5,0x1,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbe,0x1,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1e,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0, 0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3,0x0,0x0, 0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0xc0,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0x3,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd6,0x3,0x0,0x0,0xe1,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xfe,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3f,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7f,0x3,0x0, 0x0,0x8e,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa4,0x1,0x0,0x0,0xf9,0x1, 0x0,0x0,0x6e,0x2,0x0,0x0,0xbe,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8, 0x1,0x0,0x0,0xe2,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x62,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x2,0x0,0x0, 0xa5,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xc9,0x4,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x2,0x0,0x0,0xc7,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf,0x4,0x0,0x0,0xf0,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x82,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf8,0x3,0x0,0x0,0xac,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x87,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x1,0x0, 0x0,0x78,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x4,0x0,0x0,0x16,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1d,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x7,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x1d,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x46,0x2,0x0,0x0,0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb8,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x2,0x0,0x0,0xec,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x4, 0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe, 0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0,0xc1, 0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1,0x1d,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x82,0x3,0x0,0x0,0x91,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1d,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0x62,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc2,0x1,0x0,0x0,0x1a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xca,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3, 0x2,0x0,0x0,0xa2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xce,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x3,0x0,0x0, 0xfa,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x1d,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xa9,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1d,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xf2,0x1,0x0,0x0,0xe4,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe0,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xc2,0x1,0x0,0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xea,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xcf,0x4,0x0,0x0,0x9a,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf0,0x1d,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0, 0x0,0xd4,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1d, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x3,0x0,0x0,0x9f,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x3,0x0,0x0,0x31,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x10,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x43,0x4,0x0,0x0,0xbd,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x16,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa2,0x1, 0x0,0x0,0x91,0x2,0x0,0x0,0xa5,0x3,0x0,0x0,0x9f,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf6,0x3,0x0,0x0,0x31,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x26,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x43,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x30,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x4,0x0, 0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xe4,0x2, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb4,0x1,0x0,0x0,0x6,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xc0,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4d,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xd8,0x3,0x0,0x0,0xc3,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x6b,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x2, 0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x1a, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb,0x1,0x0,0x0,0x80,0x1,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x72,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0x6,0x4,0x0,0x0,0xe1,0x1,0x0, 0x0,0x66,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x7a,0x3, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x89,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0x4d,0x3,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1e,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xe0,0x3,0x0,0x0,0x97,0x4,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xfc,0x3,0x0,0x0,0xc9,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x9b,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcc,0x4, 0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9f, 0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x83,0x1,0x0,0x0,0x82, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x1e,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x2,0x0,0x0,0xcd,0x4,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x1e,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xd9,0x3,0x0,0x0,0x86,0x4,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xb4,0x4,0x0,0x0,0xa9,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x76, 0x4,0x0,0x0,0x1c,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbf,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0, 0xc2,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc3,0x1e,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9c,0x4,0x0,0x0,0xdb,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x1e,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x1,0x0,0x0,0x33,0x3,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xfe,0x3,0x0,0x0,0xd0,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xdd,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xf,0x4,0x0,0x0,0x82,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xde,0x1e,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x1,0x0, 0x0,0x44,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x1e, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x2,0x0,0x0,0xfa,0x1, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x1e,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x4,0x0,0x0,0xb,0x4,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0x8b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xe3,0x1,0x0,0x0,0x7e,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xc,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa2,0x1, 0x0,0x0,0x60,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x3,0x0,0x0,0xad, 0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xd6,0x2,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x32,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x89,0x3,0x0,0x0,0xf9,0x2,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xc,0x2,0x0,0x0,0xca,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x59,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa4, 0x1,0x0,0x0,0x7b,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5f,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe5,0x3,0x0,0x0, 0x80,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0x7e,0x3,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x67,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x4c,0x4,0x0,0x0,0xfb,0x2,0x0,0x0,0x1,0x4b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0x88,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x71,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc2,0x1,0x0,0x0,0xc1,0x1,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x88,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x1,0x0, 0x0,0xc1,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x1f, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0x4a,0x4, 0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x1f,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xcd,0x2,0x0,0x0,0x1, 0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa5,0x1f,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0x84,0x3,0x0,0x0,0x1,0x4b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa7,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x51,0x3,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xab,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xea,0x1, 0x0,0x0,0x4a,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4, 0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x3,0x0,0x0,0x16, 0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x1f,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd0,0x2,0x0,0x0,0x60,0x3,0x0,0x0, 0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x1f,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4c,0x3,0x0,0x0,0x12,0x3,0x0,0x0,0x1,0x4b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x4c,0x4,0x0,0x0,0x40,0x2,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xde,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae, 0x4,0x0,0x0,0x6d,0x4,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xef,0x1f,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x4,0x0,0x0, 0xb6,0x3,0x0,0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x1f,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xaf,0x1,0x0,0x0,0xc1,0x1,0x0, 0x0,0x1,0x4b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf5,0x1f,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x81,0x3,0x0,0x0,0xd,0x4,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe,0x1,0x0,0x0,0x7e,0x0,0x0,0x0,0x22,0x1,0x0,0x0,0xdb, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa9,0x2,0x0,0x0,0x70,0x2,0x0,0x0, 0x64,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x5,0x0, 0x0,0x65,0x1,0x0,0x0,0xea,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x30,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0x1d,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xe4,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x4,0x0,0x0,0x17,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x11,0x5, 0x0,0x0,0x81,0x2,0x0,0x0,0x1d,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xab,0x2,0x0,0x0,0xb5,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xb5,0x5,0x0,0x0,0xa1,0x1,0x0,0x0,0x24,0x5,0x0,0x0,0x4f,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x5a,0x0,0x0, 0x0,0x3e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x30,0x3,0x0,0x0,0x25,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x13,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x77,0x5,0x0,0x0,0xaa,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x11,0x3,0x0,0x0, 0x10,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa9,0x5,0x0,0x0,0x6b,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0xe6,0x4,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x36,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x5,0x0,0x0,0x5a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x20,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x73,0x5,0x0, 0x0,0xf5,0x1,0x0,0x0,0x58,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x7a,0x1,0x0,0x0,0xa6,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x24,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb, 0x5,0x0,0x0,0xfa,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x25,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0, 0xf4,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0x52,0x1,0x0, 0x0,0x57,0x2,0x0,0x0,0x6e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5, 0x0,0x0,0x51,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xff,0x0,0x0,0x0,0xf8, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x90,0x5,0x0,0x0, 0x9e,0x5,0x0,0x0,0xbf,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x32,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0, 0x0,0x2a,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xf8,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x45,0x1,0x0,0x0,0x30, 0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x37,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0, 0xe4,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x2a,0x2,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x39,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x3,0x0,0x0,0x7f,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xa,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x14,0x0,0x0,0x0,0x97,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x40,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0, 0x0,0x6b,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6,0x3,0x0,0x0,0x17,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xaa,0x5,0x0,0x0,0x4,0x5,0x0,0x0,0x55, 0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x43,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0,0x0, 0x68,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0x90,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0x70,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xeb,0x1,0x0,0x0,0xba,0x0,0x0,0x0,0xdc, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4a,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x34,0x5,0x0,0x0,0x6f,0x5,0x0,0x0, 0x47,0x2,0x0,0x0,0x65,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x3,0x0, 0x0,0x49,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0xf5,0x1, 0x0,0x0,0x38,0x1,0x0,0x0,0x47,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe, 0x5,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x4f,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0, 0x3,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0x3,0x0,0x0, 0x0,0xfd,0x4,0x0,0x0,0xa6,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x51,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x60,0x2, 0x0,0x0,0xc8,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x86, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb2,0x2,0x0,0x0,0xb9,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5e,0x1,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa8,0x5,0x0,0x0,0x20,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb6, 0x5,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x5c,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x1,0x0,0x0, 0xd8,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xb2,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x8e,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x17,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x64,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3c,0x5,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x66,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3c,0x3,0x0, 0x0,0x1d,0x2,0x0,0x0,0x2c,0x0,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x9d,0x2,0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7, 0x5,0x0,0x0,0xe7,0x0,0x0,0x0,0x2c,0x2,0x0,0x0,0x36,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x1c,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x71,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xc,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x72,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe,0x1, 0x0,0x0,0x8d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x18, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x1e,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x15,0x3,0x0,0x0,0x4a,0x3,0x0,0x0,0x2e,0x2,0x0, 0x0,0x37,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd8,0x4,0x0,0x0,0x30,0x0, 0x0,0x0,0xb0,0x5,0x0,0x0,0xe0,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0xe6,0x4, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x2,0x0,0x0,0x83,0x0,0x0,0x0,0x79, 0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x81,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6c,0x2,0x0,0x0, 0xed,0x0,0x0,0x0,0x4,0x5,0x0,0x0,0x6f,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xde,0x0,0x0,0x0,0xd7,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x86,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x0, 0x0,0x0,0x18,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x87, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x1,0x0,0x0,0x8d, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x36,0x5,0x0,0x0, 0xb0,0x5,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x89,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8c,0x0,0x0, 0x0,0xb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8e,0x5,0x0,0x0,0x8f,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x9e,0x5,0x0,0x0,0xf1,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x8b,0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x93,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc3,0x5, 0x0,0x0,0xe0,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3c,0x3,0x0,0x0,0x98, 0x1,0x0,0x0,0xfd,0x2,0x0,0x0,0x4e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x97,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe9,0x2,0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x98,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xb0,0x5,0x0, 0x0,0x20,0x2,0x0,0x0,0x7b,0x2,0x0,0x0,0xe9,0x0,0x0,0x0,0xc9,0x3,0x0, 0x0,0xeb,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0xe8,0x4, 0x0,0x0,0xae,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x9a,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0, 0x2,0x0,0x0,0x9,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x9b,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x3,0x0,0x0, 0x4b,0x2,0x0,0x0,0x5,0x1,0x0,0x0,0xd7,0x4,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x9e,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa2,0x5,0x0,0x0,0x15,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0x13,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0xaf, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xa1,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0xb,0x3,0x0,0x0,0xf0,0x4,0x0, 0x0,0xd7,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x3,0x0,0x0,0x0,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x18,0x0,0x0,0x0,0x21,0x5,0x0,0x0,0x3c, 0x5,0x0,0x0,0xa3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0x2b,0x3,0x0,0x0,0x10,0x4,0x0,0x0,0xd6,0x4,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xad,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x69,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xae,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x97,0x5, 0x0,0x0,0x80,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xf7, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x0,0x0,0x0,0x6c,0x2,0x0,0x0, 0xd5,0x2,0x0,0x0,0x9e,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd8,0x0,0x0, 0x0,0x24,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x0, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xae,0x0,0x0,0x0,0x43,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x28,0x3,0x0,0x0,0x67,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x70,0x0,0x0,0x0,0x34,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xbe,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb4,0x0, 0x0,0x0,0xa5,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x88,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf9,0x4,0x0,0x0,0x3f,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x61,0x5,0x0,0x0,0x37,0x5,0x0,0x0,0x9e,0x5,0x0,0x0,0xf3,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x7b,0x5,0x0,0x0,0x8f,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xe0,0x1,0x0,0x0,0x21,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x7d,0x1, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc9,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x1,0x0,0x0,0xd2,0x1,0x0,0x0,0x24, 0x5,0x0,0x0,0x60,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xca,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x1,0x0,0x0, 0xaf,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x40,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x47,0x2,0x0,0x0,0x67,0x2,0x0,0x0,0x12,0x0, 0x0,0x0,0x23,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x53, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x40,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x69,0x5,0x0,0x0,0xf2,0x4,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xa0,0x0,0x0,0x0,0x3a,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x68, 0x5,0x0,0x0,0x27,0x5,0x0,0x0,0x23,0x3,0x0,0x0,0x7b,0x1,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd6,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x42,0x5,0x0,0x0,0x1b,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x48,0x1,0x0,0x0,0xc2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xda,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x0, 0x0,0x0,0x2f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x1c, 0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2f,0x3,0x0,0x0,0x1,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xfe,0x1,0x0,0x0,0x15,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xea,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xbd, 0x5,0x0,0x0,0xce,0x0,0x0,0x0,0x48,0x3,0x0,0x0,0x9b,0x1,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x0,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x59,0x5,0x0,0x0,0x15,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb7,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xef,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcf,0x2, 0x0,0x0,0xbe,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xc, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x0,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0xfa,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x93,0x5,0x0,0x0,0xa8,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2e,0x1,0x0,0x0,0x29,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9, 0x0,0x0,0x0,0x14,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xfa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x3,0x0,0x0, 0x5f,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x44,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x63,0x1,0x0,0x0,0x89,0x0,0x0,0x0,0x4,0x1,0x0,0x0,0x13, 0x5,0x0,0x0,0x15,0x2,0x0,0x0,0xbb,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xb1,0x2,0x0,0x0,0x20,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0, 0x0,0x41,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x24,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0xe4,0x4,0x0,0x0,0x2b, 0x2,0x0,0x0,0x6f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0, 0x6d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x1,0x0,0x0,0xb2,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xb1,0x2,0x0,0x0,0x4b,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5,0x1,0x0,0x0,0xfb,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x17,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x53,0x2,0x0,0x0,0x4d,0x1,0x0,0x0,0x1a,0x0,0x0,0x0,0xbe,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0xb7,0x0,0x0,0x0,0x67,0x5,0x0, 0x0,0xf7,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe3,0x4,0x0,0x0,0x5c,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xdf,0x4,0x0,0x0,0xa4, 0x3,0x0,0x0,0x4e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1d,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x84,0x1,0x0,0x0, 0xf3,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x4d,0x5,0x0, 0x0,0x95,0x5,0x0,0x0,0x19,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x22,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf0,0x1, 0x0,0x0,0x12,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x4b,0x5,0x0,0x0,0xe2, 0x4,0x0,0x0,0x24,0x0,0x0,0x0,0x81,0x1,0x0,0x0,0xa1,0x3,0x0,0x0,0x5e, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x31,0x0,0x0,0x0,0x51,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x5e,0x5,0x0,0x0,0x3b,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x27,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x90,0x2,0x0,0x0,0x16,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f, 0x3,0x0,0x0,0x95,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x3,0x0,0x0, 0x12,0x0,0x0,0x0,0xc6,0x2,0x0,0x0,0xc6,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xa9,0x2,0x0,0x0,0x4c,0x2,0x0,0x0,0x87,0x5,0x0,0x0,0x70,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0x68,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xae,0x5,0x0,0x0,0xaa,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x39,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x96,0x2,0x0,0x0,0xb7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x3a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x3,0x0, 0x0,0x6b,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xaf,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x56,0x5,0x0,0x0,0x6a,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x33,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3a,0x2,0x0,0x0,0x41,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x46,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x8c,0x0, 0x0,0x0,0x18,0x1,0x0,0x0,0xd2,0x4,0x0,0x0,0xe5,0x4,0x0,0x0,0x97,0x3, 0x0,0x0,0x7d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x0, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x59,0x3,0x0,0x0,0x97,0x3,0x0,0x0, 0x2b,0x2,0x0,0x0,0x64,0x2,0x0,0x0,0xf4,0x4,0x0,0x0,0xd4,0x4,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x94,0x0,0x0,0x0,0xe7,0x4,0x0, 0x0,0x57,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x35,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0x3b,0x0,0x0,0x0,0xe3, 0x0,0x0,0x0,0x81,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x52,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xce,0x1,0x0,0x0, 0x21,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x9d,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x3,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xe1,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x61,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x10,0x1,0x0,0x0,0x3c,0x0,0x0,0x0,0xf6,0x4,0x0,0x0,0x6a,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0x62,0x0,0x0, 0x0,0x65,0x2,0x0,0x0,0xa7,0x3,0x0,0x0,0x3d,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0, 0x0,0x0,0x8a,0x0,0x0,0x0,0x9f,0x0,0x0,0x0,0x2d,0x5,0x0,0x0,0xfb,0x4, 0x0,0x0,0x2b,0x0,0x0,0x0,0xf8,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x66,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xc0, 0x5,0x0,0x0,0x20,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x2f,0x1,0x0,0x0,0x5b, 0x1,0x0,0x0,0x28,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x1,0x0,0x0, 0x29,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6c,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x66,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0x6a,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x6f,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x6c,0x2,0x0,0x0,0x6d,0x2,0x0,0x0,0x7d,0x1,0x0,0x0,0x2b,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0x69,0x2,0x0,0x0,0x96,0x3,0x0, 0x0,0x7f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x73,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x21,0x2,0x0,0x0,0xc5,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x1,0x0,0x0,0x19,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0xb9,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x76,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x28,0x2,0x0,0x0,0x35,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x7a,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x52,0x0, 0x0,0x0,0x36,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0xf1, 0x0,0x0,0x0,0x57,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x82,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x7,0x1,0x0,0x0,0x9e,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x83,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7e,0x5,0x0, 0x0,0xa0,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x85,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x7c,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0x8e,0x2,0x0,0x0,0x64, 0x5,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x8e,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0, 0x8e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x72,0x0,0x0,0x0,0x10,0x0,0x0, 0x0,0xb6,0x1,0x0,0x0,0x9,0x1,0x0,0x0,0x17,0x2,0x0,0x0,0x4c,0x2,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xef,0x4,0x0,0x0,0x66,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1f,0x3,0x0,0x0,0x19, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x5,0x0,0x0,0x45,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xed,0x2,0x0,0x0,0xed,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x97,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x79, 0x0,0x0,0x0,0x2,0x1,0x0,0x0,0x11,0x5,0x0,0x0,0x60,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0xd9,0x0,0x0,0x0, 0x77,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x1,0x0,0x0,0xbc,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0xfd,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x2a,0x1,0x0,0x0,0x64,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xa6,0x5,0x0,0x0,0xa0,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa2,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x2,0x0, 0x0,0x5b,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5,0x1,0x0,0x0,0x6c,0x0, 0x0,0x0,0xcc,0x2,0x0,0x0,0xc4,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x8b, 0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xa9,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x16,0x3,0x0,0x0, 0x97,0x3,0x0,0x0,0x9f,0x5,0x0,0x0,0x92,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xaa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x33,0x0,0x0,0x0,0xa7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xac,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89,0x5, 0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xad, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x18, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x1,0x0,0x0,0x44,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x1e,0x5,0x0,0x0,0x54,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xb2,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x81, 0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xb4,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x78,0x3,0x0,0x0, 0xbb,0x0,0x0,0x0,0x7a,0x5,0x0,0x0,0xbd,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xde,0x0,0x0,0x0,0x21,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xba,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x1, 0x0,0x0,0x28,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb, 0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x81, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x17,0x2,0x0,0x0,0xb0,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbf,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x45,0x0,0x0,0x0,0x26,0x1,0x0, 0x0,0x9f,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x46,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc6,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0x3b,0x1,0x0,0x0,0x34, 0x5,0x0,0x0,0x51,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xc7,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x98,0x3,0x0,0x0, 0x2a,0x3,0x0,0x0,0xe4,0x1,0x0,0x0,0x97,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xca,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x9e,0x5,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xcb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x85,0x1, 0x0,0x0,0xb6,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0x90,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcf,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xd1,0x0,0x0,0x0,0xc3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x34,0x2,0x0, 0x0,0x6b,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x1e,0x0, 0x0,0x0,0x61,0x2,0x0,0x0,0xf7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xd3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4, 0x1,0x0,0x0,0xcc,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xd5,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x3,0x0,0x0, 0x9c,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x1,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0xfd,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x1,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0x59,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x81,0x2,0x0,0x0,0x42,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xde,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x26,0x5,0x0,0x0,0x33,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe0,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x5,0x0, 0x0,0x4e,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe5,0x1, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x53,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x1,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0x24,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x1,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0x62,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xeb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xdf,0x4,0x0,0x0,0x61,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xec,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x58,0x0, 0x0,0x0,0x95,0x1,0x0,0x0,0x1a,0x1,0x0,0x0,0x4a,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x18,0x2,0x0,0x0,0xa5,0x5,0x0,0x0,0xcc, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xef,0x1,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x7a,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xbd,0x5,0x0,0x0,0x89,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xf1,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x46,0x0,0x0,0x0,0x40,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xf3,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xed, 0x4,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf6,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc5,0x2,0x0,0x0, 0x90,0x0,0x0,0x0,0x5c,0x1,0x0,0x0,0xe0,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf8,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa4,0x3,0x0,0x0,0x5e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xfa,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x4, 0x0,0x0,0x32,0x5,0x0,0x0,0x7b,0x5,0x0,0x0,0x6b,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x72,0x5,0x0,0x0,0xa1,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xfd,0x1,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xb0,0x5,0x0,0x0,0x24,0x2,0x0,0x0,0x96,0x3,0x0,0x0,0xf,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x1,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0xf5,0x0,0x0,0x0,0x3d,0x5,0x0, 0x0,0xe4,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0x39,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xc4,0x2,0x0,0x0,0xb6,0x2,0x0,0x0,0x2c, 0x3,0x0,0x0,0x3f,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x0,0x0,0x0, 0xaa,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x24,0x5,0x0,0x0,0x2d,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x0,0x0,0x0,0x5d,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x30,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xea,0x0,0x0,0x0,0xf1,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xba,0x3,0x0, 0x0,0x43,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x61,0x5,0x0,0x0,0x6,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9,0x5,0x0,0x0,0x6d,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x5d,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x14,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x5c,0x2,0x0,0x0,0x34,0x0,0x0,0x0,0xb,0x5,0x0,0x0,0x6b,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x3,0x1,0x0,0x0,0x73,0x0,0x0,0x0,0x2c,0x2, 0x0,0x0,0x7f,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf7,0x1,0x0,0x0,0x9d, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x19,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd7,0x4,0x0,0x0,0xe2,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x76,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xca,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x2e,0x1,0x0,0x0,0x67,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0xc5,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0x39,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x28,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xa7,0x5,0x0,0x0,0x72,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x29,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x32,0x1, 0x0,0x0,0x45,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb2,0x0,0x0,0x0,0x4c, 0x0,0x0,0x0,0xd5,0x2,0x0,0x0,0xad,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x30,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe4,0x1,0x0,0x0,0x66,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x33,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x10,0x4,0x0, 0x0,0xfb,0x4,0x0,0x0,0x8e,0x5,0x0,0x0,0x16,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x19,0x0,0x0,0x0,0x1e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x36,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xdf, 0x1,0x0,0x0,0x2a,0x2,0x0,0x0,0xf4,0x4,0x0,0x0,0xd4,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdc,0x1,0x0,0x0,0x4c,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x3c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0x57,0x2,0x0,0x0,0x4d,0x1,0x0,0x0,0x5c,0x3,0x0,0x0,0x7b,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0xaf,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x4c,0x1,0x0,0x0,0xab,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x40,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xc8,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x43,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0x4a,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe7,0x4,0x0,0x0,0x87,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x73,0x5,0x0,0x0,0xed,0x4,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4b,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x4c,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xb,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0xfe,0x1,0x0,0x0,0x1b,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xb8,0x3,0x0,0x0,0xc4,0x3,0x0,0x0,0x27,0x0, 0x0,0x0,0x14,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xae,0x2,0x0,0x0,0xad, 0x0,0x0,0x0,0xa2,0x5,0x0,0x0,0xdb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x50,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x78,0x3,0x0,0x0,0x2e,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x53,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x45,0x1,0x0, 0x0,0x3d,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0xb6,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x92,0x3,0x0,0x0,0x2d,0x3,0x0,0x0,0x4a, 0x5,0x0,0x0,0xce,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x47,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb5,0x3,0x0,0x0,0xc6,0x3,0x0,0x0,0x53,0x5,0x0,0x0, 0xc,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5a,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x1,0x0,0x0,0x5,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x79,0x5,0x0,0x0,0xf5,0x0,0x0,0x0,0x24,0x5, 0x0,0x0,0xdf,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0xea, 0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x1,0x0,0x0,0x2f,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x60,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0xc1,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0xed,0x4,0x0,0x0,0x20,0x5,0x0,0x0,0x61,0x0,0x0,0x0,0x3c,0x1, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x64,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xdc,0x4,0x0,0x0,0x2e,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x98,0x5,0x0,0x0,0x55,0x0,0x0,0x0, 0xd2,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbb,0x3,0x0,0x0,0xa3,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x48,0x5,0x0,0x0,0xd9,0x1,0x0,0x0,0x2e,0x1, 0x0,0x0,0x77,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x50, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xe0,0x2,0x0,0x0,0xf3,0x0,0x0,0x0, 0x31,0x5,0x0,0x0,0x5c,0x5,0x0,0x0,0x6,0x3,0x0,0x0,0xe8,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6e,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xed,0x4,0x0,0x0,0x56,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x5,0x0,0x0,0x71,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x4,0x0,0x0,0xf3,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x53,0x5,0x0,0x0, 0xec,0x4,0x0,0x0,0x98,0x5,0x0,0x0,0xea,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x76,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x4a,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x77,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x20,0x3, 0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x80,0x5,0x0,0x0,0x78, 0x5,0x0,0x0,0xbc,0x3,0x0,0x0,0x94,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7d,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xed,0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x7e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x5,0x0, 0x0,0x97,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe4,0x1,0x0,0x0,0xf,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x14,0x5,0x0,0x0,0xbc,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x18,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x88,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x92,0x2,0x0,0x0,0xd2,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x89,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x47,0x3, 0x0,0x0,0xdc,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x3,0x0,0x0,0xf2, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb1,0x5,0x0,0x0,0xf5,0x1,0x0,0x0, 0x76,0x1,0x0,0x0,0x3b,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x90,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x68,0x3,0x0, 0x0,0x3d,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x99,0x3, 0x0,0x0,0xf6,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x94,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf8, 0x4,0x0,0x0,0x5d,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x95,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe4,0x1,0x0,0x0, 0x8,0x2,0x0,0x0,0xf6,0x4,0x0,0x0,0x4a,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x97,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xee,0x4,0x0,0x0,0xe5,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x99,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x38,0x5, 0x0,0x0,0xff,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63,0x5,0x0,0x0,0x2f, 0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9b,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0x41,0x0,0x0,0x0, 0xde,0x0,0x0,0x0,0x51,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9d,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x35,0x3,0x0, 0x0,0x7f,0x0,0x0,0x0,0x9f,0x5,0x0,0x0,0xfb,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x35,0x1,0x0,0x0,0x1e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x52, 0x3,0x0,0x0,0xe2,0x4,0x0,0x0,0x9c,0x1,0x0,0x0,0x2d,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa3,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0xb4,0x2,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3f,0x5,0x0,0x0,0x6a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x1, 0x0,0x0,0xa3,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaa, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4e,0x2,0x0,0x0,0x30, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0xc6,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x46,0x1,0x0,0x0,0xfe,0x4,0x0,0x0,0xfe,0x2,0x0, 0x0,0xe2,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0xdb,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbe,0x5,0x0,0x0,0x29,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb0,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xb1,0x0,0x0,0x0,0xfc,0x4,0x0,0x0,0x10,0x3,0x0,0x0, 0xb2,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x2,0x0,0x0,0x5f,0x2,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x0,0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x97,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb6,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x68,0x1,0x0,0x0,0xda,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb8,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x0,0x0, 0x0,0x54,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x25,0x1, 0x0,0x0,0x38,0x5,0x0,0x0,0x45,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xbb,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xef, 0x2,0x0,0x0,0xf1,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xbd,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x9e,0x3,0x0,0x0, 0x17,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x5,0x0,0x0,0x0,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0x2,0x3,0x0,0x0,0x6a,0x0, 0x0,0x0,0xe,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc1, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x10,0x4,0x0,0x0,0x5b, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x42,0x0,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc5,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0xf8,0x4,0x0,0x0,0x62,0x2,0x0,0x0,0x96,0x2,0x0, 0x0,0x21,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0xfe,0x2, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc8,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf5,0x4,0x0,0x0,0x21,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcc,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x64,0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xcf,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xbf,0x3,0x0,0x0,0x2e,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xd0,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x97,0x0, 0x0,0x0,0x2e,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0xe6,0x2,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb3,0x0,0x0,0x0,0x68,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x7,0x0,0x0,0x0,0x66,0x1,0x0,0x0,0xb8,0x3,0x0,0x0,0x57,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0xff,0xff,0xff, 0xff,0x2,0x0,0x0,0x0,0x5a,0x2,0x0,0x0,0x3d,0x1,0x0,0x0,0x3c,0x3,0x0, 0x0,0xa6,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xa5,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x57,0x5,0x0,0x0,0x1c,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdb,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0xd,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xdc,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xae,0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x4a,0x5,0x0,0x0,0x2e,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdd,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x1,0x0,0x0,0xf,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe4,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xeb,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xe0,0x2,0x0,0x0,0x8e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xe7,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x98,0x0,0x0, 0x0,0x8c,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0x24,0x1, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x2,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0xdd,0x4,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xec,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x48,0x2,0x0,0x0,0x7e,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xed,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7b,0x5, 0x0,0x0,0xda,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee, 0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x37, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3,0x2,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0xf6,0x2,0x0,0x0, 0x23,0x3,0x0,0x0,0x8,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xf5,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x60,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x2, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x93,0x1,0x0,0x0,0x28,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf8,0x2,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x49,0x1,0x0,0x0,0x99, 0x5,0x0,0x0,0x8,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xf9,0x2,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x69,0x3,0x0,0x0, 0x15,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x2,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0x5c,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe,0x2,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0x1a,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2, 0x0,0x0,0x0,0xd2,0x0,0x0,0x0,0x6,0x2,0x0,0x0,0x5c,0x5,0x0,0x0,0x10, 0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x12,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x65,0x2,0x0,0x0,0x4b,0x2,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x5,0x0,0x0,0x9c,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x63, 0x2,0x0,0x0,0x64,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5f,0x1,0x0,0x0, 0xb2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x61,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x26,0x1,0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x85,0x2,0x0,0x0,0xdb,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xa,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x8a,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x28,0x5,0x0, 0x0,0x30,0x5,0x0,0x0,0x89,0x5,0x0,0x0,0x55,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x73,0x2,0x0,0x0,0xe7,0x2,0x0,0x0,0x53,0x5,0x0,0x0,0x16,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x5,0x0,0x0,0x20,0x5,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x22,0x3,0x0,0x0,0x79,0x3,0x0,0x0,0x34,0x2,0x0,0x0, 0x34,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x2,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x72,0x3,0x0,0x0,0x20,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x11,0x1,0x0,0x0,0x9,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x5d,0x2,0x0,0x0,0x9a,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa6,0x1,0x0, 0x0,0x48,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x9,0x1,0x0,0x0,0x9,0x0, 0x0,0x0,0x55,0x0,0x0,0x0,0xf,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x89, 0x5,0x0,0x0,0x13,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5a,0x0,0x0,0x0, 0xe0,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x43,0x3,0x0,0x0,0x37,0x3,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x16,0x3,0x0,0x0,0x6c,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xa1,0x0,0x0,0x0,0xd2,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x25,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x48,0x3,0x0,0x0,0x42,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x28,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xa9,0x2,0x0, 0x0,0xfd,0x2,0x0,0x0,0x80,0x5,0x0,0x0,0xee,0x0,0x0,0x0,0x43,0x3,0x0, 0x0,0xfd,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc4,0x1,0x0,0x0,0xba,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0xb9,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2c,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5b,0x2,0x0,0x0,0xd8,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x2d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x84,0x1,0x0,0x0,0xd8,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x2e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3, 0x0,0x0,0x13,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x30, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xe1,0x4,0x0,0x0,0xde, 0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x31,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x1,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x33,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x4b,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xf6,0x4,0x0,0x0,0xef,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x36,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4a, 0x2,0x0,0x0,0x3b,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x37,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x6d,0x2,0x0,0x0, 0xcf,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2a,0x5,0x0,0x0,0x58,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0xbe,0x2,0x0,0x0,0x2a,0x3,0x0,0x0,0xbf,0x3, 0x0,0x0,0x97,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x41, 0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x96,0x2,0x0,0x0,0x6c,0x1,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x33,0x0,0x0,0x0,0x92,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xbb,0x3,0x0,0x0,0x9,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x44,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2e, 0x1,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x46,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2c,0x2,0x0,0x0, 0xb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x63,0x2,0x0,0x0,0x64,0x2,0x0, 0x0,0x20,0x4,0x0,0x0,0xb3,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x4b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x87,0x0, 0x0,0x0,0xfb,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x41,0x3,0x0,0x0,0x1f,0x5, 0x0,0x0,0x52,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa0,0x2,0x0,0x0,0xd5, 0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x71,0x3,0x0,0x0,0x38,0x3,0x0,0x0, 0x1b,0x0,0x0,0x0,0x72,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x4f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x50,0x1,0x0, 0x0,0xf,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1d,0x5,0x0,0x0,0x5a,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x52,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x1,0x0,0x0,0x85,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x53,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x70,0x3,0x0,0x0,0xdd,0x0,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x55,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xb6,0x5,0x0,0x0,0x9,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x58,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x2a,0x1, 0x0,0x0,0x3e,0x1,0x0,0x0,0x11,0x1,0x0,0x0,0xe3,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x8b,0x5,0x0,0x0,0x70,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x5d,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x70,0x3,0x0,0x0,0xf,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5e,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x39,0x5,0x0, 0x0,0x5a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x2,0x0,0x0,0xa,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x61,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x66,0x5,0x0,0x0,0x1b,0x5,0x0,0x0,0x57, 0x2,0x0,0x0,0x9f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x63,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb4,0x0,0x0,0x0, 0x3b,0x3,0x0,0x0,0xbb,0x5,0x0,0x0,0xe,0x2,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x64,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x3c,0x2,0x0,0x0,0x26,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x66,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x86,0x0, 0x0,0x0,0x43,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x68, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x41,0x1,0x0,0x0,0x41, 0x2,0x0,0x0,0x14,0x5,0x0,0x0,0x5d,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x69,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x10,0x1,0x0,0x0,0x20,0x4,0x0,0x0,0x15,0x3,0x0,0x0,0x27,0x2,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6b,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x89,0x0,0x0,0x0,0x19,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x5a,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x73,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88, 0x2,0x0,0x0,0xb2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x75,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xac,0x0,0x0,0x0, 0x4f,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3a,0x5,0x0,0x0,0x42,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x2,0x0,0x0,0x0,0x20,0x3,0x0,0x0,0xe8,0x1,0x0,0x0,0xd5,0x4, 0x0,0x0,0xe,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x87,0x0,0x0,0x0,0x2f, 0x1,0x0,0x0,0xc0,0x5,0x0,0x0,0xeb,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x22,0x2,0x0,0x0,0x54,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x80,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb9,0x0,0x0, 0x0,0x7a,0x0,0x0,0x0,0xa3,0x3,0x0,0x0,0xfc,0x4,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0xce,0x1,0x0,0x0,0x21,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x84,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x64, 0x5,0x0,0x0,0xd4,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x85,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x2e,0x1,0x0,0x0, 0xd4,0x2,0x0,0x0,0x9d,0x1,0x0,0x0,0x89,0x1,0x0,0x0,0x72,0x3,0x0,0x0, 0xcd,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x88,0x5,0x0,0x0,0x8,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x8a,0x5,0x0,0x0,0x96,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3, 0x0,0x0,0x0,0x52,0x0,0x0,0x0,0x66,0x2,0x0,0x0,0xd3,0x4,0x0,0x0,0x12, 0x5,0x0,0x0,0x22,0x2,0x0,0x0,0x95,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x8c,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x5d,0x0,0x0,0x0,0x3,0x2,0x0,0x0,0xb9,0x3,0x0,0x0,0xad,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0x55,0x5,0x0,0x0,0x25,0x5,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x2c,0x2,0x0,0x0,0x66,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x90,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb7, 0x1,0x0,0x0,0x1e,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x92,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x0, 0xd4,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x94,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x46,0x3,0x0,0x0,0xe8,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x96,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xd1,0x1,0x0,0x0,0x39,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x98,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0x3a,0x3,0x0,0x0,0x3f,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x9b,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xee,0x4,0x0, 0x0,0xdc,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xc0,0x5,0x0,0x0,0xa6,0x0, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7,0x5,0x0,0x0,0x36,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x8c,0x5,0x0,0x0,0x10,0x2,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0xf8,0x4,0x0,0x0,0xb4,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xa3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x3f,0x0, 0x0,0x0,0x8,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0xcf, 0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa7,0x3,0x0,0x0, 0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x29,0x2,0x0,0x0,0x65,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa8,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xee,0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xac,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x86,0x5,0x0,0x0,0xa2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xad,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x46, 0x1,0x0,0x0,0x72,0x0,0x0,0x0,0xc2,0x3,0x0,0x0,0x41,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xaf,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x90,0x2,0x0,0x0,0x1c,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xb3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0, 0x0,0xaa,0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0xb7,0x1,0x0,0x0,0xde,0x0,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb4,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xc,0x5,0x0,0x0,0x65,0x5,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xf,0x1,0x0,0x0,0x9b,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xb7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xbb,0x3,0x0,0x0,0x3e,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xb9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1a,0x1,0x0, 0x0,0x89,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xf3,0x0,0x0,0x0,0xc0,0x0, 0x0,0x0,0x7c,0x5,0x0,0x0,0x50,0x3,0x0,0x0,0xe,0x3,0x0,0x0,0x83,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x3,0x0,0x0,0x0,0xd8,0x2,0x0,0x0,0x6b,0x2,0x0,0x0,0x82, 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x35,0x3,0x0,0x0,0x39,0x3,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbd,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0xd9,0x0,0x0,0x0,0xd8,0x1,0x0,0x0,0xfc,0x1,0x0,0x0, 0x85,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbe,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x22,0x2,0x0,0x0,0x29,0x1,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0xbf,0x3,0x0,0x0,0x58,0x3,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0xb3,0x5,0x0,0x0,0xf3,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xc5,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0, 0xaf,0x5,0x0,0x0,0x57,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc6,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xa8,0x5,0x0, 0x0,0xe7,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xe3,0x0,0x0,0x0,0x24,0x1, 0x0,0x0,0xe3,0x4,0x0,0x0,0x62,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc9,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xcb, 0x0,0x0,0x0,0x42,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0xca,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x55,0x0,0x0,0x0, 0xc3,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x40,0x5,0x0,0x0,0x4c,0x5,0x0, 0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcd,0x3,0x0,0x0,0xff,0xff, 0xff,0xff,0x1,0x0,0x0,0x0,0x53,0x2,0x0,0x0,0x3d,0x1,0x0,0x0,0x1,0x4e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xce,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1, 0x0,0x0,0x0,0x1f,0x5,0x0,0x0,0x35,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xd0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x3,0x0,0x0,0x0, 0x12,0x1,0x0,0x0,0x21,0x0,0x0,0x0,0xcb,0x0,0x0,0x0,0x69,0x5,0x0,0x0, 0xbb,0x3,0x0,0x0,0xf2,0x0,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xd2,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x7d,0x1,0x0, 0x0,0x1a,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xda,0x3, 0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x4,0x3,0x0,0x0,0x18,0x3, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0x1e,0x5,0x0,0x0,0xea,0x4,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe2,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x49,0x5,0x0,0x0,0x48,0x5,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xe3,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x47,0x3,0x0,0x0,0xc7,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xe4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf9,0x4, 0x0,0x0,0xde,0x4,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe6, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x1a,0x1,0x0,0x0,0x9c, 0x3,0x0,0x0,0xe9,0x2,0x0,0x0,0x2d,0x1,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xe7,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0xca,0x0,0x0,0x0,0xdf,0x1,0x0,0x0,0xa5,0x0,0x0,0x0,0x3e,0x3,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe9,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x3,0x0,0x0,0x0,0x51,0x2,0x0,0x0,0x73,0x0,0x0,0x0,0x7,0x3,0x0, 0x0,0x54,0x3,0x0,0x0,0xe9,0x4,0x0,0x0,0x85,0x1,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xeb,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0, 0x0,0x0,0x59,0x4,0x0,0x0,0x2,0x5,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xed,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xb7, 0x5,0x0,0x0,0x66,0x1,0x0,0x0,0x81,0x2,0x0,0x0,0xdb,0x0,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xee,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x1,0x0,0x0,0x0,0x5a,0x1,0x0,0x0,0x84,0x1,0x0,0x0,0x1,0x4e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xf0,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0, 0x0,0x1,0x5,0x0,0x0,0x45,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0xf1,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x3, 0x0,0x0,0x9b,0x3,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf3, 0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0xa8,0x5,0x0,0x0,0xd6, 0x1,0x0,0x0,0x90,0x2,0x0,0x0,0x9c,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0xf4,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0, 0x2c,0x1,0x0,0x0,0x73,0x0,0x0,0x0,0x89,0x5,0x0,0x0,0x97,0x5,0x0,0x0, 0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0x3,0x0,0x0,0xff,0xff,0xff, 0xff,0x1,0x0,0x0,0x0,0xf9,0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x1,0x4e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xfa,0x3,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0, 0x0,0x0,0x1b,0x1,0x0,0x0,0x36,0x1,0x0,0x0,0x39,0x5,0x0,0x0,0x43,0x5, 0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfc,0x3,0x0,0x0,0xff, 0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xb0,0x5,0x0,0x0,0x19,0x2,0x0,0x0,0x1, 0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfd,0x3,0x0,0x0,0xff,0xff,0xff,0xff, 0x2,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x4f,0x1,0x0,0x0,0x8c,0x5,0x0,0x0, 0x23,0x2,0x0,0x0,0x1,0x4e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0x3,0x0, 0x0,0xff,0xff,0xff,0xff,0x1,0x0,0x0,0x0,0xf,0x5,0x0,0x0,0x6e,0x5,0x0, 0x0,0xf8,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x1,0x3e, 0xf,0x4,0x0,0xc4,0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb8,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x21,0x60,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa4,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x6a,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x77,0xf3,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5d,0xa2,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x32,0x60,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x1a,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa8,0x52,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7,0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x95,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x27,0x75,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xe4,0x74,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe6,0xac,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xe4,0x74,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xb6, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7a,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6d,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x59,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x73,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf1,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63, 0xf0,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdf,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x36,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x49,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xf7, 0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x97,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x3c,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7b,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x84,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x56,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9e,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0xb3, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x6b,0x4d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x30,0x36, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x53,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x99,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x93,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x57,0x3f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4b,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x5e, 0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x74,0x70,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf1,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xee,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9,0x26,0x84,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xc8,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0, 0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa1,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xee,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0x4a,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8c, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9f,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x91,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0xc8,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xe4,0x74,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x81,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xf5,0x37,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbc,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x5a,0x41,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94, 0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb0,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x9d,0x50,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x9d, 0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x64,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4d,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xde,0xb5,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x86, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x5a,0x41, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x26,0x5b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa9,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xda,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x16,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5c,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3b,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x96,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbd,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x8,0x78,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc8, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd9,0xf7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x57,0x54, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x50,0x45,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc6,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6, 0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x52,0xef,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x57,0x3f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0xce,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8, 0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xff,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x8d,0x33, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfe,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe8,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a, 0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7d,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x11,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x49,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x85,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6f,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x67,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc7,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xb, 0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x20,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfa,0x28,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x99,0x6d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x94,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x36,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x31,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf1,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7, 0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x98,0x62,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x8a, 0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xf4,0x68,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7,0x8a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0x78,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfb,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x96,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xef,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xff,0x47,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x27, 0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdf,0xb2,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9b,0x90,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa0,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x6b,0x75,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26, 0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x97,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xa4,0x58,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8a,0x6d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x76, 0x4a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x19,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd9,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xaa,0xf,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x48,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x23,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf3,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0xad,0x84,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x4d,0x6a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0x6, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe5,0x5,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xbd,0x42, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb6,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x49,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9e,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2, 0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2e,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x31,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd0,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2, 0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x73, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4c,0xbb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3,0x37,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xb6,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb0,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc5,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x41,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xed,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x20,0x3a,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x28,0x66,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xff,0x51,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xa4, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x72,0x6b,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf8,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xa4,0x58, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x15,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x85,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xf1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xe9, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa6,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x69,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x80,0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6, 0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7b,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa1,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x70,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xf4,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf1,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xc7,0x6e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xc9,0x6e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17, 0xcc,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x8d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa1,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xcf,0x6e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xd1, 0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x22,0x3a,0x77,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1e,0xad,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xd8,0x6e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xdb,0x6e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x14,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfb,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x59,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x98,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x70,0xbd,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x5c,0x50,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1e,0xdc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xa4,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xba,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xf0,0x51, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfc,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0xc0,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xa8,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xec,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x5, 0x32,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3f,0x4b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xd,0x32, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xce,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x49,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x85,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde, 0x93,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x70,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9e,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9d,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x96,0x1d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x4a,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x56, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xaf,0x59,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa2,0x31,0x3d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xa3,0x1d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0xe6,0x4f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x53,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xfc,0xb2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0x69,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe3,0x6f,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbe,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x74,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x77, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x97,0xbc,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x61,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x75,0x7b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xc2,0x1d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x82,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xad,0x84,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x32,0x60,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd9,0xe,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2a,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2a,0xf8,0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d,0x16,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x78,0x87, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x62,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1, 0x10,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x93,0x32,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb4,0x54,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x13,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7a, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6e,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x92,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x8d,0x33, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x84,0x16,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x56,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x32,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x94,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x3a,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x18,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa4,0xc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1d,0xe1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd3,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80, 0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xe3,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2, 0x3f,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd5,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x23, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xaa,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x42,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x26,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f, 0xeb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x8b,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xba,0x47,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x29,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x96,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x7c,0x86,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e, 0xd9,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5c,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbe,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x45,0x7c,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x4d,0x6a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5,0x2b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0x4a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb7,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xb5,0x58,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xb5,0x5b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0xd1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2f,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x51,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xea,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd,0x42,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0xad,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd0,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x66,0x99,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xa4,0x58,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b, 0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1b,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x7b,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x9b, 0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x88,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbf,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xa4,0x58,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0x79,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcd,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x66,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x4c,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf, 0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xcc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4a,0xb2,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdb,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xdb,0x68,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xbd,0x42,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xa4, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x71,0x2e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19, 0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe8,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd9,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69, 0xf3,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5d,0x1f,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbd,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xff,0x51,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x4f, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd7,0xdd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1, 0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdd,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf9,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xbd,0x42,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a, 0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xba,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0xa4,0x58,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x79,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x20,0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x79,0x33,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x77,0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7a,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0x4d,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xce,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0x2b,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x94, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4,0xb7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe, 0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x53,0xf, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x36,0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x99,0x67,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x57,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d, 0x3c,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfc,0x13,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a, 0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x2a,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xc1, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x5,0x52,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xdd,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xed,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x68,0x85,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xb2,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe, 0x50,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcd,0xdd,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc4, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbf,0x41,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19, 0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x9e,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0x3,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8e,0x72,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89, 0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x5b,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff, 0x8,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x19,0x9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0xe3,0x40,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x4a, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x10,0x1c,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96, 0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe,0x45,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe9,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb7,0x8a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x24,0x24,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd6,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x6a,0x5f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x77,0xd6,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x4d,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x7e,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x22,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x78,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe1,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe,0x16,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xae,0x6e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x69,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xa3,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd8,0xcf,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbe,0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xdd,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x50,0x2d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x92,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x41,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6,0x7e,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xee,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0x1d,0x8c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcb,0xa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d, 0xd6,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xde,0xe0,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xab,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x11, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x80,0xd5,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xea,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x81,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7b,0xdb,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf8,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x5f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x81,0x97,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a, 0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0x5e,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x59,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x97,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x78, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x12,0x1a,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xf6,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe3,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe4,0x1e,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89, 0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x3b,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x96,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18, 0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x62,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4d,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x28,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2c,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x11,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xe1,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb1,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa3,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xda,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x63,0x5e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x9e, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x10,0x2b,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb8,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaa,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x35,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xda,0xc8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89, 0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0, 0xe1,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xce,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x47,0x6,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfa,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0xbc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xa1,0xb4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x91,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xeb,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xc1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xc4,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xe9, 0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfa,0x99,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x29,0x2e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xac,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x86,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xc7,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c, 0x5b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe8,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0xf3,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x97,0x5d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9b,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xcc,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x81,0xd3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xd5,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x67, 0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbc,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18, 0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd6,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6d,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0xe6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xaf,0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x70,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0xde,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x81,0x39,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x72,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x24,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb4,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3, 0x3b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5,0xef,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xba,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xef,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc3,0x80,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x3c,0x59, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x93,0x41,0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xee,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xff,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9a,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xf9,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xee, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x50,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x35,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xee,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x37,0x83,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfd,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf9,0x4d,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x6,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xaf,0xc6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80, 0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x92,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x1,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f, 0xc7,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17,0x48,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x51,0xc8,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e, 0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x80,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xff, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd6,0x4e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x1,0xd, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x8f,0xb,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6e,0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x2,0x2a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b, 0x4,0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x18,0xe,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x61,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x53, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18, 0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x37,0x5d,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x9e,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x70,0x14,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x54,0x19,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x1e,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x1b,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7, 0xc0,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x74,0x10,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa3,0x1d,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x20,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x13, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc1,0x5a,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17, 0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x8e,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0xc3,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x60,0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89, 0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6, 0x5f,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x17,0x91,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x12,0xe9,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xd,0x2a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x1c, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0x62,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xa9,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcd,0xab,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x67,0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc2,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xcb,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5, 0xae,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x81,0xa5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaa,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xd2,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x4c, 0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0x17,0x44,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2,0xb1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x19, 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd5,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf1,0x59,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0x5c,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe1,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x16,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x21,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0, 0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1f,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9e,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xcc,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x7b, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0x17,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2e,0x8,0x57,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x8b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xd0,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xc7,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4f,0x80,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x7e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe3,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x87,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xc5,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42, 0x73,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa9,0xb6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x62,0xcb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0xbe,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xc6,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xbf, 0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0x17,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbb,0xc1,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x58,0x86,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x7d,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x80,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xc3,0x56, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xde,0x83,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x44,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xda,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x7c,0x47,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xfd,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd8,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5, 0xb7,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0xba,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x7e,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x28,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x75, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb4,0xbc,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb5,0x74,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x6, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x7d,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1b,0x0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x84,0x20,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xbb,0x56, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0xb9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf3,0x40,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfa,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x82,0x20,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xbb,0x56,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25, 0x77,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0x8f,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x93,0x81,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x45,0x11,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xbe,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x41, 0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x50,0x87,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x95,0xb8,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xce,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xb5,0x56,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa3,0x82,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb7,0x46,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf7,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x44,0x11,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xff,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x7f,0x20,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57, 0x49,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x57,0x8e,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0x43,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x4b,0x11,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x3,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8a, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x83,0x3e,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x8c,0x20,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb9,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaa,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xd,0x40, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0xf,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0xe,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x4e,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xf7,0x39,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb, 0x11,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0x15,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8d,0x8,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x48,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xb,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x2,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xf, 0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfc,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6a,0x7b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x9,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf8,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x14,0x40,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xff,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x4d,0x4f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xed,0x6,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xde,0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x46,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x11,0x40,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8c,0x5e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc, 0x12,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf5,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8d,0x47,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xca,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xff, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7f,0xf8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xce,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xfd,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x8,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6a,0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x1,0x25,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd, 0xf6,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x52,0x5,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc2,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xfc,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xf7, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x47,0xc3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x5a,0x15, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x8a,0x64,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x99,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x97,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x59,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31, 0xa1,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0x90,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0x98,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xd3,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xcf, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0xd1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xda,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc6,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xcc,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc5,0xd5,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdd,0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xba,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc8,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6, 0xca,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x27,0xda,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x7c,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xd1, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf3,0x85,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x79,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x2a,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x96,0x78,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfd,0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x6c,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x2e,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0x6,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0xce,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c, 0x28,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd0,0xd3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0x34,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x2d,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x71,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x31, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7c,0x2b,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x46,0x38,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x3, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2d,0x70,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x33,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xd0,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x26,0xd6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xdb,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa, 0xd8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x15,0xb3,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e, 0x17,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8,0xd3,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0x17,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x54, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0x45,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa0,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6d,0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x33,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x80,0x6a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x1a, 0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x60,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcf,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xa,0x68,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0xbc,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f, 0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xda,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x44,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbf,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc8,0x22,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x75,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x19,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa3,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xed,0xf2,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xde,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbe,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2,0xfc,0x4b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x43,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8c,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43, 0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9a,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xe9,0x51,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb4,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd8,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4b,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe0,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9,0x86,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa1,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf1,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe6,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x1a,0x6b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a, 0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb9,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3e,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x57,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x91,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x27,0x2e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x22,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x93,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x1a,0x6b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x21,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd8,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xbd,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9b,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3a,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x48,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1f,0x3e,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xee,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x11,0xa2,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd0,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xfc,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xa, 0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x13,0x96,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xe8,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x53,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9b,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xce,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x33,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x73,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x10,0x23, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x39,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xc3,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x80,0x41,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x40,0xa1,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x11,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xfe,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x67,0x5,0x55,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0xe,0x80,0x8e,0xa1, 0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xbe,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x32,0x60, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xae,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x8c,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x39,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf, 0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x76,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xe7,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x23,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9f,0x1e,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1, 0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x65,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xba,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80, 0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x17,0x62,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8, 0xe5,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x79,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xee,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x1c, 0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xde,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xf0,0x50, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4d,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xd7,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf5,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xe3,0x74,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7d,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x31,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa0,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x5a,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x14, 0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xde,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x14,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xee,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdc,0xa4,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x6a,0x84,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e, 0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc8,0xad,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x98,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xd4, 0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xde,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc6,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1,0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x89,0x54,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1b,0x13,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xd5,0x2b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9d,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa2,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xef,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8, 0x88,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfd,0x80,0x8e,0xa1,0xe5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xba,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x74,0x70,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xef,0x6b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xc4,0x5,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x6d,0x65,0x2c,0x0, 0x34,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x1e,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0xec,0x65,0x2c,0x0,0xc2,0x40,0x2d, 0x0,0xe9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x8b,0x65, 0x2c,0x0,0x2e,0x66,0x2c,0x0,0xa3,0x41,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xc0,0x65,0x2c,0x0,0xc1,0x65,0x2c,0x0,0x94, 0x83,0x2d,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0, 0x40,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x40,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x71,0x65,0x2c,0x0,0xbd,0x65,0x2c,0x0,0xbe,0x65,0x2c, 0x0,0x86,0x7b,0x2d,0x0,0xbb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64, 0x2c,0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0x75,0x83,0x2d,0x0,0x81,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x33, 0x66,0x2c,0x0,0x51,0x49,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x30,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x87,0x65,0x2c,0x0,0x87,0x83,0x2d,0x0, 0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x9a,0x65,0x2c, 0x0,0x2e,0x66,0x2c,0x0,0x9c,0x55,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2d,0x66,0x2c,0x0,0x93,0x66,0x2c,0x0,0xb0,0x66,0x2c,0x0,0x6c,0x83, 0x2d,0x0,0xaf,0x66,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x7a, 0x65,0x2c,0x0,0x98,0x65,0x2c,0x0,0x52,0x3c,0x2d,0x0,0x7e,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x23,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0, 0xa4,0xea,0x2c,0x0,0x22,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0xb4,0x65,0x2c,0x0,0xb5,0x65,0x2c,0x0,0xe1,0x7b,0x2d,0x0,0xb4,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65, 0x2c,0x0,0xb7,0xce,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x35,0x66,0x2c,0x0,0x7e,0x4e,0x2d,0x0,0x4f, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x12,0x64,0x2c,0x0,0x1e,0x65,0x2c,0x0, 0x1f,0x65,0x2c,0x0,0x2c,0xe0,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x64,0x2c,0x0,0x31,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xe,0x47,0x2d, 0x0,0x31,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0xa9,0x65, 0x2c,0x0,0x2c,0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1e,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0x72, 0x83,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0, 0xdb,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xdb,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2c,0x66,0x2c, 0x0,0xf0,0x82,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64, 0x2c,0x0,0xe0,0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0x90,0x73,0x2c,0x0,0xe0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0,0xa5, 0x65,0x2c,0x0,0x1f,0x49,0x2d,0x0,0xa3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xfd,0x63,0x2c,0x0,0x60,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x15,0x76,0x2d,0x0, 0x60,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa,0x63,0x2c,0x0,0xb1,0x64,0x2c, 0x0,0x31,0x66,0x2c,0x0,0x74,0x7b,0x2d,0x0,0xb1,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x9f,0x50, 0x2d,0x0,0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x13,0x65,0x2c,0x0,0xac, 0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0x63,0x7b,0x2d,0x0,0xac,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x15,0x64,0x2c,0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0, 0x2d,0xc,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c, 0x0,0x4f,0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0xea,0xc1,0x2c,0x0,0x4f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0x82,0x65,0x2c,0x0,0x34,0x66, 0x2c,0x0,0xa5,0x3e,0x2d,0x0,0x82,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33, 0x64,0x2c,0x0,0x5,0x65,0x2c,0x0,0x6,0x65,0x2c,0x0,0x79,0x47,0x2d,0x0,0x4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x43,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0, 0x38,0x66,0x2c,0x0,0xb1,0x75,0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x48,0x45,0x2d, 0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xae,0x65, 0x2c,0x0,0x2a,0x66,0x2c,0x0,0x45,0x56,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1b,0x64,0x2c,0x0,0x0,0x66,0x2c,0x0,0x26,0x66,0x2c,0x0,0xba, 0xcf,0x2c,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0, 0x83,0x65,0x2c,0x0,0x84,0x65,0x2c,0x0,0x55,0x3d,0x2d,0x0,0x82,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x33,0x66,0x2c, 0x0,0x1c,0x7b,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0x3f,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x66,0xe2,0x2c,0x0,0x3f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x2e, 0x66,0x2c,0x0,0x9e,0x44,0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0xaf,0x44,0x2d,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xa5,0x65,0x2c, 0x0,0xa6,0x65,0x2c,0x0,0x30,0xe0,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x47,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0xd2,0x65,0x2c,0x0,0xd4,0x43, 0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x16,0x64,0x2c,0x0,0xe1, 0x64,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x8f,0x46,0x2d,0x0,0xe1,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0, 0x52,0x3c,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0x18,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0x50,0x3c,0x2d,0x0,0x18,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x33,0x66, 0x2c,0x0,0x25,0xdc,0x2c,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27, 0x64,0x2c,0x0,0xa0,0x64,0x2c,0x0,0xa2,0x64,0x2c,0x0,0x5d,0x76,0x2d,0x0,0xa0, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xd3,0x65,0x2c,0x0, 0xd4,0x65,0x2c,0x0,0xf4,0x48,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x38,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0xfa,0x65,0x2c,0x0,0x14,0x45,0x2d, 0x0,0xf7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x18,0x64,0x2c,0x0,0xaa,0x65, 0x2c,0x0,0x2c,0x66,0x2c,0x0,0xcc,0xc,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x34,0x66,0x2c,0x0,0xcc, 0xd0,0x2c,0x0,0x36,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0, 0x91,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x95,0x83,0x2d,0x0,0x91,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x33,0x66,0x2c, 0x0,0x0,0x75,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x49,0x64, 0x2c,0x0,0xe2,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x95,0x1c,0x2d,0x0,0xe0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xf7,0x65,0x2c,0x0,0xf8, 0x65,0x2c,0x0,0x5e,0x76,0x2d,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2d,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x80,0x57,0x2d,0x0, 0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0xf7,0x65,0x2c, 0x0,0xf8,0x65,0x2c,0x0,0xff,0x3c,0x2d,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x87,0x65,0x2c,0x0,0x55,0xed, 0x2c,0x0,0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0x9f, 0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0x91,0x47,0x2d,0x0,0x9f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x1b,0x64,0x2c,0x0,0xef,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0, 0xe2,0x48,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a, 0x0,0x64,0x5e,0x2c,0x0,0x49,0x6d,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x64,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x37,0x66, 0x2c,0x0,0x75,0x40,0x2d,0x0,0x36,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1e, 0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x9b,0xc1,0x2c,0x0,0xb8, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3,0x64,0x2c,0x0,0xe3,0x64,0x2c,0x0, 0x32,0x66,0x2c,0x0,0x65,0xec,0x2c,0x0,0xe3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x37,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x6c,0xd,0x2d, 0x0,0xf7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x66,0x2c,0x0,0x86,0x83, 0x2d,0x0,0x87,0x83,0x2d,0x0,0x87,0x83,0x2d,0x0,0x86,0x83,0x2d,0x0,0x0,0x0, 0x0,0x0,0x1,0x41,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x49, 0x49,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0, 0x90,0x65,0x2c,0x0,0x92,0x65,0x2c,0x0,0x86,0xdd,0x2c,0x0,0x90,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xfb,0x63,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x2e,0x66,0x2c, 0x0,0xcb,0x48,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22, 0x2a,0x0,0xa6,0x64,0x2c,0x0,0x2a,0x6d,0x2c,0x0,0xfe,0x82,0x2d,0x0,0xa6,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x2a, 0x66,0x2c,0x0,0x0,0x40,0x2d,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x25,0x64,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xce,0x65,0x2c,0x0,0x72,0x83,0x2d,0x0, 0xcd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x31,0x65,0x2c, 0x0,0x38,0x66,0x2c,0x0,0x31,0x76,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3b,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xe4,0xcf, 0x2c,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0xef, 0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x29,0x48,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0, 0x7,0x48,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c, 0x0,0xc0,0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc,0x48,0x2d,0x0,0xbd,0x7e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22,0x2a,0x0,0xc4,0x5d,0x2c,0x0,0x47,0x6d, 0x2c,0x0,0x1f,0x45,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3f, 0x64,0x2c,0x0,0xf4,0x65,0x2c,0x0,0xf5,0x65,0x2c,0x0,0x7a,0xe,0x2d,0x0,0xf4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0, 0x37,0x66,0x2c,0x0,0xd6,0x75,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2f,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x81,0x3d,0x2d, 0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x9d,0x65, 0x2c,0x0,0x32,0x66,0x2c,0x0,0xb4,0x7b,0x2d,0x0,0x9d,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x48,0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0xa6, 0x4e,0x2d,0x0,0x45,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0, 0x90,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x6a,0x3f,0x2d,0x0,0x90,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xa,0x5e,0x2c,0x0,0x46,0x6d,0x2c, 0x0,0xde,0x44,0x2d,0x0,0x8,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64, 0x2c,0x0,0xe7,0x64,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x87,0x40,0x2d,0x0,0xe7,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x66,0x2c,0x0,0xd8,0x69,0x2c,0x0,0xf2, 0x69,0x2c,0x0,0x94,0xe2,0x2c,0x0,0xf1,0x69,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x38,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x9a,0x56,0x2d,0x0, 0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x18,0x64,0x2c,0x0,0x21,0x65,0x2c, 0x0,0x39,0x66,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0x20,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x48,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x7a,0x4e, 0x2d,0x0,0x48,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xef, 0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0xaa,0x7b,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3f,0x64,0x2c,0x0,0x9c,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0, 0xf4,0x48,0x2d,0x0,0x9c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0xe6,0x64,0x2c,0x0,0x3b,0x66,0x2c,0x0,0xc5,0xea,0x2c,0x0,0xe6,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0x52,0x5e,0x2c,0x0,0x4b,0x6d, 0x2c,0x0,0x7c,0x56,0x2d,0x0,0x52,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a, 0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x94, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xff,0x64,0x2c,0x0, 0x41,0x66,0x2c,0x0,0xa9,0x56,0x2d,0x0,0xff,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x1c,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x87,0x83,0x2d, 0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0,0x18,0x65, 0x2c,0x0,0x3e,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0x34, 0x44,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0, 0x81,0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0xca,0x56,0x2d,0x0,0x81,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xff,0x63,0x2c,0x0,0xae,0x65,0x2c,0x0,0x30,0x66,0x2c, 0x0,0x5c,0x48,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1b,0x64, 0x2c,0x0,0xeb,0x64,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x17,0x40,0x2d,0x0,0xeb,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa,0x63,0x2c,0x0,0xfd,0x64,0x2c,0x0,0x30, 0x66,0x2c,0x0,0xca,0x44,0x2d,0x0,0xfd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x34,0x66,0x2c,0x0,0x4c,0x70,0x2c,0x0,0x4d,0x70,0x2c,0x0,0xb3,0x3f,0x2d,0x0, 0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0x9a,0x65,0x2c, 0x0,0x31,0x66,0x2c,0x0,0x9e,0x46,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x1e,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x34,0x66,0x2c,0x0,0x7a,0x3c, 0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0x31, 0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0x3d,0x4e,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x31,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0, 0x62,0x42,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c, 0x0,0x9c,0x65,0x2c,0x0,0x9d,0x65,0x2c,0x0,0x1f,0xe,0x2d,0x0,0x9c,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x31,0x66, 0x2c,0x0,0xd4,0x52,0x2d,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x21, 0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xf8,0x3f,0x2d,0x0,0x36, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0xe1,0x64,0x2c,0x0, 0x40,0x66,0x2c,0x0,0xa8,0x3e,0x2d,0x0,0xe1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x20,0x64,0x2c,0x0,0x4,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x7c,0xc,0x2d, 0x0,0x4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0xd8,0x64, 0x2c,0x0,0x45,0x66,0x2c,0x0,0x74,0x40,0x2d,0x0,0xd8,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0x76, 0x76,0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0, 0x73,0x65,0x2c,0x0,0x75,0x65,0x2c,0x0,0xa,0x57,0x2d,0x0,0x72,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x59,0x65,0x2c,0x0,0x36,0x66,0x2c, 0x0,0xd,0x46,0x2d,0x0,0x59,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64, 0x2c,0x0,0x86,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x86,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xd2,0x65,0x2c,0x0,0x31, 0x66,0x2c,0x0,0xb,0x47,0x2d,0x0,0xd2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2f,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x0,0xeb,0x2c,0x0, 0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x7c,0x65,0x2c, 0x0,0x35,0x66,0x2c,0x0,0x7d,0x45,0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x36,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0xfc,0x3e, 0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xa9, 0x65,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x3,0x49,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x96,0x65,0x2c,0x0, 0xa7,0x46,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a, 0x0,0x89,0x5e,0x2c,0x0,0x46,0x6d,0x2c,0x0,0x89,0x7b,0x2d,0x0,0x89,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x36,0x66, 0x2c,0x0,0xc7,0x75,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8, 0x22,0x2a,0x0,0x95,0x5e,0x2c,0x0,0x39,0x6d,0x2c,0x0,0xa0,0xd,0x2d,0x0,0x93, 0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x48,0x64,0x2c,0x0,0x8c,0x65,0x2c,0x0, 0x8d,0x65,0x2c,0x0,0x6d,0xd5,0x2c,0x0,0x8c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2c,0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xbd,0x56,0x2d, 0x0,0x78,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x68,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0xf6,0x55,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0x1a,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x29, 0xc,0x2d,0x0,0x1a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0, 0x9a,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x87,0xd1,0x2c,0x0,0x9a,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0xfa,0x64,0x2c,0x0,0x3f,0x66,0x2c, 0x0,0x2a,0x7c,0x2d,0x0,0xfa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64, 0x2c,0x0,0x59,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xef,0x82,0x2d,0x0,0x59,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x34, 0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x78,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x35,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x2a,0x54,0x2d,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0x62,0x65,0x2c, 0x0,0x64,0x65,0x2c,0x0,0x95,0x83,0x2d,0x0,0x62,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0xbe,0x65,0x2c,0x0,0x5d,0xeb, 0x2c,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xf0, 0x64,0x2c,0x0,0x43,0x66,0x2c,0x0,0x92,0x4e,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0xfa,0x64,0x2c,0x0,0x41,0x66,0x2c,0x0, 0x0,0x83,0x2d,0x0,0xfa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x64,0x2c, 0x0,0x72,0x65,0x2c,0x0,0x35,0x66,0x2c,0x0,0xc,0x55,0x2d,0x0,0x72,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd3,0x5d,0x2c,0x0,0x1c,0x68, 0x2c,0x0,0xcc,0x43,0x2d,0x0,0xd3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x46, 0x65,0x2c,0x0,0xe4,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xab,0x7b,0x2d,0x0,0xe4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0, 0xfb,0x67,0x2c,0x0,0x87,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xde,0x64,0x2c,0x0,0x79,0x65,0x2c,0x0,0x3b,0x67,0x2c,0x0,0xb0,0xe2,0x2c, 0x0,0x79,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xb7,0x5d, 0x2c,0x0,0x7a,0x66,0x2c,0x0,0x94,0x51,0x2d,0x0,0xb7,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x65,0x2c,0x0,0xc5,0x65,0x2c,0x0,0x56,0x66,0x2c,0x0,0x6b, 0xec,0x2c,0x0,0xc4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0, 0x8b,0x5d,0x2c,0x0,0x22,0x69,0x2c,0x0,0x4c,0x48,0x2d,0x0,0x8b,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xa3,0x5d,0x2c,0x0,0x1f,0x68,0x2c, 0x0,0xe1,0xe,0x2d,0x0,0xa3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64, 0x2c,0x0,0x9f,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x9f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x50,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x30, 0x66,0x2c,0x0,0xc2,0x57,0x2d,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x42,0x65,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x8b,0x83,0x2d,0x0, 0xdf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0x5c,0x5d,0x2c, 0x0,0x3c,0x6d,0x2c,0x0,0x4b,0x3c,0x2d,0x0,0x5c,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb3,0x22,0x2a,0x0,0xb4,0x5d,0x2c,0x0,0x9,0x68,0x2c,0x0,0x7b,0xdd, 0x2c,0x0,0xb2,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x12, 0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x6d,0x7b,0x2d,0x0,0x12,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0x4a,0x5e,0x2c,0x0,0x75,0x66,0x2c,0x0, 0xf,0x3f,0x2d,0x0,0x4a,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c, 0x0,0x95,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x6,0x55,0x2d,0x0,0x95,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xee,0x65,0x2c,0x0,0x28,0x66, 0x2c,0x0,0x37,0xc4,0x2c,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37, 0x64,0x2c,0x0,0xdc,0x65,0x2c,0x0,0xdd,0x65,0x2c,0x0,0xe0,0x3e,0x2d,0x0,0xdb, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0xfa,0x64,0x2c,0x0, 0xfb,0x64,0x2c,0x0,0x14,0x57,0x2d,0x0,0xfa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe8,0x64,0x2c,0x0,0x87,0x65,0x2c,0x0,0x38,0x67,0x2c,0x0,0x88,0x76,0x2d, 0x0,0x87,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xf0,0x65, 0x2c,0x0,0xf1,0x65,0x2c,0x0,0x61,0xec,0x2c,0x0,0xef,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0xfb,0x65,0x2c,0x0,0x20, 0x7b,0x2d,0x0,0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x65,0x2c,0x0, 0xf4,0x65,0x2c,0x0,0x49,0x66,0x2c,0x0,0xc3,0x3e,0x2d,0x0,0xf4,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x4,0x70,0x2c,0x0,0x9,0x70,0x2c, 0x0,0xf5,0x44,0x2d,0x0,0x5,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x49,0x64, 0x2c,0x0,0x31,0x65,0x2c,0x0,0x42,0x66,0x2c,0x0,0xe4,0x7b,0x2d,0x0,0x31,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x31, 0x66,0x2c,0x0,0x31,0x53,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xaf,0x22,0x2a,0x0,0xbf,0x5d,0x2c,0x0,0x21,0x69,0x2c,0x0,0xb2,0xd4,0x2c,0x0, 0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x22,0x2a,0x0,0x87,0x5e,0x2c, 0x0,0x88,0x5e,0x2c,0x0,0xc3,0xe8,0x27,0x0,0x85,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x30,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0x93,0x1c, 0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4e,0x64,0x2c,0x0,0x4f, 0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0xe3,0xea,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0, 0xf0,0x82,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a, 0x0,0xec,0x5d,0x2c,0x0,0x1d,0x68,0x2c,0x0,0x2a,0x49,0x2d,0x0,0xec,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x2e,0x66, 0x2c,0x0,0x22,0x49,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x40, 0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x69,0x45,0x2d,0x0,0x9f, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x40,0x64,0x2c,0x0,0x94,0x65,0x2c,0x0, 0x95,0x65,0x2c,0x0,0xd1,0xc,0x2d,0x0,0x94,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x55,0x65,0x2c,0x0,0xf2,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x94,0x49,0x2d, 0x0,0xf2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x66,0x2c,0x0,0x91,0x83, 0x2d,0x0,0x92,0x83,0x2d,0x0,0x92,0x83,0x2d,0x0,0x91,0x83,0x2d,0x0,0x0,0x0, 0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0xce,0x5d,0x2c,0x0,0xfc,0x67,0x2c,0x0,0x21, 0xc1,0x2c,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0, 0x7d,0x5e,0x2c,0x0,0x3e,0x6d,0x2c,0x0,0x49,0x47,0x2d,0x0,0x7c,0x5e,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2c,0x66,0x2c,0x0,0x3c,0x70,0x2c,0x0,0x3d,0x70,0x2c, 0x0,0x29,0x54,0x2d,0x0,0x3c,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64, 0x2c,0x0,0x95,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0xb6,0x41,0x2d,0x0,0x95,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xa7,0x5d,0x2c,0x0,0x7f, 0x66,0x2c,0x0,0x1b,0xec,0x2c,0x0,0xa7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2a,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x8d,0x65,0x2c,0x0,0x12,0xe,0x2d,0x0, 0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x8b,0x65,0x2c, 0x0,0x34,0x66,0x2c,0x0,0x93,0x49,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x4c,0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xd7,0x75, 0x2d,0x0,0xc2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xaf, 0x5d,0x2c,0x0,0x3d,0x6d,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xaf,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0, 0x8a,0xd2,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a, 0x0,0xdd,0x5d,0x2c,0x0,0x3f,0x6d,0x2c,0x0,0xe5,0x46,0x2d,0x0,0xdd,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xf6,0x63,0x2c,0x0,0xaa,0x64,0x2c,0x0,0x2d,0x66, 0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xaa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32, 0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0xd7,0x65,0x2c,0x0,0xcd,0x43,0x2d,0x0,0xd6, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xef,0x65,0x2c,0x0, 0xf0,0x65,0x2c,0x0,0xcf,0x40,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0xd7,0x65,0x2c,0x0,0x1c,0x7b,0x2d, 0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x64,0x2c,0x0,0xbd,0x65, 0x2c,0x0,0x36,0x67,0x2c,0x0,0x0,0x47,0x2d,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x50,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x76, 0xd6,0x2c,0x0,0x50,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0, 0xaa,0x5d,0x2c,0x0,0x29,0x69,0x2c,0x0,0x2d,0x49,0x2d,0x0,0xaa,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2d,0x65,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x4b,0x66,0x2c, 0x0,0x5e,0x47,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xad,0x5d,0x2c,0x0,0x2a,0x68,0x2c,0x0,0x41,0xd,0x2d,0x0,0xad,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x66,0x2c,0x0,0xbe,0x7e,0x2c,0x0,0xbf, 0x7e,0x2c,0x0,0x8a,0x76,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb1,0x22,0x2a,0x0,0xad,0x5d,0x2c,0x0,0x7c,0x66,0x2c,0x0,0x38,0x76,0x2d,0x0, 0xad,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xb6,0x5d,0x2c, 0x0,0xfe,0x67,0x2c,0x0,0x10,0x44,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3b,0x66,0x2c,0x0,0x8d,0x83,0x2d,0x0,0x94,0x83,0x2d,0x0,0x94,0x83, 0x2d,0x0,0x8b,0x83,0x2d,0x0,0x0,0x0,0x0,0x0,0x1,0x41,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0x3,0x46,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x8e,0x37,0x28,0x0,0xa0,0x37,0x28,0x0,0xa2,0x37,0x28,0x0, 0xd0,0x9d,0x26,0x0,0x1,0x3d,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a, 0x0,0xad,0x5e,0x2c,0x0,0x48,0x6d,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0xab,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x3c,0x65,0x2c,0x0,0x36,0x66, 0x2c,0x0,0x9b,0x54,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37, 0x64,0x2c,0x0,0x77,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xe3,0x7b,0x2d,0x0,0x77, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0, 0x8c,0x65,0x2c,0x0,0x46,0x46,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x48,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0xd7,0x45,0x2d, 0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xe1,0x65, 0x2c,0x0,0x29,0x66,0x2c,0x0,0xec,0x48,0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0x77,0x5e,0x2c,0x0,0x4f,0x6d,0x2c,0x0,0xd3, 0x7b,0x2d,0x0,0x75,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0, 0x54,0x65,0x2c,0x0,0x55,0x65,0x2c,0x0,0xa2,0x55,0x2d,0x0,0x54,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x29,0x66,0x2c, 0x0,0x14,0x83,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x21, 0x2a,0x0,0x4,0x65,0x2c,0x0,0x5,0x65,0x2c,0x0,0xf5,0xef,0x1e,0x0,0x2,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0xec, 0x65,0x2c,0x0,0x94,0x83,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3b,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0xf3,0x3d,0x2d,0x0, 0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x7e,0x65,0x2c, 0x0,0x30,0x66,0x2c,0x0,0x73,0x56,0x2d,0x0,0x7e,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2b,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0xb5,0x65,0x2c,0x0,0x92,0x83, 0x2d,0x0,0xb2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0x8e, 0x5d,0x2c,0x0,0x20,0x69,0x2c,0x0,0xa1,0x47,0x2d,0x0,0x8e,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2b,0x66,0x2c,0x0,0x8f,0x70,0x2c,0x0,0x95,0x70,0x2c,0x0, 0x87,0x83,0x2d,0x0,0x8e,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a, 0x0,0xad,0x5d,0x2c,0x0,0x4a,0x6d,0x2c,0x0,0x9d,0x7b,0x2d,0x0,0xad,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x65,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x4a,0x66, 0x2c,0x0,0x10,0x18,0x2d,0x0,0xcb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f, 0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x52,0x45,0x2d,0x0,0xa4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x60,0x65,0x2c,0x0, 0x61,0x65,0x2c,0x0,0xbe,0xd6,0x2c,0x0,0x60,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2e,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x86,0x83,0x2d, 0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xf5,0x5d, 0x2c,0x0,0x10,0x68,0x2c,0x0,0x2d,0x57,0x2d,0x0,0xf5,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x79, 0x46,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0, 0xbb,0x65,0x2c,0x0,0xbc,0x65,0x2c,0x0,0xf3,0x82,0x2d,0x0,0xbb,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x32,0x5e,0x2c,0x0,0x45,0x6d,0x2c, 0x0,0x30,0x77,0x2d,0x0,0x32,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0xa3,0x57,0x2d,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x97, 0x65,0x2c,0x0,0xb4,0x7b,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x49,0x65,0x2c,0x0,0xef,0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0xc9,0xe2,0x2c,0x0, 0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0x9a,0x5d,0x2c, 0x0,0x7d,0x66,0x2c,0x0,0xa7,0x55,0x2d,0x0,0x9a,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x24,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x94,0x83, 0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x54, 0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x91,0xd4,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xd7,0x65,0x2c,0x0,0xd8,0x65,0x2c,0x0, 0x94,0x83,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a, 0x0,0xd3,0x5d,0x2c,0x0,0xfc,0x67,0x2c,0x0,0x5,0xed,0x2c,0x0,0xd3,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x3d,0x66, 0x2c,0x0,0x30,0x56,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36, 0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0,0xaf,0x76,0x2d,0x0,0xb2, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0x52,0x5e,0x2c,0x0, 0x4f,0x6d,0x2c,0x0,0x4,0x47,0x2d,0x0,0x52,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xbf,0xd0,0x2c, 0x0,0xcb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0x69,0x5d, 0x2c,0x0,0x4a,0x6d,0x2c,0x0,0x86,0x83,0x2d,0x0,0x69,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x2b,0x66,0x2c,0x0,0x7, 0xdf,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0, 0xe1,0x64,0x2c,0x0,0xe2,0x64,0x2c,0x0,0x8,0xe0,0x2c,0x0,0xe1,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x36,0x66,0x2c,0x0,0xd,0x6d,0x2c,0x0,0x31,0x6d,0x2c, 0x0,0x59,0xd,0x2d,0x0,0x30,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0xf5,0x64,0x2c,0x0,0x39,0x66,0x2c,0x0,0x10,0xec,0x2c,0x0,0xf3,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf5,0x63,0x2c,0x0,0xcd,0x64,0x2c,0x0,0x2c, 0x66,0x2c,0x0,0xcf,0x47,0x2d,0x0,0xcd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2f,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x75,0xc6,0x2c,0x0, 0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xcc,0x65,0x2c, 0x0,0x24,0x66,0x2c,0x0,0x4d,0x56,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe4,0x56,0x2a,0x0,0xe3,0x5e,0x2c,0x0,0xe4,0x5e,0x2c,0x0,0xb4,0xee, 0x2c,0x0,0xe0,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xe0, 0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xef,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0x34,0x67,0x2c,0x0, 0x91,0x83,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c, 0x0,0x9f,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xa1,0x48,0x2d,0x0,0x9f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0x4,0x65,0x2c,0x0,0x5,0x65, 0x2c,0x0,0x1d,0xeb,0x2c,0x0,0x4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d, 0x65,0x2c,0x0,0xdc,0x65,0x2c,0x0,0x3,0x66,0x2c,0x0,0x7f,0x52,0x2d,0x0,0xdb, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0, 0x3e,0x66,0x2c,0x0,0x4e,0x45,0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x32,0x64,0x2c,0x0,0xd7,0x65,0x2c,0x0,0x25,0x66,0x2c,0x0,0x10,0x46,0x2d, 0x0,0xd7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xcc,0x65, 0x2c,0x0,0xcd,0x65,0x2c,0x0,0x98,0x40,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x11, 0x3e,0x2d,0x0,0xb2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x66,0x2c,0x0, 0xbe,0x7e,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xce,0xc,0x2d,0x0,0xbd,0x7e,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0xb9,0x65,0x2c,0x0,0x36,0x66,0x2c, 0x0,0xa6,0x46,0x2d,0x0,0xb9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64, 0x2c,0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0x6a,0x56,0x2d,0x0,0x81,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0xbe, 0x65,0x2c,0x0,0x78,0x3c,0x2d,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb7,0xc9,0x26,0x0,0xad,0x23,0x27,0x0,0xaf,0x23,0x27,0x0,0x7,0xec,0x28,0x0, 0xf,0xec,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xa4,0x65,0x2c, 0x0,0x2b,0x66,0x2c,0x0,0x12,0x40,0x2d,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xaf,0x22,0x2a,0x0,0xec,0x5d,0x2c,0x0,0x21,0x69,0x2c,0x0,0x79,0x41, 0x2d,0x0,0xec,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0x9f, 0x65,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x7d,0xec,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0, 0x6,0xd4,0x2c,0x0,0x78,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64,0x2c, 0x0,0x9a,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x9a,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x91,0x65,0x2c,0x0,0x92,0x65, 0x2c,0x0,0x86,0x83,0x2d,0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x78,0x3c,0x2d,0x0,0x8f, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0x96,0x65,0x2c,0x0, 0x97,0x65,0x2c,0x0,0x43,0xe0,0x2c,0x0,0x96,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x21,0x64,0x2c,0x0,0x34,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xbf,0x48,0x2d, 0x0,0x34,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x94,0x65, 0x2c,0x0,0x28,0x66,0x2c,0x0,0xe9,0x3e,0x2d,0x0,0x92,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x56,0x65,0x2c,0x0,0x5, 0x83,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0, 0xaa,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0xaa,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xd2,0x5e,0x2c,0x0,0x3e,0x6d,0x2c, 0x0,0xd1,0xc,0x2d,0x0,0xd1,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64, 0x2c,0x0,0x9f,0x65,0x2c,0x0,0xa0,0x65,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x9f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0xd2, 0x65,0x2c,0x0,0xe8,0xdf,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x32,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x3a,0x66,0x2c,0x0,0xa1,0xe0,0x2c,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xea,0x65,0x2c, 0x0,0xec,0x65,0x2c,0x0,0xff,0x55,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2c,0x64,0x2c,0x0,0x18,0x65,0x2c,0x0,0x43,0x66,0x2c,0x0,0x7c,0x45, 0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x43,0x65,0x2c,0x0,0xe0, 0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x7d,0xe0,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd3,0x5d,0x2c,0x0,0x13,0x68,0x2c,0x0, 0x94,0x83,0x2d,0x0,0xd3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a, 0x0,0xb2,0x5d,0x2c,0x0,0xfb,0x67,0x2c,0x0,0xa2,0x47,0x2d,0x0,0xb2,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x8a,0x66, 0x2c,0x0,0xbd,0x40,0x2d,0x0,0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9, 0x64,0x2c,0x0,0x83,0x65,0x2c,0x0,0x3a,0x67,0x2c,0x0,0x67,0xc9,0x2c,0x0,0x83, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x65,0x2c,0x0,0xd2,0x65,0x2c,0x0, 0x4a,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0xcf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xaf,0x22,0x2a,0x0,0xa2,0x5d,0x2c,0x0,0x1f,0x69,0x2c,0x0,0xdb,0x3e,0x2d, 0x0,0xa1,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xd0,0x5d, 0x2c,0x0,0x10,0x68,0x2c,0x0,0xc5,0x3d,0x2d,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x16,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xe8, 0x44,0x2d,0x0,0xaf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x64,0x2c,0x0, 0x7b,0x65,0x2c,0x0,0x44,0x67,0x2c,0x0,0x15,0x47,0x2d,0x0,0x7b,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0x7e,0x5e,0x2c,0x0,0xfb,0x67,0x2c, 0x0,0xc6,0x47,0x2d,0x0,0x7c,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22, 0x2a,0x0,0x26,0x5e,0x2c,0x0,0x79,0x66,0x2c,0x0,0x11,0x18,0x2d,0x0,0x25,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x65,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x4a, 0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb0,0x22,0x2a,0x0,0xad,0x5d,0x2c,0x0,0x2d,0x69,0x2c,0x0,0xe1,0x43,0x2d,0x0, 0xad,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xa8,0x5d,0x2c, 0x0,0xdb,0x67,0x2c,0x0,0x77,0x76,0x2d,0x0,0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xf7,0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0xea,0x48, 0x2d,0x0,0xc2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0x46, 0x5e,0x2c,0x0,0x0,0x68,0x2c,0x0,0x61,0x83,0x2d,0x0,0x45,0x5e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3d,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0, 0x92,0x56,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x64,0x2c, 0x0,0xbf,0x65,0x2c,0x0,0x37,0x67,0x2c,0x0,0xcd,0xc6,0x2c,0x0,0xbf,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0x83,0x5d,0x2c,0x0,0x7b,0x66, 0x2c,0x0,0x7,0x83,0x2d,0x0,0x83,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x52,0x3c,0x2d,0x0,0xbd, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x86,0x65,0x2c,0x0, 0x3c,0x66,0x2c,0x0,0xef,0x82,0x2d,0x0,0x86,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x31,0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x1a,0x83,0x2d, 0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0x4f,0x65, 0x2c,0x0,0x3e,0x66,0x2c,0x0,0xb3,0xc7,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x36,0x65,0x2c,0x0,0xd7,0x65,0x2c,0x0,0x51,0x66,0x2c,0x0,0xad, 0x7b,0x2d,0x0,0xd7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0, 0x54,0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0x85,0x7b,0x2d,0x0,0x54,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x3e,0x66,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc2,0x7e,0x2c, 0x0,0x8b,0x83,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xc8,0x64,0x2c,0x0,0xf3,0x68,0x2c,0x0,0x2,0x3f,0x2d,0x0,0xc8,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xfe,0x65,0x2c,0x0,0xff, 0x65,0x2c,0x0,0x91,0x83,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x69,0x22,0x2a,0x0,0x89,0x5e,0x2c,0x0,0xb6,0x16,0x2d,0x0,0xa8,0x3f,0x2d,0x0, 0xe,0x6,0x2d,0x0,0x0,0x0,0x0,0x0,0x1,0xd,0x5d,0x26,0x0,0xe7,0xe9,0x27, 0x0,0x38,0xea,0x27,0x0,0xfa,0xea,0x28,0x0,0xfe,0xea,0x28,0x0,0x0,0x0,0x0, 0x0,0x1,0x3d,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xf0,0x44, 0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x45, 0x65,0x2c,0x0,0x41,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0x45,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0, 0x91,0x83,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c, 0x0,0xb1,0x65,0x2c,0x0,0xb2,0x65,0x2c,0x0,0x1,0x77,0x2d,0x0,0xb1,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0x18,0x5f,0x2c,0x0,0x12,0x68, 0x2c,0x0,0x5f,0xe,0x2d,0x0,0x17,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x47, 0x65,0x2c,0x0,0xe5,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x27,0x44,0x2d,0x0,0xe4, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0, 0xc8,0x65,0x2c,0x0,0x85,0x46,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xfd,0x63,0x2c,0x0,0xcd,0x64,0x2c,0x0,0x36,0x66,0x2c,0x0,0x2c,0x54,0x2d, 0x0,0xcd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xd,0x5e, 0x2c,0x0,0xfe,0x67,0x2c,0x0,0x71,0x83,0x2d,0x0,0xd,0x5e,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0xec,0x65,0x2c,0x0,0xf1, 0x82,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0, 0x68,0x65,0x2c,0x0,0x69,0x65,0x2c,0x0,0x79,0x56,0x2d,0x0,0x68,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0xdc,0x65,0x2c, 0x0,0xf0,0x82,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64, 0x2c,0x0,0xe5,0x65,0x2c,0x0,0xe6,0x65,0x2c,0x0,0x91,0x83,0x2d,0x0,0xe5,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0x7e, 0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3b,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xb3,0x65,0x2c, 0x0,0xb4,0x65,0x2c,0x0,0xd6,0x3f,0x2d,0x0,0xb2,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x33,0x64,0x2c,0x0,0x91,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xc7,0x47, 0x2d,0x0,0x91,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x64,0x2c,0x0,0xb5, 0x65,0x2c,0x0,0x35,0x67,0x2c,0x0,0x1c,0x3e,0x2d,0x0,0xb5,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x35,0x65,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x63,0x66,0x2c,0x0, 0x5,0xc4,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c, 0x0,0x3c,0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0xdc,0x56,0x2d,0x0,0x3b,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x1e,0x69, 0x2c,0x0,0xcf,0x45,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a, 0x64,0x2c,0x0,0xe7,0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0xda,0xdf,0x2c,0x0,0xe5, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xec,0x5d,0x2c,0x0, 0xe,0x68,0x2c,0x0,0xf8,0xc5,0x2c,0x0,0xec,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x27,0x66,0x2c,0x0,0x4a,0x70,0x2c,0x0,0x4b,0x70,0x2c,0x0,0x8e,0xea,0x2c, 0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfc,0x63,0x2c,0x0,0x4f,0x65, 0x2c,0x0,0x29,0x66,0x2c,0x0,0xc5,0x56,0x2d,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xdb,0x64,0x2c,0x0,0x75,0x65,0x2c,0x0,0x39,0x67,0x2c,0x0,0xca, 0x3d,0x2d,0x0,0x74,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3c,0x66,0x2c,0x0, 0xe,0x6a,0x2c,0x0,0x1c,0x6a,0x2c,0x0,0x46,0x41,0x2d,0x0,0x1b,0x6a,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x2f,0x66,0x2c, 0x0,0x6b,0x46,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22, 0x2a,0x0,0xa8,0x5e,0x2c,0x0,0x72,0x66,0x2c,0x0,0x88,0xd6,0x2c,0x0,0xa8,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xe4,0x64,0x2c,0x0,0x3d, 0x66,0x2c,0x0,0x35,0xd5,0x2c,0x0,0xe4,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb4,0x22,0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x1,0x68,0x2c,0x0,0x48,0x44,0x2d,0x0, 0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0x95,0x5d,0x2c, 0x0,0x22,0x69,0x2c,0x0,0x67,0x83,0x2d,0x0,0x95,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2a,0x64,0x2c,0x0,0xdc,0x64,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x2c,0x46, 0x2d,0x0,0xdc,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x48,0x66,0x2c,0x0,0x60, 0x6c,0x2c,0x0,0x74,0x6c,0x2c,0x0,0x7d,0xea,0x2c,0x0,0x73,0x6c,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0, 0x2d,0xdc,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a, 0x0,0xc1,0x5e,0x2c,0x0,0x1,0x68,0x2c,0x0,0x5a,0xea,0x2c,0x0,0xc1,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x5a,0x65,0x2c,0x0,0xf4,0x65,0x2c,0x0,0x28,0x66, 0x2c,0x0,0xb8,0x56,0x2d,0x0,0xf2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x86,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x81,0x83,0x2d,0x0,0x86, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xd7,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0, 0x45,0x67,0x2c,0x0,0x77,0x83,0x2d,0x0,0x71,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe3,0x22,0x2a,0x0,0xb1,0x5e,0x2c,0x0,0x48,0x6d,0x2c,0x0,0x76,0xc7,0x2c, 0x0,0xaf,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xda,0x5d, 0x2c,0x0,0x89,0x66,0x2c,0x0,0xd0,0x44,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xb5,0x22,0x2a,0x0,0xd1,0x5d,0x2c,0x0,0xb,0x68,0x2c,0x0,0x55, 0xdf,0x2c,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0, 0xd3,0x5d,0x2c,0x0,0x1d,0x69,0x2c,0x0,0xbe,0x47,0x2d,0x0,0xd3,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c,0x0,0x8c,0x64,0x2c,0x0,0x23,0x66,0x2c, 0x0,0x66,0x83,0x2d,0x0,0x8c,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64, 0x2c,0x0,0x85,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x24,0x1c,0x2d,0x0,0x85,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xaf,0x64,0x2c,0x0,0x1f, 0x66,0x2c,0x0,0x56,0xed,0x2c,0x0,0xaf,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe3,0x63,0x2c,0x0,0x64,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0,0x7b,0x45,0x2d,0x0, 0x64,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xa0,0x64,0x2c, 0x0,0x20,0x66,0x2c,0x0,0xe1,0x46,0x2d,0x0,0xa0,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xef,0x64,0x2c,0x0,0xdd,0x65,0x2c,0x0,0x50,0x66,0x2c,0x0,0x39,0xcf, 0x2c,0x0,0xdd,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xdb, 0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x1a,0xe0,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb,0x68,0x2c,0x0,0xd0,0xc,0x2d,0x0,0xd1,0xc,0x2d,0x0, 0x52,0x3c,0x2d,0x0,0xce,0xc,0x2d,0x0,0x0,0x0,0x0,0x0,0x1,0x42,0x29,0x2a, 0x0,0xa0,0x5e,0x2c,0x0,0xa1,0x5e,0x2c,0x0,0xa1,0x5e,0x2c,0x0,0xbf,0x5e,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x4a,0x29,0x2a,0x0,0xe2,0x5e,0x2c,0x0,0xe3,0x5e, 0x2c,0x0,0xe3,0x5e,0x2c,0x0,0xff,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x53, 0x29,0x2a,0x0,0xdc,0x5e,0x2c,0x0,0xdd,0x5e,0x2c,0x0,0xde,0x5e,0x2c,0x0,0xe6, 0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0, 0x35,0x66,0x2c,0x0,0x86,0x48,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0xea,0x46,0x2d, 0x0,0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5a,0x29,0x2a,0x0,0x10,0x5f, 0x2c,0x0,0x11,0x5f,0x2c,0x0,0x11,0x5f,0x2c,0x0,0x1d,0x5f,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0xf9, 0x46,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5e,0x29,0x2a,0x0, 0x8,0x60,0x2c,0x0,0x9,0x60,0x2c,0x0,0xd0,0xed,0x2c,0x0,0x8,0x60,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0xce,0x65,0x2c, 0x0,0xf,0xdf,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64, 0x2c,0x0,0xc1,0x65,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x6c,0x83,0x2d,0x0,0xc0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x32, 0x66,0x2c,0x0,0x8a,0x4e,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x6d,0x29,0x2a,0x0,0x3a,0x5f,0x2c,0x0,0x3b,0x5f,0x2c,0x0,0x3b,0x5f,0x2c,0x0, 0x43,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7e,0x29,0x2a,0x0,0x27,0x5f,0x2c, 0x0,0x28,0x5f,0x2c,0x0,0x28,0x5f,0x2c,0x0,0x3d,0x5f,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x64,0x2c,0x0,0xe1,0x64,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x64,0x3e, 0x2d,0x0,0xe1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xda, 0x64,0x2c,0x0,0x29,0x6d,0x2c,0x0,0x5e,0x3e,0x2d,0x0,0xda,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x88,0x29,0x2a,0x0,0x13,0x5f,0x2c,0x0,0x14,0x5f,0x2c,0x0, 0x9,0xee,0x2c,0x0,0x13,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a, 0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xfb,0x6d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x8e,0x29,0x2a,0x0,0x49,0x5f,0x2c,0x0,0x4a,0x5f, 0x2c,0x0,0x3,0xf0,0x2c,0x0,0x48,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0x36, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x93,0x29,0x2a,0x0,0x13,0x5f,0x2c,0x0, 0x14,0x5f,0x2c,0x0,0x61,0xef,0x2c,0x0,0x13,0x5f,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x38,0x64,0x2c,0x0,0x5e,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x78,0x56,0x2d, 0x0,0x5e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x7b,0x65, 0x2c,0x0,0x31,0x66,0x2c,0x0,0xd9,0xe9,0x2c,0x0,0x7b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x67,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x9e,0x29,0x2a,0x0,0xb2, 0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0, 0xa4,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xa4,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x22,0x65,0x2c,0x0,0x40,0x66,0x2c, 0x0,0x4d,0x46,0x2d,0x0,0x22,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64, 0x2c,0x0,0xd1,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x51,0xe0,0x2c,0x0,0xd1,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xa5, 0x29,0x2a,0x0,0x8a,0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x66,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xab,0x29,0x2a,0x0,0x2c,0xf0,0x2c,0x0, 0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0x98,0x65,0x2c, 0x0,0x99,0x65,0x2c,0x0,0x7a,0x3c,0x2d,0x0,0x97,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x68,0x41, 0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64,0x2c,0x0,0x62, 0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0xf9,0x47,0x2d,0x0,0x62,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xb3,0x29,0x2a,0x0, 0xf5,0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a, 0x0,0x42,0x1f,0x2a,0x0,0xb7,0x29,0x2a,0x0,0x1,0xed,0x2c,0x0,0xa,0x29,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x68,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xc0,0x29, 0x2a,0x0,0xe5,0xef,0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x34, 0x64,0x2c,0x0,0xe8,0x6f,0x2c,0x0,0xf5,0x6f,0x2c,0x0,0xf7,0x6f,0x2c,0x0,0xe9, 0x6f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a,0x0,0x9e,0x64,0x2c,0x0, 0x30,0x6d,0x2c,0x0,0x94,0x83,0x2d,0x0,0x9e,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2a,0x66,0x2c,0x0,0x2a,0x70,0x2c,0x0,0x30,0x70,0x2c,0x0,0xd,0x48,0x2d, 0x0,0x2b,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x66,0x2c,0x0,0x38,0x67, 0x2c,0x0,0x58,0x67,0x2c,0x0,0x16,0x51,0x2d,0x0,0x57,0x67,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xf5,0x22,0x2a,0x0,0xaa,0x64,0x2c,0x0,0xaa,0x66,0x2c,0x0,0x8, 0x3d,0x2d,0x0,0xaa,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc6,0x29,0x2a,0x0, 0xd9,0x63,0x2c,0x0,0xda,0x63,0x2c,0x0,0xb7,0xee,0x2c,0x0,0xd7,0x63,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x2e,0x66,0x2c, 0x0,0xd1,0xdd,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x29, 0x2a,0x0,0x63,0x5e,0x2c,0x0,0x64,0x5e,0x2c,0x0,0xc2,0xef,0x2c,0x0,0x60,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x29, 0x66,0x2c,0x0,0xb3,0x75,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x36,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x43,0x66,0x2c,0x0,0x33,0xdf,0x2c,0x0, 0x12,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xd3,0x29,0x2a,0x0,0x58,0x5e,0x2c, 0x0,0x59,0x5e,0x2c,0x0,0xd,0xee,0x2c,0x0,0x56,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xd7,0x29,0x2a,0x0,0x42,0xee, 0x2c,0x0,0xa,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xec,0x22,0x2a,0x0,0x9a, 0x65,0x2c,0x0,0xa8,0x66,0x2c,0x0,0x32,0xd5,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xa0,0x64,0x2c,0x0,0x24,0x66,0x2c,0x0, 0xf7,0xd2,0x2c,0x0,0xa0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c, 0x0,0xd6,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x68,0x7b,0x2d,0x0,0xd6,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x7a,0x65,0x2c,0x0,0xa0,0x65, 0x2c,0x0,0xed,0x48,0x2d,0x0,0x7e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb, 0x56,0x2a,0x0,0x1c,0x5e,0x2c,0x0,0x1d,0x5e,0x2c,0x0,0x23,0xe8,0x2c,0x0,0x1b, 0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0, 0x29,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x31,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0,0xb2,0xd4,0x2c, 0x0,0xab,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf3,0x56,0x2a,0x0,0x1c,0x5e, 0x2c,0x0,0x1d,0x5e,0x2c,0x0,0xca,0xeb,0x2c,0x0,0x1b,0x5e,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x4b,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x7c, 0x3c,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x19,0x2a,0x0, 0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0xe1,0xef,0x2c,0x0,0xb4,0x56,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a, 0x0,0xff,0xed,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0xa9,0x65,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x17,0x51,0x2d,0x0,0xa9,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x21, 0x57,0x2a,0x0,0xfb,0xee,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x21,0x57,0x2a,0x0,0xd2,0xe1,0x2a,0x0,0xd4,0xe1,0x2a,0x0,0x16,0xee,0x2c,0x0, 0xd2,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xfc,0x6d,0x2c, 0x0,0xfd,0x6d,0x2c,0x0,0x48,0xd,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x38,0x64,0x2c,0x0,0xf2,0x65,0x2c,0x0,0xf3,0x65,0x2c,0x0,0x1c,0x45, 0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42, 0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0xee,0xd3,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0xf5,0x22,0x2a,0x0,0xfe,0x6d,0x2c,0x0,0xff,0x6d,0x2c,0x0, 0x87,0x83,0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a, 0x0,0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0xcb,0xee,0x2c,0x0,0xb4,0x56,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x63,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x2d,0x66, 0x2c,0x0,0x1e,0xd1,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61, 0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x21,0x57,0x2a,0x0,0x58,0xef,0x2c,0x0,0xb4, 0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0, 0x2f,0x57,0x2a,0x0,0x77,0xef,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x36,0x57,0x2a,0x0,0xbc,0xef,0x2c, 0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x27,0x65, 0x2c,0x0,0x39,0x66,0x2c,0x0,0x7d,0xc,0x2d,0x0,0x27,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x3e,0x57,0x2a,0x0,0x17, 0xed,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0, 0x42,0x1f,0x2a,0x0,0x45,0x57,0x2a,0x0,0x83,0xef,0x2c,0x0,0xb4,0x56,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x48,0x57,0x2a,0x0,0xf3,0x5d,0x2c,0x0,0xf6,0x5d,0x2c, 0x0,0x46,0xee,0x2c,0x0,0xf0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64, 0x2c,0x0,0x22,0x65,0x2c,0x0,0x23,0x65,0x2c,0x0,0xa2,0x41,0x2d,0x0,0x22,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5a,0x65,0x2c,0x0,0x1,0x66,0x2c,0x0,0xe, 0x66,0x2c,0x0,0xf5,0x3d,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x59,0x57,0x2a,0x0,0x3c,0x5e,0x2c,0x0,0x3d,0x5e,0x2c,0x0,0xf3,0xef,0x2c,0x0, 0x3b,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a, 0x0,0x68,0x57,0x2a,0x0,0x82,0xee,0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x7b,0x57,0x2a,0x0,0x8,0xf0, 0x2c,0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x71, 0x65,0x2c,0x0,0x30,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x71,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xb0,0x65,0x2c,0x0,0xb1,0x65,0x2c,0x0, 0x72,0x19,0x2d,0x0,0xaf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c, 0x0,0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0xab,0x46,0x2d,0x0,0x81,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x84,0x57,0x2a,0x0,0xaf,0x58,0x2a,0x0,0xb4,0x58, 0x2a,0x0,0xe9,0xef,0x2c,0x0,0xb0,0x58,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xfd, 0x63,0x2c,0x0,0xbe,0x64,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xbe, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0, 0x35,0x66,0x2c,0x0,0xcf,0xd0,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x88,0x57,0x2a,0x0,0x9c,0xef,0x2c, 0x0,0xb4,0x56,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f, 0x2a,0x0,0xc0,0x6c,0x2a,0x0,0xc,0xf0,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xc8,0x6c,0x2a,0x0,0x3e, 0xed,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0, 0x64,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0x7c,0x3c,0x2d,0x0,0x64,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x42,0x64,0x2c,0x0,0xb4,0x64,0x2c,0x0,0xb5,0x64,0x2c, 0x0,0x67,0xe2,0x2c,0x0,0xb3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64, 0x2c,0x0,0x95,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xdc,0x44,0x2d,0x0,0x95,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf4,0x22,0x2a,0x0,0x63,0x64,0x2c,0x0,0xaf, 0x66,0x2c,0x0,0x21,0x3d,0x2d,0x0,0x63,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x61,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0xd1,0x6c,0x2a,0x0,0xe7,0xef,0x2c,0x0, 0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0xb5,0x65,0x2c, 0x0,0xb6,0x65,0x2c,0x0,0x96,0x45,0x2d,0x0,0xb5,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x30,0x64,0x2c,0x0,0x64,0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0x76,0x7b, 0x2d,0x0,0x64,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42, 0x1f,0x2a,0x0,0xda,0x6c,0x2a,0x0,0x41,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0, 0xc,0xea,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x21,0x2a, 0x0,0x8a,0x5c,0x2b,0x0,0xff,0x67,0x2b,0x0,0x2b,0x5f,0x2b,0x0,0x30,0x68,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0xf1,0x22,0x2a,0x0,0x2b,0x65,0x2c,0x0,0xa3,0x66, 0x2c,0x0,0xd4,0x40,0x2d,0x0,0x2a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x94, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x6a,0xf6,0x2b,0x0,0xcd,0xee,0x2c,0x0,0x4b, 0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0, 0xe8,0x6c,0x2a,0x0,0xbd,0xe8,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x27,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0x26,0x1c,0x2d, 0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xaa,0x65, 0x2c,0x0,0xac,0x65,0x2c,0x0,0xc4,0x52,0x2d,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xcc,0xe1,0x2a,0x0,0x6f,0xf6,0x2b,0x0,0xbb, 0xef,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x6d,0x2a,0x0, 0xd3,0xe1,0x2a,0x0,0xd4,0xe1,0x2a,0x0,0x16,0xcf,0x2c,0x0,0xd2,0xe1,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0xc3,0x65,0x2c,0x0,0xc4,0x65,0x2c, 0x0,0x1c,0x56,0x2d,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64, 0x2c,0x0,0x92,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x92,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xd9,0xb0,0x2a,0x0,0xfe,0xe1,0x2a,0x0,0xe9, 0xf9,0x2a,0x0,0xed,0xee,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x36,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0xba,0x7b,0x2d,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0,0xbb,0x65,0x2c, 0x0,0x2e,0x66,0x2c,0x0,0x91,0x4e,0x2d,0x0,0xbb,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x78,0x1f,0x2a,0x0,0xc8,0xe1,0x2a,0x0,0x78,0xf6,0x2b,0x0,0xa4,0xee, 0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xe, 0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x3b,0x40,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xa1,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xc0,0x7e,0x2c,0x0, 0x63,0x1c,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a, 0x0,0x1e,0xa7,0x2a,0x0,0x92,0xe1,0x2a,0x0,0x1e,0xee,0x2c,0x0,0x70,0xe1,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x8,0x6d, 0x2a,0x0,0x85,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f, 0x64,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x93,0x47,0x2d,0x0,0xa9, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x42,0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0, 0x33,0x66,0x2c,0x0,0x7a,0xc2,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x60,0x1f,0x2a,0x0,0xb6,0xe1,0x2a,0x0,0xf1,0xf9,0x2a,0x0,0x42,0xee,0x2c, 0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x86,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0x7a,0x3c,0x2d,0x0,0x86,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7b,0x1f,0x2a,0x0,0xea,0x94,0x2a,0x0,0x81,0xf6,0x2b,0x0,0xf2, 0xee,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0, 0x9c,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0xdb,0xc1,0x2c,0x0,0x9c,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0x19,0xa7,0x2a,0x0,0xa0,0xe1,0x2a, 0x0,0xb9,0xef,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19, 0x2a,0x0,0x42,0x1f,0x2a,0x0,0x11,0x6d,0x2a,0x0,0x4b,0xef,0x2c,0x0,0x96,0x6c, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x36, 0x66,0x2c,0x0,0x20,0xe,0x2d,0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x72,0x62,0x2c,0x0,0xf2,0x64,0x2c,0x0,0xa8,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0, 0xf2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x44,0x65,0x2c, 0x0,0x32,0x66,0x2c,0x0,0xfa,0x51,0x2d,0x0,0x44,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0xfb,0xf9,0x2a,0x0,0x50,0xeb, 0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0x2a,0x66,0x2c,0x0,0x8b,0x56,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0,0xaf,0xe1,0x2a,0x0, 0x24,0xef,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a, 0x0,0xc2,0xe1,0x2a,0x0,0x84,0xf6,0x2b,0x0,0xd7,0xef,0x2c,0x0,0x4b,0xf6,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x4,0xfa, 0x2a,0x0,0x26,0xee,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62, 0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x16,0x6d,0x2a,0x0,0x3e,0xef,0x2c,0x0,0x96, 0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xb5,0x65,0x2c,0x0, 0x2b,0x66,0x2c,0x0,0xd1,0xc,0x2d,0x0,0xb4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2f,0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x7c,0x3c,0x2d, 0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0x77,0xb2, 0x2a,0x0,0xc1,0xe1,0x2a,0x0,0x1,0xee,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x42, 0x56,0x2d,0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0, 0xd3,0xe1,0x2a,0x0,0x94,0xf6,0x2b,0x0,0x14,0xe2,0x2c,0x0,0x4b,0xf6,0x2b,0x0, 0x0,0x0,0x0,0x0,0x1,0xd,0x64,0x2c,0x0,0x1a,0x65,0x2c,0x0,0x3d,0x66,0x2c, 0x0,0xd3,0x1b,0x2d,0x0,0x1a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x60,0x1f, 0x2a,0x0,0x98,0xb0,0x2a,0x0,0x7,0xfa,0x2a,0x0,0x9b,0xee,0x2c,0x0,0xc1,0xf9, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xfb,0x64,0x2c,0x0,0x45, 0x66,0x2c,0x0,0xfd,0x56,0x2d,0x0,0xfb,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x27,0x66,0x2c,0x0,0xba,0x6f,0x2c,0x0,0xbe,0x6f,0x2c,0x0,0x5,0x49,0x2d,0x0, 0xbb,0x6f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x19,0x2a,0x0,0x42,0x1f,0x2a, 0x0,0x19,0x6d,0x2a,0x0,0x78,0xed,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0x95,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x9c,0xf6,0x2b,0x0,0xb9,0xee, 0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0x72, 0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0xde,0x7b,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x3d,0x65,0x2c,0x0,0x3e,0x65,0x2c,0x0, 0x20,0x47,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x22,0x2a, 0x0,0xaa,0x64,0x2c,0x0,0xac,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0xaa,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xf0,0x22,0x2a,0x0,0x5,0x65,0x2c,0x0,0xaa,0x66, 0x2c,0x0,0x73,0x3c,0x2d,0x0,0x5,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81, 0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x14,0xfa,0x2a,0x0,0xa7,0xee,0x2c,0x0,0xc1, 0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0, 0x28,0x66,0x2c,0x0,0x81,0x57,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x61,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0,0xd1,0xe1,0x2a,0x0,0xe0,0xef,0x2c, 0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x72,0x65, 0x2c,0x0,0x2e,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x4b, 0x3f,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x73,0x62,0x2c,0x0, 0xe1,0x64,0x2c,0x0,0xa6,0x66,0x2c,0x0,0x58,0xeb,0x2c,0x0,0xe1,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x29,0x6d,0x2a, 0x0,0x2f,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64, 0x2c,0x0,0x86,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x4e,0x57,0x2d,0x0,0x86,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x94,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x6a, 0x26,0x2c,0x0,0x86,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x34,0x64,0x2c,0x0,0x59,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x8e,0xd5,0x2c,0x0, 0x59,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0x8,0xe2,0x2a, 0x0,0xa4,0xf6,0x2b,0x0,0x52,0xe1,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0, 0x0,0x1,0x30,0x64,0x2c,0x0,0x40,0x65,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x7a,0x3c, 0x2d,0x0,0x40,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x63, 0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x9f,0xc,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x1a,0xfa,0x2a,0x0, 0xfe,0xef,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a, 0x0,0xd,0xa7,0x2a,0x0,0xf9,0xe1,0x2a,0x0,0x4e,0xee,0x2c,0x0,0x70,0xe1,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x45,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x1e,0x65, 0x2c,0x0,0xaa,0x1c,0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x43, 0x64,0x2c,0x0,0xc7,0x6f,0x2c,0x0,0xd0,0x6f,0x2c,0x0,0x78,0x46,0x2d,0x0,0xc8, 0x6f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0, 0x3a,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x79,0x1f,0x2a,0x0,0x9,0xe2,0x2a,0x0,0x6e,0x26,0x2c,0x0,0xc0,0xee,0x2c, 0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xac,0x65, 0x2c,0x0,0xad,0x65,0x2c,0x0,0xc1,0x3d,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x4d, 0x57,0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0, 0x22,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x11,0x44,0x2d,0x0,0x22,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xee,0x22,0x2a,0x0,0xc2,0x65,0x2c,0x0,0xa7,0x66,0x2c, 0x0,0xac,0x3e,0x2d,0x0,0xc2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64, 0x2c,0x0,0x4f,0x65,0x2c,0x0,0x31,0x66,0x2c,0x0,0xce,0xc5,0x2c,0x0,0x4f,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x2e, 0x66,0x2c,0x0,0x73,0x7b,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x35,0x64,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x42,0x40,0x2d,0x0, 0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x4a,0x65,0x2c, 0x0,0x33,0x66,0x2c,0x0,0x50,0x3c,0x2d,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x31,0x6d,0x2a,0x0,0x33,0xee, 0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x31, 0x65,0x2c,0x0,0x40,0x66,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0x31,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xc5,0xe1,0x2a,0x0,0x5f,0x39,0x2c,0x0, 0x9e,0xed,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x44,0x64,0x2c, 0x0,0x87,0x64,0x2c,0x0,0x88,0x64,0x2c,0x0,0x45,0x47,0x2d,0x0,0x87,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x4a,0x70,0x2c,0x0,0x4b,0x70, 0x2c,0x0,0x1f,0x52,0x2d,0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33, 0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x96,0x83,0x2d,0x0,0xc2, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0, 0x2d,0x66,0x2c,0x0,0x4f,0xd2,0x2c,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2b,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0xa7,0x44,0x2d, 0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xef,0x22,0x2a,0x0,0xfb,0x6d, 0x2c,0x0,0xfc,0x6d,0x2c,0x0,0x8d,0xc6,0x2c,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x87, 0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0, 0x12,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0x11,0x44,0x2d,0x0,0x11,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0x31,0x66,0x2c, 0x0,0x91,0x83,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3d,0x64, 0x2c,0x0,0xfb,0x6d,0x2c,0x0,0xfc,0x6d,0x2c,0x0,0x6c,0x83,0x2d,0x0,0xfb,0x6d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xab,0x65,0x2c,0x0,0x34, 0x66,0x2c,0x0,0x6,0x48,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x38,0x64,0x2c,0x0,0xb9,0x65,0x2c,0x0,0xba,0x65,0x2c,0x0,0x58,0x49,0x2d,0x0, 0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xe2,0x65,0x2c, 0x0,0xe3,0x65,0x2c,0x0,0x51,0xdc,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x7,0x65,0x2c,0x0,0x48,0x66,0x2c,0x0,0xa2,0x48, 0x2d,0x0,0x7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x95, 0x65,0x2c,0x0,0x96,0x65,0x2c,0x0,0xaf,0xd,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xfc,0x63,0x2c,0x0,0xd7,0x64,0x2c,0x0,0x36,0x66,0x2c,0x0, 0x7d,0x3c,0x2d,0x0,0xd7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x93,0x19,0x2a, 0x0,0x73,0x1f,0x2a,0x0,0xad,0xf6,0x2b,0x0,0x1,0xf0,0x2c,0x0,0x4b,0xf6,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0xdc,0x65, 0x2c,0x0,0x8f,0xd6,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32, 0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x20,0x49,0x2d,0x0,0xe0, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0, 0xd2,0x65,0x2c,0x0,0x9f,0x45,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x21,0xfa,0x2a,0x0,0xb5,0xef,0x2c, 0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0x12,0xe2, 0x2a,0x0,0x72,0x26,0x2c,0x0,0x8d,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0xd3,0x65,0x2c,0x0,0xd4,0x65,0x2c,0x0,0xf4, 0xeb,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0, 0xe4,0x64,0x2c,0x0,0xe5,0x64,0x2c,0x0,0xbf,0x47,0x2d,0x0,0xe4,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0xd7,0x65,0x2c, 0x0,0x39,0x49,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x40,0x64, 0x2c,0x0,0xe2,0x64,0x2c,0x0,0xe3,0x64,0x2c,0x0,0x92,0x83,0x2d,0x0,0xe1,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0,0x3e, 0x66,0x2c,0x0,0x47,0x45,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3a,0x64,0x2c,0x0,0xfe,0x65,0x2c,0x0,0xff,0x65,0x2c,0x0,0x65,0x40,0x2d,0x0, 0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xb8,0x65,0x2c, 0x0,0x36,0x66,0x2c,0x0,0xa7,0xdc,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3d,0x64,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x32,0x66,0x2c,0x0,0x1,0xd4, 0x2c,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0xcd,0x65,0x2c,0x0,0xd8,0xd0,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x12,0x65,0x2c,0x0,0x3e,0x66,0x2c,0x0, 0x59,0x75,0x2c,0x0,0x12,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a, 0x0,0xc,0xa7,0x2a,0x0,0xb,0xe2,0x2a,0x0,0xe,0xef,0x2c,0x0,0x70,0xe1,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x3b,0x6d, 0x2a,0x0,0x4a,0xd1,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x3d, 0x64,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xd4,0x7b,0x2d,0x0,0xcb, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xba,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0, 0x65,0x39,0x2c,0x0,0x83,0xee,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x9,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x34,0x66,0x2c,0x0,0x4a,0xd5,0x2c, 0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0x8f,0x70, 0x2c,0x0,0x90,0x70,0x2c,0x0,0x89,0x76,0x2d,0x0,0x8d,0x70,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x97,0x65,0x2c,0x0,0x98,0x65,0x2c,0x0,0x86, 0x83,0x2d,0x0,0x97,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0, 0x9d,0x65,0x2c,0x0,0x9e,0x65,0x2c,0x0,0xed,0xc8,0x2c,0x0,0x9c,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0xc0,0xe1,0x2a,0x0,0xb3,0xf6,0x2b, 0x0,0x6d,0xeb,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x94,0x19, 0x2a,0x0,0x73,0x1f,0x2a,0x0,0x77,0x26,0x2c,0x0,0x49,0xec,0x2c,0x0,0xde,0x25, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x35, 0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x3a,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x39,0x66,0x2c,0x0,0xf9,0x51,0x2d,0x0, 0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xae,0x65,0x2c, 0x0,0x36,0x66,0x2c,0x0,0x59,0x49,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x44,0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x35,0x66,0x2c,0x0,0x87,0x83, 0x2d,0x0,0xbb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0xcc, 0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x71,0x3c,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xea,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0, 0x72,0x83,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c, 0x0,0x9a,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xd,0x49,0x2d,0x0,0x9a,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x37,0x66, 0x2c,0x0,0x73,0xd6,0x2c,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f, 0x1f,0x2a,0x0,0x92,0xb0,0x2a,0x0,0x28,0xfa,0x2a,0x0,0x6b,0xef,0x2c,0x0,0x9c, 0xb0,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0, 0x1c,0xe2,0x2a,0x0,0x60,0xeb,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0x27,0x65,0x2c,0x0,0x41,0x66,0x2c,0x0,0xb7,0x53,0x2d, 0x0,0x27,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0x9,0x65, 0x2c,0x0,0x45,0x66,0x2c,0x0,0xe9,0xc,0x2d,0x0,0x9,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xd4,0x65,0x2c,0x0,0xd5,0x65,0x2c,0x0,0x16, 0x46,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0, 0x42,0x1f,0x2a,0x0,0x43,0x6d,0x2a,0x0,0xd2,0xb2,0x2c,0x0,0x96,0x6c,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x65,0x65,0x2c, 0x0,0xb0,0x77,0x2c,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64, 0x2c,0x0,0x98,0x65,0x2c,0x0,0x37,0x66,0x2c,0x0,0xc6,0x44,0x2d,0x0,0x98,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7,0x64,0x2c,0x0,0x10,0x65,0x2c,0x0,0x33, 0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0x10,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x6c,0x39,0x2c,0x0,0x16,0xed,0x2c,0x0, 0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x64,0x2c,0x0,0x6d,0x65,0x2c, 0x0,0x3e,0x66,0x2c,0x0,0x2a,0x41,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x35,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x3d,0x66,0x2c,0x0,0xe9,0x54, 0x2d,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x64,0x2c,0x0,0x9, 0x65,0x2c,0x0,0x34,0x66,0x2c,0x0,0x40,0x3d,0x2d,0x0,0x9,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0x64,0x2c,0x0,0x3b,0x65,0x2c,0x0,0x45,0x66,0x2c,0x0, 0xf0,0x82,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c, 0x0,0xf3,0x65,0x2c,0x0,0xf4,0x65,0x2c,0x0,0x92,0x83,0x2d,0x0,0xef,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x46,0x66, 0x2c,0x0,0x92,0xc9,0x2c,0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3b, 0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x15,0xdd,0x2c,0x0,0xe0, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0, 0x3f,0x66,0x2c,0x0,0x2d,0x46,0x2d,0x0,0x67,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x36,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x3e,0x66,0x2c,0x0,0x50,0x3c,0x2d, 0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x77,0x65, 0x2c,0x0,0x78,0x65,0x2c,0x0,0xc9,0xea,0x2c,0x0,0x77,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x41,0x64,0x2c,0x0,0xdd,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0xd1, 0x51,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0, 0x40,0x65,0x2c,0x0,0x42,0x66,0x2c,0x0,0x71,0x3c,0x2d,0x0,0x40,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x38,0x64,0x2c,0x0,0x18,0x65,0x2c,0x0,0x19,0x65,0x2c, 0x0,0xac,0x47,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64, 0x2c,0x0,0x98,0x65,0x2c,0x0,0x3b,0x66,0x2c,0x0,0xd8,0x45,0x2d,0x0,0x95,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xf5,0x65,0x2c,0x0,0xf6, 0x65,0x2c,0x0,0xd4,0x45,0x2d,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xc3,0xf6,0x2b,0x0,0x1c,0x65,0x2c,0x0,0x1e,0x65,0x2c,0x0,0xf4,0xe7,0x2c,0x0, 0x1a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xc4,0x5d,0x2c, 0x0,0x7e,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe8,0x64,0x2c,0x0,0x7d,0x65,0x2c,0x0,0x41,0x67,0x2c,0x0,0x9a,0x7b, 0x2d,0x0,0x7d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xb6, 0x5d,0x2c,0x0,0xf,0xbb,0x2c,0x0,0xc,0x7b,0x2d,0x0,0xe9,0xa7,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x32,0x65,0x2c,0x0,0xf7,0x65,0x2c,0x0,0x46,0x66,0x2c,0x0, 0xf5,0x47,0x2d,0x0,0xf7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a, 0x0,0xc9,0x5d,0x2c,0x0,0x1c,0x69,0x2c,0x0,0xa0,0x48,0x2d,0x0,0xc9,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0xfa,0x2a,0x0,0x4,0x65,0x2c,0x0,0x5,0x65, 0x2c,0x0,0xef,0xee,0x2c,0x0,0x1,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7b, 0x26,0x2c,0x0,0x92,0x5d,0x2c,0x0,0x93,0x5d,0x2c,0x0,0x28,0xe2,0x2c,0x0,0x90, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0, 0x1b,0x68,0x2c,0x0,0x4d,0xdd,0x2c,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2f,0xe2,0x2a,0x0,0xb0,0x65,0x2c,0x0,0xb1,0x65,0x2c,0x0,0xe9,0xed,0x2c, 0x0,0xaf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0xf1,0x5d, 0x2c,0x0,0x78,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xf0,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xf3,0x64,0x2c,0x0,0xb4,0x65,0x2c,0x0,0x36,0x67,0x2c,0x0,0x92, 0x83,0x2d,0x0,0xb4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4a,0x6d,0x2a,0x0, 0x3,0x5d,0x2c,0x0,0x5,0x5d,0x2c,0x0,0xa3,0xef,0x2c,0x0,0x2,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0x3e,0x3d,0x2a,0x0,0x71,0x39,0x2c, 0x0,0x70,0xef,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f, 0x2a,0x0,0x6,0xe2,0x2a,0x0,0xcc,0xf6,0x2b,0x0,0x82,0xef,0x2c,0x0,0x4b,0xf6, 0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xf5,0x5d,0x2c,0x0,0x1, 0x68,0x2c,0x0,0xa8,0x55,0x2d,0x0,0xf5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x3a,0xfa,0x2a,0x0,0xbe,0xef,0x2c,0x0, 0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x88,0x26,0x2c,0x0,0xfc,0x5d,0x2c, 0x0,0xfd,0x5d,0x2c,0x0,0x84,0xef,0x2c,0x0,0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x76,0x62,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x9a,0x66,0x2c,0x0,0xfe,0x3d, 0x2d,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3e,0x65,0x2c,0x0,0xdc, 0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0x8c,0xd5,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x3e,0xe2,0x2a,0x0,0x30,0x64,0x2c,0x0,0x31,0x64,0x2c,0x0, 0x5f,0xec,0x2c,0x0,0x2e,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a, 0x0,0xb,0xe2,0x2a,0x0,0x80,0x39,0x2c,0x0,0xf3,0xed,0x2c,0x0,0x3e,0x39,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x58,0x6d, 0x2a,0x0,0x91,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x93, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xd5,0xf6,0x2b,0x0,0xf5,0xdd,0x2c,0x0,0x4b, 0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0xb6,0xe1,0x2a,0x0, 0x8d,0x26,0x2c,0x0,0x63,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb0,0x22,0x2a,0x0,0xf0,0x5d,0x2c,0x0,0x1d,0x69,0x2c,0x0,0x91,0x83,0x2d, 0x0,0xf0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0xd0,0xb0, 0x2a,0x0,0x41,0xfa,0x2a,0x0,0xf5,0xed,0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xd,0xa7,0x2a,0x0,0x50,0xe2,0x2a,0x0,0xa9, 0xef,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0, 0xb5,0xe1,0x2a,0x0,0x8c,0x39,0x2c,0x0,0x23,0xef,0x2c,0x0,0x3e,0x39,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x22,0x68,0x2c, 0x0,0xf0,0x82,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x14,0x65, 0x2c,0x0,0xab,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xd3,0x76,0x2c,0x0,0xab,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdd,0xf6,0x2b,0x0,0x7c,0x65,0x2c,0x0,0x7d, 0x65,0x2c,0x0,0x36,0xec,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb3,0x22,0x2a,0x0,0xfa,0x5d,0x2c,0x0,0xfa,0x67,0x2c,0x0,0x1c,0xd4,0x2c,0x0, 0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x92,0x26,0x2c,0x0,0xbf,0x5d,0x2c, 0x0,0xc0,0x5d,0x2c,0x0,0xf8,0xed,0x2c,0x0,0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb0,0x22,0x2a,0x0,0xc5,0x5d,0x2c,0x0,0x4c,0x66,0x2c,0x0,0x9b,0xd, 0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x49,0xfa,0x2a,0x0,0xa3, 0x5d,0x2c,0x0,0xa5,0x5d,0x2c,0x0,0x27,0xef,0x2c,0x0,0xa3,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xf6,0x64,0x2c,0x0,0x88,0x65,0x2c,0x0,0x3a,0x67,0x2c,0x0, 0xf3,0x45,0x2d,0x0,0x88,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x58,0xe2,0x2a, 0x0,0x63,0x65,0x2c,0x0,0x64,0x65,0x2c,0x0,0x9,0xef,0x2c,0x0,0x60,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x98,0x65,0x2c,0x0,0x51,0x66, 0x2c,0x0,0x51,0x76,0x2d,0x0,0x98,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1, 0x22,0x2a,0x0,0xa7,0x5d,0x2c,0x0,0xfc,0x68,0x2c,0x0,0x14,0x49,0x2d,0x0,0xa7, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0, 0x14,0x68,0x2c,0x0,0x8c,0x48,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x60,0x6d,0x2a,0x0,0xbf,0x5d,0x2c,0x0,0xc1,0x5d,0x2c,0x0,0x54,0xe1,0x2c, 0x0,0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xec,0x64,0x2c,0x0,0x81,0x65, 0x2c,0x0,0x3a,0x67,0x2c,0x0,0x87,0x45,0x2d,0x0,0x80,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x14,0x65,0x2c,0x0,0xaa,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x73, 0x3c,0x2d,0x0,0xaa,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0, 0x9,0x3d,0x2a,0x0,0x92,0x39,0x2c,0x0,0x5f,0xea,0x2c,0x0,0x3e,0x39,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x94,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xe6,0xf6,0x2b, 0x0,0x9,0xed,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0x46,0x5e,0x2c,0x0,0x77,0x66,0x2c,0x0,0x19,0x49,0x2d,0x0,0x45,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x99,0x26,0x2c,0x0,0x69,0x65,0x2c,0x0,0x6a, 0x65,0x2c,0x0,0x72,0xee,0x2c,0x0,0x69,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb2,0x22,0x2a,0x0,0xfa,0x5d,0x2c,0x0,0x5,0x68,0x2c,0x0,0x94,0x83,0x2d,0x0, 0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x37,0x65,0x2c,0x0,0xca,0x65,0x2c, 0x0,0x53,0x66,0x2c,0x0,0xd7,0x44,0x2d,0x0,0xca,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x60,0x1f,0x2a,0x0,0xd3,0xe1,0x2a,0x0,0x4d,0xfa,0x2a,0x0,0xcc,0xef, 0x2c,0x0,0xc1,0xf9,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0xe2,0x2a,0x0,0xf6, 0x5d,0x2c,0x0,0xf7,0x5d,0x2c,0x0,0xeb,0xea,0x2c,0x0,0xf6,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xc5,0x5d,0x2c,0x0,0x22,0x69,0x2c,0x0, 0xd2,0xe0,0x2c,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a, 0x0,0xdd,0x5d,0x2c,0x0,0xa,0x68,0x2c,0x0,0x94,0x83,0x2d,0x0,0xdd,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x19,0x2a,0x0,0x42,0x1f,0x2a,0x0,0x67,0x6d, 0x2a,0x0,0xd2,0xef,0x2c,0x0,0x96,0x6c,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x98, 0x39,0x2c,0x0,0xa,0x65,0x2c,0x0,0xb,0x65,0x2c,0x0,0x62,0xef,0x2c,0x0,0x9, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x48,0x65,0x2c,0x0,0xe3,0x65,0x2c,0x0, 0x27,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0xe3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xef,0x64,0x2c,0x0,0x8d,0x65,0x2c,0x0,0x3b,0x67,0x2c,0x0,0x86,0x83,0x2d, 0x0,0x8d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x56,0xdd,0x2b,0x0,0xc5,0x5d, 0x2c,0x0,0xc6,0x5d,0x2c,0x0,0x7f,0xef,0x2c,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xce,0x5d,0x2c,0x0,0x75,0x66,0x2c,0x0,0xd3, 0x3d,0x2d,0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0, 0xbc,0xe1,0x2a,0x0,0xfb,0xf6,0x2b,0x0,0xa3,0xee,0x2c,0x0,0x4b,0xf6,0x2b,0x0, 0x0,0x0,0x0,0x0,0x1,0x95,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x9b,0x26,0x2c, 0x0,0x73,0xee,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22, 0x2a,0x0,0xbf,0x5d,0x2c,0x0,0xfe,0x67,0x2c,0x0,0xe9,0x46,0x2d,0x0,0xbf,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x65,0x2c,0x0,0xd8,0x65,0x2c,0x0,0x47, 0x66,0x2c,0x0,0x52,0x3c,0x2d,0x0,0xd8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x50,0xfa,0x2a,0x0,0x1e,0x65,0x2c,0x0,0x20,0x65,0x2c,0x0,0xbb,0xb8,0x2c,0x0, 0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0x37,0x5e,0x2c, 0x0,0x1c,0x69,0x2c,0x0,0x58,0x1b,0x2d,0x0,0x37,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xaf,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0xda,0x67,0x2c,0x0,0x1b,0x51, 0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x64,0x2c,0x0,0x85, 0x65,0x2c,0x0,0x38,0x67,0x2c,0x0,0x83,0x7b,0x2d,0x0,0x85,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xc,0xa7,0x2a,0x0,0x65,0xe2,0x2a,0x0, 0x32,0xee,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a, 0x0,0xa6,0x1f,0x2a,0x0,0x9e,0x39,0x2c,0x0,0xe4,0xee,0x2c,0x0,0x3e,0x39,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x4e,0x65,0x2c,0x0,0xfe,0x65,0x2c,0x0,0xff,0x65, 0x2c,0x0,0x3d,0x40,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4, 0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0xff,0x67,0x2c,0x0,0x72,0x83,0x2d,0x0,0xb6, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x70,0x6d,0x2a,0x0,0xb9,0x65,0x2c,0x0, 0xba,0x65,0x2c,0x0,0xd8,0xc3,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x25,0x66,0x2c,0x0,0x3d,0x66,0x2c,0x0,0x5f,0x66,0x2c,0x0,0x95,0x83,0x2d, 0x0,0x5e,0x66,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x65,0x2c,0x0,0xce,0x65, 0x2c,0x0,0x64,0x66,0x2c,0x0,0xdd,0x55,0x2d,0x0,0xce,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x60,0xdd,0x2b,0x0,0x4c,0x65,0x2c,0x0,0x4d,0x65,0x2c,0x0,0x3, 0xea,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0, 0x90,0x5d,0x2c,0x0,0x29,0x69,0x2c,0x0,0xe5,0xcf,0x2c,0x0,0x90,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x8,0x26,0x2c,0x0,0x5d,0x5e,0x2c,0x0,0x5e,0x5e,0x2c, 0x0,0xf6,0xe7,0x2c,0x0,0x5b,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x15,0x68,0x2c,0x0,0x82,0xe8,0x2c,0x0,0xa8,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5d,0xfa,0x2a,0x0,0x1c,0x5e,0x2c,0x0,0x1d, 0x5e,0x2c,0x0,0xe9,0xec,0x2c,0x0,0x1b,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x94,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x0,0xf7,0x2b,0x0,0x78,0xef,0x2c,0x0, 0x4b,0xf6,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x57,0x65,0x2c,0x0,0xef,0x65,0x2c, 0x0,0x28,0x66,0x2c,0x0,0x2c,0x3c,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xfc,0x64,0x2c,0x0,0x94,0x65,0x2c,0x0,0x37,0x67,0x2c,0x0,0x81,0xd, 0x2d,0x0,0x94,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0x95, 0x5d,0x2c,0x0,0x7b,0x66,0x2c,0x0,0x4e,0xdd,0x2c,0x0,0x95,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x74,0xe2,0x2a,0x0,0xf6,0x5d,0x2c,0x0,0xf7,0x5d,0x2c,0x0, 0x48,0xee,0x2c,0x0,0xf6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xa3,0x39,0x2c, 0x0,0xde,0x5d,0x2c,0x0,0xe0,0x5d,0x2c,0x0,0xc6,0xde,0x2c,0x0,0xdd,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0x6,0x68, 0x2c,0x0,0xa,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x44, 0x65,0x2c,0x0,0xe5,0x65,0x2c,0x0,0x48,0x66,0x2c,0x0,0xbd,0x7e,0x2c,0x0,0xe3, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xfb,0x5d,0x2c,0x0, 0x22,0x69,0x2c,0x0,0xdb,0xc,0x2d,0x0,0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb1,0x22,0x2a,0x0,0xbb,0x5d,0x2c,0x0,0x16,0x68,0x2c,0x0,0x6c,0x3d,0x2d, 0x0,0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x67,0xdd,0x2b,0x0,0x82,0x65, 0x2c,0x0,0x83,0x65,0x2c,0x0,0x92,0xef,0x2c,0x0,0x81,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x4b,0x65,0x2c,0x0,0xe8,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0xa4, 0x3d,0x2d,0x0,0xe8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x64,0x2c,0x0, 0x7b,0x65,0x2c,0x0,0x39,0x67,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0x7b,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x42,0x65,0x2c,0x0,0xda,0x65,0x2c,0x0,0x52,0x66,0x2c, 0x0,0x62,0x57,0x2d,0x0,0xda,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22, 0x2a,0x0,0xce,0x5d,0x2c,0x0,0x7a,0x66,0x2c,0x0,0x4,0x49,0x2d,0x0,0xce,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x6d,0x2a,0x0,0x64,0x5d,0x2c,0x0,0x66, 0x5d,0x2c,0x0,0x5,0xef,0x2c,0x0,0x63,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb5,0x22,0x2a,0x0,0xe2,0x5d,0x2c,0x0,0x2,0x68,0x2c,0x0,0x99,0x45,0x2d,0x0, 0xe2,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xbb,0x5d,0x2c, 0x0,0x25,0x69,0x2c,0x0,0x9b,0x7b,0x2d,0x0,0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x7a,0x1f,0x2a,0x0,0xff,0xe1,0x2a,0x0,0xf,0x26,0x2c,0x0,0x7a,0xee, 0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x95,0x19,0x2a,0x0,0x73, 0x1f,0x2a,0x0,0x8,0xf7,0x2b,0x0,0x49,0xee,0x2c,0x0,0x4b,0xf6,0x2b,0x0,0x0, 0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xbb,0x5d,0x2c,0x0,0x14,0x68,0x2c,0x0, 0x11,0x73,0x2c,0x0,0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x39,0x2c, 0x0,0x4f,0x65,0x2c,0x0,0x50,0x65,0x2c,0x0,0x5f,0xef,0x2c,0x0,0x4f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x1a,0x65,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x2f,0x66, 0x2c,0x0,0x92,0x83,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4, 0x64,0x2c,0x0,0x78,0x65,0x2c,0x0,0x48,0x67,0x2c,0x0,0x2a,0x3f,0x2d,0x0,0x78, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x70,0xdd,0x2b,0x0,0x18,0x65,0x2c,0x0, 0x19,0x65,0x2c,0x0,0x64,0xee,0x2c,0x0,0x17,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb0,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x7e,0x66,0x2c,0x0,0x10,0x49,0x2d, 0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x64,0x2c,0x0,0x71,0x65, 0x2c,0x0,0x51,0x66,0x2c,0x0,0x9c,0xdc,0x2c,0x0,0x71,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x67,0xfa,0x2a,0x0,0xb3,0x5d,0x2c,0x0,0xb4,0x5d,0x2c,0x0,0xe3, 0xee,0x2c,0x0,0xb3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0, 0xa7,0x5d,0x2c,0x0,0xb8,0x67,0x2c,0x0,0x91,0x83,0x2d,0x0,0xa7,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0x1e,0x69,0x2c, 0x0,0x69,0x56,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x80,0xe2, 0x2a,0x0,0x22,0x5e,0x2c,0x0,0x23,0x5e,0x2c,0x0,0x7e,0xef,0x2c,0x0,0x20,0x5e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0,0xc0,0x5d,0x2c,0x0,0x24, 0x68,0x2c,0x0,0xa5,0xd0,0x2c,0x0,0xc0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xfc,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x6a,0x76,0x2d,0x0, 0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x64,0x2c,0x0,0x83,0x65,0x2c, 0x0,0x3a,0x67,0x2c,0x0,0xfa,0xc,0x2d,0x0,0x81,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x16,0x26,0x2c,0x0,0x68,0x65,0x2c,0x0,0x69,0x65,0x2c,0x0,0xc0,0xef, 0x2c,0x0,0x67,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4f,0x66,0x2c,0x0,0xc1, 0x7e,0x2c,0x0,0xc2,0x7e,0x2c,0x0,0x8b,0x83,0x2d,0x0,0xbe,0x7e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xb3,0x22,0x2a,0x0,0xb7,0x5d,0x2c,0x0,0x80,0x66,0x2c,0x0, 0xfd,0xdb,0x2c,0x0,0xb7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a, 0x0,0xc5,0x5d,0x2c,0x0,0xfa,0x67,0x2c,0x0,0x92,0x83,0x2d,0x0,0xc4,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x23,0x69, 0x2c,0x0,0x3a,0x3c,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x10, 0xf7,0x2b,0x0,0xfa,0x5d,0x2c,0x0,0xfb,0x5d,0x2c,0x0,0x2b,0xef,0x2c,0x0,0xfa, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0, 0xf,0x68,0x2c,0x0,0x94,0x83,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xb1,0x39,0x2c,0x0,0xc7,0x5d,0x2c,0x0,0xc8,0x5d,0x2c,0x0,0xcc,0xee,0x2c, 0x0,0xc5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x4a,0x65,0x2c,0x0,0xe4,0x65, 0x2c,0x0,0x28,0x66,0x2c,0x0,0x5,0xdc,0x2c,0x0,0xe4,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0x76,0xdd,0x2b,0x0,0xdb, 0xe9,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0, 0xcc,0xb0,0x2a,0x0,0x6c,0xfa,0x2a,0x0,0x4d,0xeb,0x2c,0x0,0xc1,0xf9,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0x8e,0xb2,0x2a,0x0,0x1c,0x26,0x2c, 0x0,0x9a,0xed,0x2c,0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb3,0x22, 0x2a,0x0,0x90,0x5d,0x2c,0x0,0xf3,0x68,0x2c,0x0,0x68,0x40,0x2d,0x0,0x90,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb4,0x22,0x2a,0x0,0xeb,0x64,0x2c,0x0,0xbd, 0x67,0x2c,0x0,0x23,0x49,0x2d,0x0,0xeb,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x85,0xe2,0x2a,0x0,0xff,0x64,0x2c,0x0,0x0,0x65,0x2c,0x0,0x7,0xef,0x2c,0x0, 0xff,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x65,0x2c,0x0,0xd6,0x65,0x2c, 0x0,0x52,0x66,0x2c,0x0,0x4e,0xed,0x2c,0x0,0xd5,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe2,0x64,0x2c,0x0,0xfd,0x6d,0x2c,0x0,0xfe,0x6d,0x2c,0x0,0x92,0x83, 0x2d,0x0,0xfb,0x6d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a,0x0,0xf0, 0x5d,0x2c,0x0,0x74,0x66,0x2c,0x0,0x9a,0x55,0x2d,0x0,0xf0,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x82,0xdd,0x2b,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0, 0x4a,0xef,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0,0x22,0x2a, 0x0,0xed,0x5d,0x2c,0x0,0x5,0x68,0x2c,0x0,0xff,0x1b,0x2d,0x0,0xec,0x5d,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xb1,0x22,0x2a,0x0,0xbe,0x7e,0x2c,0x0,0xbf,0x7e, 0x2c,0x0,0x79,0x83,0x2d,0x0,0xbd,0x7e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0, 0x22,0x2a,0x0,0x96,0x5d,0x2c,0x0,0x27,0x69,0x2c,0x0,0x47,0x53,0x2d,0x0,0x96, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb6,0x39,0x2c,0x0,0xb2,0x5d,0x2c,0x0, 0xb3,0x5d,0x2c,0x0,0xba,0xef,0x2c,0x0,0xb2,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x34,0x65,0x2c,0x0,0xcb,0x65,0x2c,0x0,0x4a,0x66,0x2c,0x0,0x7d,0x3c,0x2d, 0x0,0xcb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x75,0xfa,0x2a,0x0,0x84,0x5e, 0x2c,0x0,0x85,0x5e,0x2c,0x0,0xef,0xe9,0x2c,0x0,0x83,0x5e,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x15,0xf7,0x2b,0x0,0xc3,0x5e,0x2c,0x0,0xc4,0x5e,0x2c,0x0,0xd3, 0xef,0x2c,0x0,0xc1,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb2,0x22,0x2a,0x0, 0xd8,0x5d,0x2c,0x0,0x50,0x66,0x2c,0x0,0x4d,0x70,0x2c,0x0,0xd8,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x20,0x26,0x2c,0x0,0x50,0x5d,0x2c,0x0,0x51,0x5d,0x2c, 0x0,0xc9,0xed,0x2c,0x0,0x50,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x64, 0x2c,0x0,0x7c,0x65,0x2c,0x0,0x3b,0x67,0x2c,0x0,0x8b,0x83,0x2d,0x0,0x7c,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x8a,0xdd,0x2b,0x0,0xf,0x5e,0x2c,0x0,0x10, 0x5e,0x2c,0x0,0xb3,0xef,0x2c,0x0,0xd,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xb4,0x22,0x2a,0x0,0xbb,0x5d,0x2c,0x0,0xfa,0x67,0x2c,0x0,0x87,0x83,0x2d,0x0, 0xbb,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x89,0xe2,0x2a,0x0,0xb9,0x5d,0x2c, 0x0,0xba,0x5d,0x2c,0x0,0x16,0xef,0x2c,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb0,0x22,0x2a,0x0,0xa3,0x5d,0x2c,0x0,0x19,0x68,0x2c,0x0,0x9e,0xd, 0x2d,0x0,0xa3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x39,0x2c,0x0,0x52, 0x5e,0x2c,0x0,0x53,0x5e,0x2c,0x0,0xea,0xef,0x2c,0x0,0x4f,0x5e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x94,0xdd,0x2b,0x0,0x75,0x65,0x2c,0x0,0x76,0x65,0x2c,0x0, 0x89,0xde,0x2c,0x0,0x74,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x46,0x65,0x2c, 0x0,0xe5,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0x84,0xd6,0x2c,0x0,0xe5,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x65,0x2c,0x0,0xef,0x65,0x2c,0x0,0x48,0x66, 0x2c,0x0,0x27,0x1c,0x2d,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xb0, 0x22,0x2a,0x0,0xe3,0x5d,0x2c,0x0,0x78,0x66,0x2c,0x0,0xc4,0x74,0x2c,0x0,0xe3, 0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x62,0x2c,0x0,0xa8,0x64,0x2c,0x0, 0x9c,0x66,0x2c,0x0,0x1c,0x46,0x2d,0x0,0xa8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x77,0x62,0x2c,0x0,0x9f,0x64,0x2c,0x0,0x9f,0x66,0x2c,0x0,0x86,0x83,0x2d, 0x0,0x9f,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xd2,0x64, 0x2c,0x0,0x9d,0x66,0x2c,0x0,0x61,0xd5,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xca,0x64,0x2c,0x0,0xa2,0x66,0x2c,0x0,0xcf, 0x18,0x2d,0x0,0xca,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0, 0x82,0x64,0x2c,0x0,0xa7,0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x82,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x72,0x62,0x2c,0x0,0xa8,0x64,0x2c,0x0,0xb0,0x66,0x2c, 0x0,0x27,0xc6,0x2c,0x0,0xa8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22, 0x2a,0x0,0x7d,0x64,0x2c,0x0,0xac,0x66,0x2c,0x0,0x7e,0x83,0x2d,0x0,0x7d,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a,0x0,0xc5,0x64,0x2c,0x0,0xb4, 0x66,0x2c,0x0,0x15,0xe1,0x2c,0x0,0xc5,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe5,0x22,0x2a,0x0,0xd6,0x64,0x2c,0x0,0xac,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0, 0xd6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22,0x2a,0x0,0xb9,0x64,0x2c, 0x0,0xad,0x66,0x2c,0x0,0xf,0x3d,0x2d,0x0,0xb9,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe5,0x22,0x2a,0x0,0xa9,0x64,0x2c,0x0,0xab,0x66,0x2c,0x0,0x60,0xde, 0x2c,0x0,0xa9,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x22,0x2a,0x0,0x5d, 0x64,0x2c,0x0,0x19,0x6d,0x2c,0x0,0x5e,0xd6,0x2c,0x0,0x5d,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0xe7,0x5d,0x2c,0x0,0x2e,0x6d,0x2c,0x0, 0x7b,0x83,0x2d,0x0,0xe7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a, 0x0,0x8c,0x64,0x2c,0x0,0x17,0x6d,0x2c,0x0,0x8f,0x50,0x2d,0x0,0x8a,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0xc5,0x64,0x2c,0x0,0x16,0x6d, 0x2c,0x0,0x8c,0x1c,0x2d,0x0,0xc5,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0, 0x22,0x2a,0x0,0xd8,0x64,0x2c,0x0,0x18,0x6d,0x2c,0x0,0x71,0x3c,0x2d,0x0,0xd8, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0xf5,0x5d,0x2c,0x0, 0x2d,0x6d,0x2c,0x0,0xd,0x7b,0x2d,0x0,0xf5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe6,0x22,0x2a,0x0,0x13,0x65,0x2c,0x0,0x13,0x6d,0x2c,0x0,0xda,0x44,0x2d, 0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xed,0x6e, 0x2c,0x0,0xae,0x7f,0x2c,0x0,0x6c,0xef,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xd3,0x5d,0x2c,0x0,0x2f,0x6d,0x2c,0x0,0xe, 0x3d,0x2d,0x0,0xd3,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0, 0x8b,0x64,0x2c,0x0,0x18,0x6d,0x2c,0x0,0xa6,0xd5,0x2c,0x0,0x8b,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0x32,0x6d,0x2c, 0x0,0xfa,0x46,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22, 0x2a,0x0,0x89,0x64,0x2c,0x0,0x17,0x6d,0x2c,0x0,0x3b,0x47,0x2d,0x0,0x89,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe6,0x22,0x2a,0x0,0xe6,0x64,0x2c,0x0,0x1c, 0x6d,0x2c,0x0,0xf8,0xd0,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe2,0x22,0x2a,0x0,0xfa,0x5d,0x2c,0x0,0x32,0x6d,0x2c,0x0,0x73,0x3c,0x2d,0x0, 0xfa,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xb2,0x64,0x2c, 0x0,0x1b,0x6d,0x2c,0x0,0x9,0xec,0x2c,0x0,0xb2,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe4,0x22,0x2a,0x0,0xd8,0x5d,0x2c,0x0,0x36,0x6d,0x2c,0x0,0xd3,0x1b, 0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a,0x0,0xdd, 0x5d,0x2c,0x0,0x30,0x6d,0x2c,0x0,0x71,0x3c,0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xdf,0x22,0x2a,0x0,0xd2,0x64,0x2c,0x0,0x19,0x6d,0x2c,0x0, 0x11,0xec,0x2c,0x0,0xd2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a, 0x0,0xbb,0x64,0x2c,0x0,0x1d,0x6d,0x2c,0x0,0x86,0x83,0x2d,0x0,0xbb,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xc4,0x5d,0x2c,0x0,0x3a,0x6d, 0x2c,0x0,0x2a,0x48,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4, 0x22,0x2a,0x0,0x3,0x65,0x2c,0x0,0x19,0x6d,0x2c,0x0,0xbf,0x3d,0x2d,0x0,0x3, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x9b,0x64,0x2c,0x0, 0x1d,0x6d,0x2c,0x0,0xba,0x56,0x2d,0x0,0x9b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe7,0x22,0x2a,0x0,0xb3,0x64,0x2c,0x0,0x1a,0x6d,0x2c,0x0,0x92,0x83,0x2d, 0x0,0xb3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0xc5,0x5d, 0x2c,0x0,0x36,0x6d,0x2c,0x0,0x3d,0x47,0x2d,0x0,0xc4,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x78,0x64,0x2c,0x0,0x1d,0x6d,0x2c,0x0,0x6a, 0x48,0x2d,0x0,0x78,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x64,0x2c,0x0, 0x91,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0xc9,0x40,0x2d,0x0,0x91,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x65,0x2c,0x0,0x97,0x65,0x2c,0x0,0x6a,0x66,0x2c, 0x0,0x9a,0xc7,0x2c,0x0,0x97,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x72,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x65,0x2c,0x0,0x9c,0x65,0x2c,0x0,0x6b, 0x66,0x2c,0x0,0x8e,0xd3,0x2c,0x0,0x9c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0x28,0x1b,0x2d,0x0, 0x91,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x93,0x65,0x2c, 0x0,0x6a,0x66,0x2c,0x0,0xc6,0xd1,0x2c,0x0,0x93,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xfc,0x64,0x2c,0x0,0x92,0x65,0x2c,0x0,0x71,0x66,0x2c,0x0,0x2,0x55, 0x2d,0x0,0x92,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0xa0, 0x65,0x2c,0x0,0x71,0x66,0x2c,0x0,0x8e,0xcf,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x93,0x65,0x2c,0x0,0x71,0x66,0x2c,0x0, 0x7c,0x3c,0x2d,0x0,0x93,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c, 0x0,0x8f,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0xc9,0x45,0x2d,0x0,0x8f,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x75,0x66, 0x2c,0x0,0xec,0x3e,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd, 0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0x88,0xc,0x2d,0x0,0x9a, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x66,0x2c,0x0,0x7b,0x3c,0x2d,0x0, 0x7d,0x3c,0x2d,0x0,0x7d,0x3c,0x2d,0x0,0x7a,0x3c,0x2d,0x0,0x0,0x0,0x0,0x0, 0x1,0xfd,0x64,0x2c,0x0,0x98,0x65,0x2c,0x0,0x74,0x66,0x2c,0x0,0x52,0x3c,0x2d, 0x0,0x98,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xff,0x64,0x2c,0x0,0x99,0x65, 0x2c,0x0,0x6f,0x66,0x2c,0x0,0xab,0x45,0x2d,0x0,0x99,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2d,0x26,0x2c,0x0,0x1f,0x65,0x2c,0x0,0x20,0x65,0x2c,0x0,0xc6, 0xee,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0xfa,0x2a,0x0, 0x2a,0x5e,0x2c,0x0,0x2c,0x5e,0x2c,0x0,0x5e,0xef,0x2c,0x0,0x2a,0x5e,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xfd,0x64,0x2c,0x0,0x93,0x65,0x2c,0x0,0x72,0x66,0x2c, 0x0,0x4b,0x49,0x2d,0x0,0x93,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x6b,0x66, 0x2c,0x0,0xc0,0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xbd,0x7e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x64,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x6a, 0x66,0x2c,0x0,0x7f,0x78,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x65,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x69,0x66,0x2c,0x0,0x4d,0xd2,0x2c,0x0, 0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5,0x65,0x2c,0x0,0x96,0x65,0x2c, 0x0,0x6b,0x66,0x2c,0x0,0xeb,0xe,0x2d,0x0,0x96,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xb,0x65,0x2c,0x0,0xa3,0x65,0x2c,0x0,0x6c,0x66,0x2c,0x0,0x2d,0x47, 0x2d,0x0,0xa3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x9,0x65,0x2c,0x0,0xa0, 0x65,0x2c,0x0,0x6a,0x66,0x2c,0x0,0xb,0x17,0x2d,0x0,0xa0,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x5,0x65,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x69,0x66,0x2c,0x0, 0x51,0xc5,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x6,0x65,0x2c, 0x0,0x9c,0x65,0x2c,0x0,0x6b,0x66,0x2c,0x0,0x89,0x70,0x2c,0x0,0x9c,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x6,0x65,0x2c,0x0,0xcf,0x65,0x2c,0x0,0x6b,0x66, 0x2c,0x0,0xe9,0xdf,0x2c,0x0,0xcf,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0, 0x22,0x2a,0x0,0xb9,0x64,0x2c,0x0,0xe8,0x66,0x2c,0x0,0xda,0x48,0x2d,0x0,0xb9, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a,0x0,0xab,0x64,0x2c,0x0, 0xeb,0x66,0x2c,0x0,0x90,0x1c,0x2d,0x0,0xab,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe1,0x22,0x2a,0x0,0xce,0x5d,0x2c,0x0,0x1,0x67,0x2c,0x0,0x8a,0xce,0x2c, 0x0,0xce,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0x95,0x64, 0x2c,0x0,0xec,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0x95,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe0,0x22,0x2a,0x0,0x93,0x64,0x2c,0x0,0xeb,0x66,0x2c,0x0,0xe2, 0x46,0x2d,0x0,0x93,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe0,0x22,0x2a,0x0, 0xc4,0x5d,0x2c,0x0,0x3,0x67,0x2c,0x0,0x60,0x4e,0x2d,0x0,0xc4,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xb6,0x5d,0x2c,0x0,0x6,0x67,0x2c, 0x0,0x1c,0xc,0x2d,0x0,0xb6,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22, 0x2a,0x0,0xa8,0x64,0x2c,0x0,0xf5,0x66,0x2c,0x0,0x19,0x7a,0x2c,0x0,0xa8,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xa8,0x5d,0x2c,0x0,0x3, 0x67,0x2c,0x0,0x20,0xd1,0x2c,0x0,0xa8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe8,0x22,0x2a,0x0,0xec,0x64,0x2c,0x0,0xef,0x66,0x2c,0x0,0x8b,0x4e,0x2d,0x0, 0xec,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a,0x0,0x22,0x5e,0x2c, 0x0,0xc,0x67,0x2c,0x0,0x4e,0xc4,0x2c,0x0,0x20,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xea,0x22,0x2a,0x0,0xdd,0x5d,0x2c,0x0,0x6,0x67,0x2c,0x0,0xcd,0x56, 0x2d,0x0,0xdd,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x8e,0xe2,0x2a,0x0,0x37, 0x65,0x2c,0x0,0x38,0x65,0x2c,0x0,0xc6,0xed,0x2c,0x0,0x34,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xc0,0x39,0x2c,0x0, 0xa6,0x97,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7b,0x1f,0x2a, 0x0,0xb3,0x53,0x2b,0x0,0x9f,0xdd,0x2b,0x0,0xce,0xef,0x2c,0x0,0x30,0xdd,0x2b, 0x0,0x0,0x0,0x0,0x0,0x1,0xef,0x22,0x2a,0x0,0xe7,0x5d,0x2c,0x0,0xd,0x67, 0x2c,0x0,0x94,0x83,0x2d,0x0,0xe7,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a, 0x1f,0x2a,0x0,0xef,0xe1,0x2a,0x0,0x34,0x26,0x2c,0x0,0x8e,0xe9,0x2c,0x0,0xdd, 0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x22,0x2a,0x0,0xff,0x5d,0x2c,0x0, 0x1,0x67,0x2c,0x0,0xb9,0x55,0x2d,0x0,0xff,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xbd,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xd1,0x39,0x2c,0x0,0xa2,0xe8,0x2c, 0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xed,0x22,0x2a,0x0,0xff,0x5d, 0x2c,0x0,0xe,0x67,0x2c,0x0,0x1e,0x3d,0x2d,0x0,0xff,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xd,0xa7,0x2a,0x0,0x92,0xe2,0x2a,0x0,0xd3, 0xb8,0x2c,0x0,0x70,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xec,0x22,0x2a,0x0, 0xc2,0x65,0x2c,0x0,0xe9,0x66,0x2c,0x0,0xf7,0x46,0x2d,0x0,0xc2,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xee,0x22,0x2a,0x0,0xff,0x5d,0x2c,0x0,0x1,0x67,0x2c, 0x0,0xc2,0x45,0x2d,0x0,0xff,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xee,0x22, 0x2a,0x0,0xce,0x5d,0x2c,0x0,0x7,0x67,0x2c,0x0,0x28,0x79,0x2c,0x0,0xce,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0x90,0x64,0x2c,0x0,0xf2, 0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0x90,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe9,0x22,0x2a,0x0,0xf5,0x5d,0x2c,0x0,0x8,0x67,0x2c,0x0,0x7d,0x3c,0x2d,0x0, 0xf5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0x97,0x64,0x2c, 0x0,0xf1,0x66,0x2c,0x0,0xf7,0x54,0x2d,0x0,0x97,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x79,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xa3,0xdd,0x2b,0x0,0xab,0xef, 0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xe2, 0x5d,0x2c,0x0,0x6,0x67,0x2c,0x0,0x7b,0x4e,0x2d,0x0,0xe2,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0xfa,0x65,0x2c,0x0,0xfb,0x65,0x2c,0x0, 0xec,0x47,0x2d,0x0,0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x94,0x19,0x2a, 0x0,0x73,0x1f,0x2a,0x0,0x40,0x26,0x2c,0x0,0x50,0xef,0x2c,0x0,0xdd,0x25,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xe0,0xe1,0x2a,0x0,0xd6,0x39, 0x2c,0x0,0x4c,0x99,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9, 0x22,0x2a,0x0,0xb,0x64,0x2c,0x0,0xf7,0x66,0x2c,0x0,0xcb,0x56,0x2d,0x0,0xb, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xa8,0x53,0x2b,0x0, 0xc2,0xdd,0x2b,0x0,0xf0,0xea,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0, 0x1,0x95,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x46,0x26,0x2c,0x0,0xc8,0xef,0x2c, 0x0,0xdd,0x25,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f, 0x2a,0x0,0xdd,0x39,0x2c,0x0,0x28,0xf0,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xcb,0xdd,0x2b,0x0,0xe4, 0xef,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0, 0xdd,0xe1,0x2a,0x0,0x4a,0x26,0x2c,0x0,0x46,0xef,0x2c,0x0,0xdd,0x25,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xb1,0xf4,0x2a,0x0,0x18,0x5e,0x2c,0x0,0x19,0x5e,0x2c, 0x0,0xd2,0xef,0x2c,0x0,0x16,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22, 0x2a,0x0,0xbf,0x5d,0x2c,0x0,0x1b,0x67,0x2c,0x0,0x17,0x47,0x2d,0x0,0xbf,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xeb,0x22,0x2a,0x0,0x85,0x64,0x2c,0x0,0xfe, 0x66,0x2c,0x0,0x21,0xd7,0x2c,0x0,0x85,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe8,0x22,0x2a,0x0,0xa5,0x64,0x2c,0x0,0x3,0x67,0x2c,0x0,0xe6,0x46,0x2d,0x0, 0xa5,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x66,0x2c,0x0,0x16,0x70,0x2c, 0x0,0x1c,0x70,0x2c,0x0,0x92,0x83,0x2d,0x0,0x17,0x70,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe2,0x63,0x2c,0x0,0x96,0x64,0x2c,0x0,0x23,0x66,0x2c,0x0,0x2b,0x78, 0x2c,0x0,0x96,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x17,0x6b,0x2a,0x0,0x5b, 0x97,0x2c,0x0,0x87,0x97,0x2c,0x0,0x86,0xef,0x2c,0x0,0x61,0x97,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0xbf,0x5d,0x2c,0x0,0xe,0x67,0x2c,0x0, 0x63,0x44,0x2d,0x0,0xbf,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc4,0x19,0x2a, 0x0,0xa6,0x1f,0x2a,0x0,0xe3,0x39,0x2c,0x0,0xa6,0xee,0x2c,0x0,0x3e,0x39,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xd1,0xdd, 0x2b,0x0,0x84,0xde,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x19, 0x3e,0x2a,0x0,0xc7,0xe1,0x2a,0x0,0xb8,0xf4,0x2a,0x0,0x7b,0xe1,0x2c,0x0,0x93, 0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xea,0x22,0x2a,0x0,0xad,0x5d,0x2c,0x0, 0xd,0x67,0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xad,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xf2,0x22,0x2a,0x0,0x69,0x64,0x2c,0x0,0x3,0x67,0x2c,0x0,0x61,0xe8,0x2c, 0x0,0x69,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf2,0x22,0x2a,0x0,0xaf,0x64, 0x2c,0x0,0x1,0x67,0x2c,0x0,0xe0,0xc,0x2d,0x0,0xaf,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xf1,0x22,0x2a,0x0,0x22,0x5e,0x2c,0x0,0x18,0x67,0x2c,0x0,0x86, 0x45,0x2d,0x0,0x20,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x6b,0x2a,0x0, 0x5b,0x97,0x2c,0x0,0x87,0x97,0x2c,0x0,0x50,0xe1,0x2c,0x0,0x61,0x97,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x17,0xe2,0x2a,0x0,0xe6,0x39,0x2c, 0x0,0x40,0xef,0x2c,0x0,0x3e,0x39,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f, 0x2a,0x0,0xb3,0x53,0x2b,0x0,0xd5,0xdd,0x2b,0x0,0xc7,0xed,0x2c,0x0,0x30,0xdd, 0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0xf1,0x22,0x2a,0x0,0x6d,0x65,0x2c,0x0,0xfc, 0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xf0,0x22,0x2a,0x0,0xc,0x65,0x2c,0x0,0x0,0x67,0x2c,0x0,0x92,0x3d,0x2d,0x0, 0xc,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf3,0x22,0x2a,0x0,0xb8,0x65,0x2c, 0x0,0xfa,0x66,0x2c,0x0,0x5a,0xcf,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2b,0x3e,0x2a,0x0,0xde,0xe1,0x2a,0x0,0xbf,0xf4,0x2a,0x0,0x0,0xee, 0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x6b,0x2a,0x0,0x5b, 0x97,0x2c,0x0,0x89,0x97,0x2c,0x0,0x56,0xef,0x2c,0x0,0x61,0x97,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0x73,0x3c,0x2a,0x0,0xc7,0xf4,0x2a,0x0, 0x2,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x6b,0x2a, 0x0,0x5b,0x97,0x2c,0x0,0x88,0x97,0x2c,0x0,0x54,0xed,0x2c,0x0,0x61,0x97,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x7c,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xdb,0xdd, 0x2b,0x0,0x6e,0xef,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2d, 0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x88,0x97,0x2c,0x0,0x4f,0xe1,0x2c,0x0,0x61, 0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0, 0xe9,0xdd,0x2b,0x0,0xdf,0xec,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0, 0x1,0x1a,0x3e,0x2a,0x0,0xde,0xe1,0x2a,0x0,0xcb,0xf4,0x2a,0x0,0xfc,0xe0,0x2c, 0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x6b,0x2a,0x0,0x5b,0x97, 0x2c,0x0,0x85,0x97,0x2c,0x0,0x3f,0xe9,0x2c,0x0,0x60,0x97,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x79,0x1f,0x2a,0x0,0x81,0x53,0x2b,0x0,0xf0,0xdd,0x2b,0x0,0xde, 0xee,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0, 0xf5,0x3d,0x2a,0x0,0xd5,0xf4,0x2a,0x0,0x15,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0, 0x0,0x0,0x0,0x0,0x1,0x40,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x82,0x97,0x2c, 0x0,0x9,0xe8,0x2c,0x0,0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f, 0x2a,0x0,0xf5,0x3d,0x2a,0x0,0xdd,0xf4,0x2a,0x0,0x4a,0xec,0x2c,0x0,0x93,0xf4, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0xf6, 0xdd,0x2b,0x0,0x1a,0xee,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1, 0x48,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x81,0x97,0x2c,0x0,0x3d,0xe9,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xf5,0x3d,0x2a, 0x0,0xe4,0xf4,0x2a,0x0,0xd5,0xef,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xab,0x1f,0x2a,0x0,0xbc,0xb1,0x2a,0x0,0x4d,0x4c,0x2c,0x0,0xbb,0xd3, 0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x1f,0x2a,0x0,0xb3, 0x53,0x2b,0x0,0xfd,0xdd,0x2b,0x0,0x59,0xef,0x2c,0x0,0x30,0xdd,0x2b,0x0,0x0, 0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x51,0x4c,0x2c,0x0, 0x4,0xee,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x50,0x6b,0x2a, 0x0,0x5b,0x97,0x2c,0x0,0x82,0x97,0x2c,0x0,0x1a,0xe9,0x2c,0x0,0x61,0x97,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xdd,0x3d,0x2a,0x0,0xec,0xf4, 0x2a,0x0,0xe6,0xec,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x7a, 0x1f,0x2a,0x0,0xb3,0x53,0x2b,0x0,0x3,0xde,0x2b,0x0,0xbc,0xef,0x2c,0x0,0x30, 0xdd,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0xdc,0xe1,0x2a,0x0, 0x3e,0xc,0x2c,0x0,0x7a,0xee,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xad,0x1f,0x2a,0x0,0xcf,0x3d,0x2a,0x0,0x66,0x4c,0x2c,0x0,0x77,0xea,0x2c, 0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a,0x0,0xe7,0x5d, 0x2c,0x0,0x2b,0x67,0x2c,0x0,0x47,0x46,0x2d,0x0,0xe7,0x5d,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0xf0,0xf4,0x2a,0x0,0x4f, 0xd4,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0, 0xbb,0x5d,0x2c,0x0,0x23,0x67,0x2c,0x0,0xdd,0x18,0x2d,0x0,0xbb,0x5d,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe7,0x22,0x2a,0x0,0x71,0x64,0x2c,0x0,0xa,0x67,0x2c, 0x0,0x58,0x56,0x2d,0x0,0x71,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22, 0x2a,0x0,0xbf,0x5d,0x2c,0x0,0x23,0x67,0x2c,0x0,0x25,0x49,0x2d,0x0,0xbf,0x5d, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x8f,0x64,0x2c,0x0,0xd, 0x67,0x2c,0x0,0x52,0x3c,0x2d,0x0,0x8f,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xe9,0x22,0x2a,0x0,0xf1,0x5d,0x2c,0x0,0x22,0x67,0x2c,0x0,0xfa,0x45,0x2d,0x0, 0xf0,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x9,0x65,0x2c, 0x0,0x7,0x67,0x2c,0x0,0x7e,0xe0,0x2c,0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xea,0x22,0x2a,0x0,0xc2,0x64,0x2c,0x0,0x0,0x67,0x2c,0x0,0x6b,0x1c, 0x2d,0x0,0xc2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe9,0x22,0x2a,0x0,0xfa, 0x5d,0x2c,0x0,0x18,0x67,0x2c,0x0,0xe9,0xeb,0x2c,0x0,0xfa,0x5d,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xdc,0x5d,0x2c,0x0,0x15,0x67,0x2c,0x0, 0x7b,0x47,0x2d,0x0,0xd8,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x56,0x6b,0x2a, 0x0,0xf,0x95,0x2c,0x0,0x8b,0x97,0x2c,0x0,0x19,0xde,0x2c,0x0,0x11,0x95,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0xc4,0x63,0x2c,0x0,0x4,0x67, 0x2c,0x0,0x93,0x4e,0x2d,0x0,0xc1,0x63,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a, 0x1f,0x2a,0x0,0x21,0x3d,0x2a,0x0,0x43,0xc,0x2c,0x0,0x9f,0xee,0x2c,0x0,0x15, 0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0xf7,0xe1,0x2a,0x0, 0x75,0x4c,0x2c,0x0,0xff,0xee,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xe8,0x22,0x2a,0x0,0xa5,0x5d,0x2c,0x0,0x19,0x67,0x2c,0x0,0x1f,0xed,0x2c, 0x0,0xa5,0x5d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa,0xf4,0x2a,0x0,0x3f,0x64, 0x2c,0x0,0x40,0x64,0x2c,0x0,0xf3,0xce,0x2c,0x0,0x3c,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xf9,0x64,0x2c,0x0,0x2,0x6d,0x2c,0x0,0xad, 0xed,0x2c,0x0,0xf9,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe4,0x22,0x2a,0x0, 0x59,0x64,0x2c,0x0,0x0,0x6d,0x2c,0x0,0x64,0x56,0x2d,0x0,0x59,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x49,0xc,0x2c,0x0,0xf,0x5e,0x2c,0x0,0x10,0x5e,0x2c, 0x0,0x69,0xeb,0x2c,0x0,0xd,0x5e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xae,0x1f, 0x2a,0x0,0x13,0x5e,0x2c,0x0,0xb5,0x7f,0x2c,0x0,0x9d,0xef,0x2c,0x0,0x8f,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66,0x62,0x2c,0x0,0xa6,0x64,0x2c,0x0,0x0, 0x6d,0x2c,0x0,0x86,0x83,0x2d,0x0,0xa6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x65,0x62,0x2c,0x0,0x5b,0x64,0x2c,0x0,0x4,0x6d,0x2c,0x0,0x98,0xed,0x2c,0x0, 0x5b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x4c,0x2c,0x0,0xac,0x5e,0x2c, 0x0,0xad,0x5e,0x2c,0x0,0x19,0xef,0x2c,0x0,0xab,0x5e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x6e,0x62,0x2c,0x0,0x89,0x64,0x2c,0x0,0x3,0x6d,0x2c,0x0,0x94,0x83, 0x2d,0x0,0x89,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x3,0xf5,0x2a,0x0,0x95, 0x5e,0x2c,0x0,0x96,0x5e,0x2c,0x0,0x9e,0xdc,0x2c,0x0,0x93,0x5e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x6a,0x62,0x2c,0x0,0x4b,0x64,0x2c,0x0,0xff,0x6c,0x2c,0x0, 0x75,0x45,0x2d,0x0,0x4b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0x62,0x2c, 0x0,0xa2,0x64,0x2c,0x0,0x8,0x6d,0x2c,0x0,0xa9,0xce,0x2c,0x0,0xa2,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x22,0x2a,0x0,0x82,0x64,0x2c,0x0,0xd,0x6d, 0x2c,0x0,0x56,0x4e,0x2d,0x0,0x82,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f, 0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x83,0x97,0x2c,0x0,0x8f,0xef,0x2c,0x0,0x60, 0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x65,0x62,0x2c,0x0,0xa7,0x64,0x2c,0x0, 0x7,0x6d,0x2c,0x0,0xd1,0xc,0x2d,0x0,0xa7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xad,0x1f,0x2a,0x0,0xe0,0xe1,0x2a,0x0,0xbd,0x7f,0x2c,0x0,0x92,0x97,0x2c, 0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x19,0x2a,0x0,0x73,0x1f, 0x2a,0x0,0x4f,0xc,0x2c,0x0,0xd0,0xb6,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xf4,0xe1,0x2a,0x0,0x87,0x4c,0x2c,0x0,0xa0, 0xea,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xdf,0x22,0x2a,0x0, 0xe,0x64,0x2c,0x0,0x7,0x6d,0x2c,0x0,0x15,0x57,0x2d,0x0,0xd,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x64,0x62,0x2c,0x0,0xb2,0x64,0x2c,0x0,0x8,0x6d,0x2c, 0x0,0x2a,0xee,0x2c,0x0,0xb2,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x79,0x1f, 0x2a,0x0,0xf1,0xe1,0x2a,0x0,0x52,0xc,0x2c,0x0,0xeb,0xef,0x2c,0x0,0x15,0xc, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe1,0x22,0x2a,0x0,0x81,0x64,0x2c,0x0,0x9, 0x6d,0x2c,0x0,0xe4,0xea,0x2c,0x0,0x81,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x67,0x62,0x2c,0x0,0xb6,0x64,0x2c,0x0,0x6,0x6d,0x2c,0x0,0x92,0x83,0x2d,0x0, 0xb6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5e,0x62,0x2c,0x0,0xab,0x64,0x2c, 0x0,0xd,0x6d,0x2c,0x0,0xf0,0x82,0x2d,0x0,0xab,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe7,0x22,0x2a,0x0,0xa4,0x64,0x2c,0x0,0xd,0x6d,0x2c,0x0,0xf2,0x7b, 0x2d,0x0,0xa4,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe8,0x22,0x2a,0x0,0x55, 0x64,0x2c,0x0,0x9,0x6d,0x2c,0x0,0xf0,0x3e,0x2d,0x0,0x55,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xe1,0x63,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x1a,0x66,0x2c,0x0, 0x28,0x44,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a, 0x0,0xa6,0x1f,0x2a,0x0,0xc4,0x7f,0x2c,0x0,0xf6,0xef,0x2c,0x0,0x8e,0x7f,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe5,0x22,0x2a,0x0,0xb4,0x64,0x2c,0x0,0x5,0x6d, 0x2c,0x0,0x19,0x57,0x2d,0x0,0xb4,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66, 0x62,0x2c,0x0,0x9d,0x64,0x2c,0x0,0xc,0x6d,0x2c,0x0,0x3c,0x45,0x2d,0x0,0x9d, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66,0x62,0x2c,0x0,0x7b,0x64,0x2c,0x0, 0xfb,0x6c,0x2c,0x0,0x4d,0xee,0x2c,0x0,0x7b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x68,0x6b,0x2a,0x0,0x8f,0x96,0x2c,0x0,0x84,0x97,0x2c,0x0,0x70,0xe2,0x2c, 0x0,0x8d,0x96,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xd7,0x65, 0x2c,0x0,0xec,0x65,0x2c,0x0,0xe4,0x75,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x5d,0x62,0x2c,0x0,0x9e,0x64,0x2c,0x0,0xff,0x6c,0x2c,0x0,0xe6, 0xe2,0x2c,0x0,0x9e,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x66,0x62,0x2c,0x0, 0x97,0x64,0x2c,0x0,0xfc,0x6c,0x2c,0x0,0x2f,0xdd,0x2c,0x0,0x97,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xe3,0x22,0x2a,0x0,0xb1,0x64,0x2c,0x0,0xfd,0x6c,0x2c, 0x0,0x7c,0x3c,0x2d,0x0,0xb1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x5f,0x62, 0x2c,0x0,0x13,0x65,0x2c,0x0,0xfe,0x6c,0x2c,0x0,0xcf,0x43,0x2d,0x0,0x13,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0xa, 0xf5,0x2a,0x0,0xe,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x6f,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x85,0x97,0x2c,0x0,0x99,0xdf,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf8,0x63,0x2c,0x0,0xb5,0x64,0x2c, 0x0,0x25,0x66,0x2c,0x0,0x1f,0x76,0x2d,0x0,0xb5,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xcd,0x89,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x86,0xfa, 0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x44, 0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x7b,0xbd,0x7,0x0,0x79,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x98,0x89,0x5,0x0,0xf9,0xb9,0x7,0x0,0xa2,0xbd,0x7,0x0, 0x9f,0xf5,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xae,0x1f,0x2a, 0x0,0xb2,0xe1,0x2a,0x0,0x8a,0x4c,0x2c,0x0,0xbd,0xd3,0x2c,0x0,0xe2,0x4b,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xf4,0xe1,0x2a,0x0,0xc7,0x7f, 0x2c,0x0,0xf2,0xed,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x98, 0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xfd,0xfe,0x7,0x0,0x79, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x44,0x8e,0x5,0x0, 0x46,0x8e,0x5,0x0,0x77,0x1,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x79,0x1f,0x2a,0x0,0xdf,0xe1,0x2a,0x0,0x5d,0xc,0x2c,0x0,0x58,0xed,0x2c, 0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x6b,0x2a,0x0,0x43,0x95, 0x2c,0x0,0x8c,0x97,0x2c,0x0,0xb9,0xdd,0x2c,0x0,0x41,0x95,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x13,0xf5,0x2a,0x0,0x44, 0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0, 0xcc,0x3d,0x2a,0x0,0x8f,0x4c,0x2c,0x0,0x49,0xe2,0x2c,0x0,0xe2,0x4b,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0xef,0xe1,0x2a,0x0,0x64,0xc,0x2c, 0x0,0xd6,0xb7,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19, 0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xd2,0x7f,0x2c,0x0,0xcc,0x98,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x17, 0xf5,0x2a,0x0,0x4a,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x7b,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x82,0x97,0x2c,0x0,0xad,0xef,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a, 0x0,0x93,0x4c,0x2c,0x0,0x88,0x97,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xac,0x1f,0x2a,0x0,0x1e,0x6f,0x2c,0x0,0xd8,0x7f,0x2c,0x0,0xc5,0x98, 0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0x41, 0xb1,0x2a,0x0,0x6c,0xc,0x2c,0x0,0xe2,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x61,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x24,0xf5,0x2a,0x0, 0xd0,0xef,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x8b,0x6b,0x2a, 0x0,0xc2,0x96,0x2c,0x0,0x89,0x97,0x2c,0x0,0xdf,0xb8,0x2c,0x0,0xc0,0x96,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xc3,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xd0,0xa8, 0x2c,0x0,0xd1,0xee,0x2c,0x0,0xf9,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc5, 0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x96,0x4c,0x2c,0x0,0x71,0xee,0x2c,0x0,0xe2, 0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x13,0x6f,0x2c,0x0, 0xde,0x7f,0x2c,0x0,0x88,0x97,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x77,0x1f,0x2a,0x0,0x1a,0xe2,0x2a,0x0,0x72,0xc,0x2c,0x0,0x1,0xe9,0x2c, 0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xae,0x1f,0x2a,0x0,0x1b,0xe2, 0x2a,0x0,0xd5,0xa8,0x2c,0x0,0xd4,0xcf,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x97,0x89,0x5,0x0,0xa5,0xa6,0x5,0x0,0xa7,0xa6,0x5,0x0,0x5c, 0x4,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0, 0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0xcc,0xff,0x7,0x0,0x79,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x91,0x6b,0x2a,0x0,0xb,0x95,0x2c,0x0,0x92,0x97,0x2c, 0x0,0xde,0xd5,0x2c,0x0,0xa,0x95,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89, 0x5,0x0,0xa5,0xa6,0x5,0x0,0xa7,0xa6,0x5,0x0,0xb7,0xeb,0x7,0x0,0x79,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x3e,0x2a,0x0,0xef,0xe1,0x2a,0x0,0x2a, 0xf5,0x2a,0x0,0x2b,0xed,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0x95,0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0x5a,0xf6,0x7,0x0, 0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a, 0x0,0xf,0xcb,0x2a,0x0,0xe8,0xec,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0x95,0x89,0x5,0x0,0x34,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0x57,0xce, 0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x44, 0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0xba,0xff,0x7,0x0,0x79,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x42,0xba,0x7,0x0,0xdc,0xbd,0x7,0x0, 0xbd,0xff,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x98,0x89,0x5, 0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xca,0xb,0x8,0x0,0x79,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x38,0x8e, 0x5,0x0,0x82,0xb,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac, 0x1f,0x2a,0x0,0xdc,0xe1,0x2a,0x0,0x2,0x4c,0x2c,0x0,0x6,0xf0,0x2c,0x0,0xe2, 0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0, 0xe3,0x7f,0x2c,0x0,0xf4,0xef,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x96,0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x49,0xba,0x7, 0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f, 0x2a,0x0,0xdc,0xa8,0x2c,0x0,0x2d,0xf0,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x97,0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0x79, 0xbd,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96,0x89,0x5,0x0, 0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0xe8,0x3,0x8,0x0,0x79,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x96,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5, 0x0,0x80,0xb,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19, 0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x17,0xcb,0x2a,0x0,0xa4,0xb4,0x2c,0x0,0xd5,0xca, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x77,0x1f,0x2a,0x0,0x19,0xb1,0x2a,0x0,0x79, 0xc,0x2c,0x0,0xe6,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x98,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x88,0x97,0x2c,0x0,0x61,0xeb,0x2c,0x0, 0x61,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a, 0x0,0x3c,0xf5,0x2a,0x0,0xcd,0xe0,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xaf,0x1f,0x2a,0x0,0xc7,0xe1,0x2a,0x0,0x8,0x4c,0x2c,0x0,0x1b,0x98, 0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbf,0x19,0x2a,0x0,0xa6, 0x1f,0x2a,0x0,0xe2,0xa8,0x2c,0x0,0x5e,0xba,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x85,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x26,0xcb,0x2a,0x0, 0x20,0xb9,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a, 0x0,0xc7,0xe1,0x2a,0x0,0xe7,0x7f,0x2c,0x0,0x73,0xef,0x2c,0x0,0x8e,0x7f,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xa2,0x6b,0x2a,0x0,0x5b,0x97,0x2c,0x0,0x89,0x97, 0x2c,0x0,0x10,0xe8,0x2c,0x0,0x60,0x97,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x98, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x84,0xc,0x2c,0x0,0xeb,0xed,0x2c,0x0,0x15, 0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x62,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0, 0x49,0xf5,0x2a,0x0,0xa3,0xee,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0x33,0xcb,0x2a,0x0,0xd3,0xe1,0x2a,0x0,0xd4,0xe1,0x2a,0x0,0x1a,0xe1,0x2c, 0x0,0xd2,0xe1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xaf,0x1f,0x2a,0x0,0xd8,0xe1, 0x2a,0x0,0xf,0x4c,0x2c,0x0,0x89,0x97,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xad,0x96,0x2c,0x0,0xe6,0xa8,0x2c,0x0,0x56, 0xba,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0, 0x8,0xe2,0x2a,0x0,0xf1,0x7f,0x2c,0x0,0x9b,0x99,0x2c,0x0,0x8e,0x7f,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0,0x28,0xe2,0x2a,0x0,0x89,0xc,0x2c, 0x0,0x57,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xa7,0x6b, 0x2a,0x0,0x91,0x95,0x2c,0x0,0x8c,0x97,0x2c,0x0,0xf8,0xe7,0x2c,0x0,0x91,0x95, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x63,0x1f,0x2a,0x0,0xf5,0x3d,0x2a,0x0,0x4e, 0xf5,0x2a,0x0,0x96,0xb7,0x2c,0x0,0x93,0xf4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1, 0xac,0x1f,0x2a,0x0,0xfb,0xe1,0x2a,0x0,0x16,0x4c,0x2c,0x0,0xb9,0xef,0x2c,0x0, 0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x83,0x19,0x2a,0x0,0x5b,0x1f,0x2a, 0x0,0x3b,0xcb,0x2a,0x0,0xf1,0xef,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xad,0x1f,0x2a,0x0,0x9b,0x95,0x2c,0x0,0x17,0xa8,0x2c,0x0,0xdc,0xce, 0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0,0xa6, 0x1f,0x2a,0x0,0xf5,0x7f,0x2c,0x0,0xe8,0xef,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0x41,0x3d,0x2a,0x0,0x8f,0xc,0x2c,0x0, 0x65,0xe0,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x83,0x19,0x2a, 0x0,0x5b,0x1f,0x2a,0x0,0x4b,0xcb,0x2a,0x0,0x67,0xee,0x2c,0x0,0xd5,0xca,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xe9,0xb1,0x2a,0x0,0x19,0x4c, 0x2c,0x0,0xb0,0xef,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xab, 0x1f,0x2a,0x0,0xff,0xe1,0x2a,0x0,0x1d,0xa8,0x2c,0x0,0xe6,0xba,0x2c,0x0,0xf8, 0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x66,0x2c,0x0,0xd,0x70,0x2c,0x0, 0x12,0x70,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xe,0x70,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x96,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x96,0xc,0x2c,0x0,0x20,0xf0,0x2c, 0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f, 0x2a,0x0,0x54,0xcb,0x2a,0x0,0xc4,0xef,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0, 0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0xc9,0x3d,0x2a,0x0,0x25,0x4c,0x2c,0x0,0xec, 0xed,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0, 0x39,0x8e,0x5,0x0,0x3b,0x8e,0x5,0x0,0xaf,0x9,0x8,0x0,0x79,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x9d,0x96,0x2c,0x0,0x22,0xa8,0x2c, 0x0,0x3c,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19, 0x2a,0x0,0xa6,0x1f,0x2a,0x0,0xfb,0x7f,0x2c,0x0,0x43,0xee,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x96,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0x98, 0xc,0x2c,0x0,0xb4,0xb8,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x85,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x63,0xcb,0x2a,0x0,0x3b,0xef,0x2c,0x0, 0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x20,0xe2,0x2a, 0x0,0x2d,0x4c,0x2c,0x0,0x55,0xef,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x96,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa7,0xbd, 0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x97,0x89,0x5,0x0,0xb0, 0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x64,0x2,0x8,0x0,0x79,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x95,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0, 0x60,0x4,0x8,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x95,0x89,0x5, 0x0,0x41,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0x5d,0xf7,0x7,0x0,0x79,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x98,0x89,0x5,0x0,0x38,0x8e,0x5,0x0,0x39,0x8e, 0x5,0x0,0xbf,0xf2,0x7,0x0,0x79,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96, 0x89,0x5,0x0,0x41,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0xb8,0xb,0x8,0x0,0x79, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0, 0x64,0x65,0x2c,0x0,0xcb,0x75,0x2c,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xca,0x89,0x5,0x0,0x32,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0x2a,0xe1,0x7, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xdf,0xe1, 0x2a,0x0,0x26,0xa8,0x2c,0x0,0xda,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xa1,0xa6,0x5,0x0,0xa3,0xa6,0x5,0x0,0xd3, 0x6,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0, 0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xab,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0x97,0xbb,0x7,0x0,0x9a,0xbb,0x7, 0x0,0xca,0xfc,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89, 0x5,0x0,0x35,0x8e,0x5,0x0,0x36,0x8e,0x5,0x0,0x3b,0xf7,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0x36,0x8e,0x5,0x0,0x37, 0x8e,0x5,0x0,0x5d,0xf2,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xce,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0xb1,0x2,0x8,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xa1,0xa6,0x5, 0x0,0xa2,0xa6,0x5,0x0,0x41,0xb,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0xcb,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0xf8,0xf3, 0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6, 0x1f,0x2a,0x0,0x2,0x80,0x2c,0x0,0x4c,0xc5,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xc9,0x89,0x5,0x0,0x39,0x8e,0x5,0x0,0x3a,0x8e,0x5,0x0, 0x68,0xf5,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5, 0x0,0x34,0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0x9d,0xbd,0x7,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xa7,0xa6,0x5,0x0,0xa9,0xa6, 0x5,0x0,0x10,0xfa,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96, 0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xa8,0xc,0x2c,0x0,0x37,0xef,0x2c,0x0,0x15, 0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0, 0x6b,0xcb,0x2a,0x0,0xc2,0xb1,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0, 0x1,0xcc,0x89,0x5,0x0,0xc0,0xe5,0x6,0x0,0xc1,0xe5,0x6,0x0,0x55,0x0,0x8, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc9,0x89,0x5,0x0,0xa1,0xa6, 0x5,0x0,0xa4,0xa6,0x5,0x0,0xdc,0xfb,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0xad,0xa6,0x5,0x0,0xaf,0xa6,0x5,0x0,0xb3, 0x2,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0, 0xb7,0xa6,0x5,0x0,0xb8,0xa6,0x5,0x0,0x2d,0xb,0x8,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0xa5,0xa6,0x5,0x0,0xa6,0xa6,0x5, 0x0,0x8d,0x2,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89, 0x5,0x0,0x40,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0x83,0xff,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37, 0x8e,0x5,0x0,0x68,0xe5,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xcc,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0x96,0xfd,0x7,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89,0x5,0x0,0xa5,0xa6,0x5, 0x0,0xa7,0xa6,0x5,0x0,0x86,0xe5,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0xcd,0x89,0x5,0x0,0x37,0x8e,0x5,0x0,0x38,0x8e,0x5,0x0,0x73,0xee, 0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0x37, 0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x20,0xa9,0x7,0x0,0x7a,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0xc1,0x3e,0x5,0x0,0xa6,0x89,0x5,0x0,0xcd,0x89,0x5,0x0, 0x2e,0x3,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89,0x5, 0x0,0x3a,0x8e,0x5,0x0,0x3b,0x8e,0x5,0x0,0xd2,0x1,0x8,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xd6,0xb1,0x2a,0x0,0x22,0xe2,0x2a,0x0,0x35,0x4c, 0x2c,0x0,0x24,0xe8,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xc9, 0x89,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x84,0x7,0x8,0x0,0x7a, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0xb7,0xa6,0x5,0x0, 0xb9,0xa6,0x5,0x0,0xff,0xa,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xad,0x1f,0x2a,0x0,0xc5,0x6e,0x2c,0x0,0x29,0xa8,0x2c,0x0,0x8e,0xb8,0x2c, 0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0x35,0x8e, 0x5,0x0,0x37,0x8e,0x5,0x0,0x72,0x9,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xfa,0xe1,0x2a,0x0,0x5,0x80,0x2c,0x0,0x58, 0x98,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x7a,0x1f,0x2a,0x0, 0xb6,0xe1,0x2a,0x0,0xb0,0xc,0x2c,0x0,0x9d,0xee,0x2c,0x0,0x15,0xc,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x5d,0xcc,0x6,0x0,0x5e,0xcc,0x6, 0x0,0x5d,0xe2,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xc9,0x89, 0x5,0x0,0x43,0x8e,0x5,0x0,0x44,0x8e,0x5,0x0,0xdd,0xdf,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x41,0x8e,0x5,0x0,0x42, 0x8e,0x5,0x0,0x6a,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xcd,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0xdf,0x7,0x8,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xaf,0xa6,0x5, 0x0,0xb1,0xa6,0x5,0x0,0x13,0xcf,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x78,0xcb,0x2a,0x0,0x8b,0xee, 0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x3f, 0x8e,0x5,0x0,0x40,0x8e,0x5,0x0,0x60,0x6,0x8,0x0,0x7a,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xc9,0x3d,0x2a,0x0,0x3c,0x4c,0x2c,0x0, 0xce,0x98,0x2c,0x0,0xe2,0x4b,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5, 0x0,0xb1,0xa6,0x5,0x0,0xb2,0xa6,0x5,0x0,0x6d,0xb,0x8,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xaf,0xa6,0x5,0x0,0xb1,0xa6, 0x5,0x0,0xe8,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xca, 0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0xcd,0xfc,0x7,0x0,0x7a, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0, 0xa5,0xa6,0x5,0x0,0xe,0xf3,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xca,0x89,0x5,0x0,0xa3,0xa6,0x5,0x0,0xa5,0xa6,0x5,0x0,0x8c,0x4,0x8, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x44,0x8e, 0x5,0x0,0x45,0x8e,0x5,0x0,0x1e,0xb,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0x2b,0xe2,0x2a,0x0,0x35,0xa8,0x2c,0x0,0xd5, 0xb9,0x2c,0x0,0xf9,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0, 0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0xb5,0xbc,0x7,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xca,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa6,0xa6,0x5, 0x0,0x4d,0xde,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89, 0x5,0x0,0xb5,0xa6,0x5,0x0,0xb6,0xa6,0x5,0x0,0xfd,0xf5,0x7,0x0,0x7a,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f,0x2a,0x0,0xdc,0xe1,0x2a,0x0,0x11, 0x80,0x2c,0x0,0x58,0x99,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xca,0x89,0x5,0x0,0xaf,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x85,0x6,0x8,0x0, 0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0x9b,0x64,0x2c, 0x0,0x23,0x66,0x2c,0x0,0x4d,0xe,0x2d,0x0,0x9b,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xcd,0x89,0x5,0x0,0x39,0x8e,0x5,0x0,0x3a,0x8e,0x5,0x0,0xf,0x1, 0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc,0x89,0x5,0x0,0x34, 0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0x50,0xcd,0x7,0x0,0x7a,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0,0x38,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0, 0x88,0xfe,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5, 0x0,0x41,0x8e,0x5,0x0,0x44,0x8e,0x5,0x0,0xcd,0xfa,0x7,0x0,0x7a,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xcb,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa6,0xa6, 0x5,0x0,0x1b,0x4,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcc, 0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0x45,0xbb,0x7,0x0,0x7a, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xa4,0xa6,0x5,0x0, 0xa5,0xa6,0x5,0x0,0xa5,0xf2,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xca,0x89,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5,0x0,0xc,0x6,0x8, 0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x96,0x19,0x2a,0x0,0x73,0x1f, 0x2a,0x0,0xb8,0xc,0x2c,0x0,0x3f,0xba,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xcd,0x89,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x87, 0xd4,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xcd,0x89,0x5,0x0, 0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0xba,0xf3,0x7,0x0,0x7a,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0xc8,0x89,0x5,0x0,0x35,0x8e,0x5,0x0,0x37,0x8e,0x5, 0x0,0xd5,0xba,0x7,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x83,0x19, 0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x83,0xcb,0x2a,0x0,0xf6,0xed,0x2c,0x0,0xd5,0xca, 0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x89,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb2, 0xa6,0x5,0x0,0xdd,0x7,0x8,0x0,0x7a,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0xac,0x1f,0x2a,0x0,0xd,0xe2,0x2a,0x0,0x3c,0xa8,0x2c,0x0,0x9f,0xef,0x2c,0x0, 0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x35,0x8e,0x5, 0x0,0x37,0x8e,0x5,0x0,0xaa,0x2,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x8a,0x5,0x0,0x38,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0xa9,0xe3, 0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0,0x35, 0x8e,0x5,0x0,0x37,0x8e,0x5,0x0,0xe1,0x7,0x8,0x0,0x7b,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x23,0x8a,0x5,0x0,0xa7,0xa6,0x5,0x0,0xa8,0xa6,0x5,0x0, 0x79,0xfc,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a, 0x0,0x1,0xe2,0x2a,0x0,0x40,0x4c,0x2c,0x0,0xc5,0xee,0x2c,0x0,0xe2,0x4b,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x18,0xba,0x7,0x0,0xe3,0xbd, 0x7,0x0,0x97,0x3,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x2b, 0x8a,0x5,0x0,0x45,0x8e,0x5,0x0,0x46,0x8e,0x5,0x0,0x9a,0xfa,0x7,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0, 0x45,0x8e,0x5,0x0,0x62,0x0,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x1e,0x8a,0x5,0x0,0x43,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x7d,0x3,0x8, 0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0xaf,0xa6, 0x5,0x0,0xb1,0xa6,0x5,0x0,0x84,0xff,0x7,0x0,0xf0,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x1f,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0xd, 0xf5,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0, 0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x68,0x0,0x8,0x0,0x7b,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x96,0x19,0x2a,0x0,0x73,0x1f,0x2a,0x0,0xbe,0xc,0x2c, 0x0,0x8b,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xad,0x1f, 0x2a,0x0,0xfd,0x6e,0x2c,0x0,0x18,0x80,0x2c,0x0,0xc3,0x98,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a,0x5,0x0,0x41,0x8e,0x5,0x0,0x42, 0x8e,0x5,0x0,0x5,0x9,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0,0x46,0x8e,0x5,0x0,0x82,0xff,0x7,0x0, 0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0xc6,0xce,0x6, 0x0,0xc7,0xce,0x6,0x0,0x7d,0xe8,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x8a,0x5,0x0,0x36,0x8e,0x5,0x0,0x38,0x8e,0x5,0x0,0x8d,0xff, 0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b, 0x1f,0x2a,0x0,0x8a,0xcb,0x2a,0x0,0x85,0xb8,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0x1f,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb2,0xa6,0x5,0x0, 0x38,0xfd,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a,0x5, 0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x91,0xa,0x8,0x0,0x7b,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0x42,0xed,0x6,0x0,0x43,0xed, 0x6,0x0,0x74,0xf9,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25, 0x8a,0x5,0x0,0x40,0x8e,0x5,0x0,0x42,0x8e,0x5,0x0,0x76,0xfa,0x7,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x8a,0x5,0x0,0xa5,0xa6,0x5,0x0, 0xa7,0xa6,0x5,0x0,0x0,0xf8,0x7,0x0,0xef,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x2d,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x91,0x1f,0x8,0x0,0x3b,0xb,0x8, 0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0xfe,0xe1, 0x2a,0x0,0x41,0xa8,0x2c,0x0,0xb,0xef,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x90,0x1f,0x8,0x0,0x87, 0xee,0x7,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0, 0x7a,0xd,0x8,0x0,0x86,0x1f,0x8,0x0,0x82,0xb,0x8,0x0,0x9b,0x1f,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x85,0x1f,0x8, 0x0,0xe2,0x2,0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19, 0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x24,0x80,0x2c,0x0,0xee,0xef,0x2c,0x0,0x8e,0x7f, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8d, 0x1f,0x8,0x0,0x9f,0xf5,0x7,0x0,0x9f,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x2d,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8c,0x1f,0x8,0x0,0xfe,0xff,0x7,0x0, 0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x8a,0x5,0x0,0x7a,0xd,0x8, 0x0,0x89,0x1f,0x8,0x0,0x31,0x9,0x8,0x0,0x9e,0x1f,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x26,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x87,0x1f,0x8,0x0,0x30,0x9, 0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0x7a, 0xd,0x8,0x0,0x78,0x1f,0x8,0x0,0x3a,0xf3,0x7,0x0,0xa1,0x1f,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x29,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8b,0x1f,0x8,0x0, 0xc9,0x0,0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a,0x5, 0x0,0x7a,0xd,0x8,0x0,0x87,0x1f,0x8,0x0,0x8,0xf0,0x7,0x0,0xa1,0x1f,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xf4,0xbd,0x7,0x0,0x7a,0xd,0x8,0x0,0x7a,0x1f, 0x8,0x0,0x73,0xa,0x8,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1f, 0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x84,0x1f,0x8,0x0,0x97,0xbd,0x7,0x0,0xa1, 0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0, 0x89,0x1f,0x8,0x0,0x88,0xe2,0x7,0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x2b,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8f,0x1f,0x8,0x0,0x88,0xdd,0x7, 0x0,0xa1,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0x7a,0xd, 0x8,0x0,0x83,0x1f,0x8,0x0,0x84,0xfa,0x7,0x0,0x9c,0x1f,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8c,0x1f,0x8,0x0,0xbe, 0xd7,0x7,0x0,0x9d,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0, 0x7a,0xd,0x8,0x0,0x8e,0x1f,0x8,0x0,0x8b,0xdf,0x7,0x0,0xa1,0x1f,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x96,0xcb,0x2a, 0x0,0xf6,0xee,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x8a, 0x5,0x0,0x7a,0xd,0x8,0x0,0x8a,0x1f,0x8,0x0,0x21,0xbb,0x7,0x0,0xa1,0x1f, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x49,0x6e,0x2c,0x0,0x45, 0xa8,0x2c,0x0,0x1f,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x21,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x7d,0x1f,0x8,0x0,0xe7,0x3,0x8,0x0, 0xa0,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0x33,0x8e,0x5, 0x0,0x34,0x8e,0x5,0x0,0xc8,0xe1,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x8a,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x34,0x9, 0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1c,0x8a,0x5,0x0,0xb0, 0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x55,0xfb,0x7,0x0,0x7b,0xd,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x78,0x1f,0x2a,0x0,0xed,0xe1,0x2a,0x0,0xc3,0xc,0x2c,0x0, 0x94,0xef,0x2c,0x0,0x15,0xc,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5, 0x0,0xa2,0xa6,0x5,0x0,0xa4,0xa6,0x5,0x0,0x2f,0xfc,0x7,0x0,0x7b,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0x35,0x8e,0x5,0x0,0x36,0x8e, 0x5,0x0,0x7a,0x7,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x20, 0x8a,0x5,0x0,0xa6,0xa6,0x5,0x0,0xa7,0xa6,0x5,0x0,0xf2,0x9,0x8,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x8a,0x5,0x0,0x3b,0xba,0x7,0x0, 0xd8,0xbd,0x7,0x0,0x7b,0xf9,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x1b,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x2f,0xe6,0x7, 0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x8a,0x5,0x0,0x7a,0xd, 0x8,0x0,0x84,0x1f,0x8,0x0,0x70,0x4,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x2b,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x82,0x1f,0x8,0x0,0x87, 0x5,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1e,0x8a,0x5,0x0, 0x7a,0xd,0x8,0x0,0x82,0x1f,0x8,0x0,0xea,0x3,0x8,0x0,0xa3,0x1f,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x82,0x1f,0x8, 0x0,0x28,0xf4,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x8a, 0x5,0x0,0x7a,0xd,0x8,0x0,0x86,0x1f,0x8,0x0,0x8f,0xc8,0x7,0x0,0xa3,0x1f, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x31, 0x80,0x2c,0x0,0x88,0x97,0x2c,0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0x9f,0xcb,0x2a,0x0,0x36,0xed,0x2c,0x0, 0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x1d,0x8a,0x5,0x0,0x7a,0xd,0x8, 0x0,0x76,0x1f,0x8,0x0,0x87,0x5,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x1f,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x82,0x1f,0x8,0x0,0x6b,0xe1, 0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x7a, 0xd,0x8,0x0,0x81,0x1f,0x8,0x0,0x59,0xf1,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0, 0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x83,0x1f,0x8,0x0, 0x2,0xe8,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x8a,0x5, 0x0,0x7a,0xd,0x8,0x0,0x7a,0x1f,0x8,0x0,0x31,0xe9,0x7,0x0,0xa3,0x1f,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x9,0xe2,0x2a,0x0,0x49,0xa8, 0x2c,0x0,0xd9,0xb9,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1b, 0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x80,0x1f,0x8,0x0,0x2f,0xe9,0x7,0x0,0xa3, 0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0, 0x82,0x1f,0x8,0x0,0x3c,0xf5,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0xae,0x1f,0x2a,0x0,0x1,0xe2,0x2a,0x0,0x37,0x80,0x2c,0x0,0x9b,0x97,0x2c, 0x0,0x8e,0x7f,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a,0x5,0x0,0x7a,0xd, 0x8,0x0,0x8e,0x1f,0x8,0x0,0x65,0x7,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x1e,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x88,0x1f,0x8,0x0,0x32, 0x3,0x8,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xbc,0x19,0x2a,0x0, 0xa6,0x1f,0x2a,0x0,0x54,0xa8,0x2c,0x0,0xe7,0xee,0x2c,0x0,0xf8,0xa7,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x8b,0x1f,0x8, 0x0,0x72,0xf7,0x7,0x0,0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x8a, 0x5,0x0,0x7a,0xd,0x8,0x0,0x78,0x1f,0x8,0x0,0xa3,0xf4,0x7,0x0,0xa3,0x1f, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1, 0xa6,0x5,0x0,0x5,0xd7,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x21,0x8a,0x5,0x0,0x7a,0xd,0x8,0x0,0x85,0x1f,0x8,0x0,0xc8,0xdd,0x7,0x0, 0xa3,0x1f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x8a,0x5,0x0,0x34,0x8e,0x5, 0x0,0x3a,0x8e,0x5,0x0,0x9b,0xbd,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0, 0x0,0x1,0x2a,0x8a,0x5,0x0,0xb0,0xa6,0x5,0x0,0xb1,0xa6,0x5,0x0,0x98,0xbd, 0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b, 0x1f,0x2a,0x0,0xac,0xcb,0x2a,0x0,0xca,0xef,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0x21,0x8a,0x5,0x0,0xa2,0xa6,0x5,0x0,0xa4,0xa6,0x5,0x0, 0x35,0xfa,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x1f,0x8a,0x5, 0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x20,0xcf,0x7,0x0,0x7b,0xd,0x8, 0x0,0x0,0x0,0x0,0x0,0x1,0x82,0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0xbf,0xcb, 0x2a,0x0,0x64,0xed,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x26, 0x8a,0x5,0x0,0x37,0x8e,0x5,0x0,0x39,0x8e,0x5,0x0,0x41,0xf3,0x7,0x0,0x7b, 0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0xab,0x1f,0x2a,0x0,0x28,0xe2,0x2a,0x0, 0x59,0xa8,0x2c,0x0,0x5c,0xef,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x21,0x8a,0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0xe1,0xe7,0x7, 0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x8a,0x5,0x0,0x33,0x8e, 0x5,0x0,0x34,0x8e,0x5,0x0,0xef,0x0,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0, 0x0,0x0,0x1,0x22,0x8a,0x5,0x0,0xa4,0xa6,0x5,0x0,0xa6,0xa6,0x5,0x0,0x8c, 0xf6,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x8a,0x5,0x0, 0x36,0x8e,0x5,0x0,0x38,0x8e,0x5,0x0,0x68,0xf5,0x7,0x0,0x7b,0xd,0x8,0x0, 0x0,0x0,0x0,0x0,0x1,0x21,0x8a,0x5,0x0,0x33,0x8e,0x5,0x0,0x34,0x8e,0x5, 0x0,0x1b,0x5,0x8,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x8a, 0x5,0x0,0x44,0x8e,0x5,0x0,0x45,0x8e,0x5,0x0,0x33,0xc,0x8,0x0,0x7b,0xd, 0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x8a,0x5,0x0,0xa1,0xa6,0x5,0x0,0xa3, 0xa6,0x5,0x0,0x9a,0xfe,0x7,0x0,0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1, 0x28,0x8a,0x5,0x0,0x34,0x8e,0x5,0x0,0x35,0x8e,0x5,0x0,0xc5,0xee,0x7,0x0, 0x7b,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b,0x1f,0x2a, 0x0,0xc4,0xcb,0x2a,0x0,0xee,0xed,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0,0x0,0x0, 0x0,0x1,0xbb,0x19,0x2a,0x0,0xa6,0x1f,0x2a,0x0,0x5e,0xa8,0x2c,0x0,0x4,0xf0, 0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a,0x0,0x5b, 0x1f,0x2a,0x0,0xc9,0xcb,0x2a,0x0,0xd8,0xee,0x2c,0x0,0xd5,0xca,0x2a,0x0,0x0, 0x0,0x0,0x0,0x1,0xae,0x1f,0x2a,0x0,0xac,0x96,0x2c,0x0,0x62,0xa8,0x2c,0x0, 0x8f,0xb9,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x81,0x19,0x2a, 0x0,0x5b,0x1f,0x2a,0x0,0xcd,0xcb,0x2a,0x0,0x7a,0xed,0x2c,0x0,0xd5,0xca,0x2a, 0x0,0x0,0x0,0x0,0x0,0x1,0xac,0x1f,0x2a,0x0,0x9f,0x96,0x2c,0x0,0x66,0xa8, 0x2c,0x0,0x35,0xef,0x2c,0x0,0xf8,0xa7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x82, 0x19,0x2a,0x0,0x5b,0x1f,0x2a,0x0,0xd0,0xcb,0x2a,0x0,0x96,0xb2,0x2c,0x0,0xd5, 0xca,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x6a,0x89,0x5,0x0,0x33,0x8e,0x5,0x0, 0x34,0x8e,0x5,0x0,0xa6,0x84,0x7,0x0,0xde,0x85,0x7,0x0,0x0,0x0,0x0,0x0, 0x1,0x53,0x89,0x5,0x0,0xa5,0xa6,0x5,0x0,0xa6,0xa6,0x5,0x0,0x2f,0x74,0x7, 0x0,0xdc,0x85,0x7,0x0,0x0,0x0,0x0,0x0,0x1,0x1a,0x66,0x2c,0x0,0x7b,0x3c, 0x2d,0x0,0x7c,0x3c,0x2d,0x0,0x7c,0x3c,0x2d,0x0,0x78,0x3c,0x2d,0x0,0x0,0x0, 0x0,0x0,0x1,0xd,0x20,0x2a,0x0,0x5e,0x65,0x2c,0x0,0x16,0x66,0x2c,0x0,0x92, 0x83,0x2d,0x0,0x5c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x66,0x2c,0x0, 0x51,0x3c,0x2d,0x0,0x52,0x3c,0x2d,0x0,0x52,0x3c,0x2d,0x0,0x50,0x3c,0x2d,0x0, 0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c,0x0,0x18,0x65,0x2c,0x0,0x1b,0x66,0x2c, 0x0,0xce,0x7b,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63, 0x2c,0x0,0xa0,0x64,0x2c,0x0,0xa2,0x64,0x2c,0x0,0xb6,0xc,0x2d,0x0,0xa0,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x66,0x2c,0x0,0x72,0x3c,0x2d,0x0,0x73, 0x3c,0x2d,0x0,0x73,0x3c,0x2d,0x0,0x71,0x3c,0x2d,0x0,0x0,0x0,0x0,0x0,0x1, 0xe3,0x63,0x2c,0x0,0x96,0x64,0x2c,0x0,0x23,0x66,0x2c,0x0,0x2b,0x48,0x2d,0x0, 0x96,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c,0x0,0xa0,0x64,0x2c, 0x0,0x21,0x66,0x2c,0x0,0x4,0xe9,0x2c,0x0,0x9f,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0xe3,0x63,0x2c,0x0,0xc8,0x64,0x2c,0x0,0x1e,0x66,0x2c,0x0,0x98,0x1c, 0x2d,0x0,0xc8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0x9a, 0x64,0x2c,0x0,0x8c,0x50,0x2d,0x0,0x4e,0x74,0x2c,0x0,0x80,0x50,0x2d,0x0,0x0, 0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xa0,0x64,0x2c,0x0,0x22,0x66,0x2c,0x0, 0xf3,0x82,0x2d,0x0,0xa0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe2,0x63,0x2c, 0x0,0x96,0x64,0x2c,0x0,0x22,0x66,0x2c,0x0,0x77,0xd3,0x2c,0x0,0x96,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0xe3,0x63,0x2c,0x0,0xc8,0x64,0x2c,0x0,0x1e,0x66, 0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xc8,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe3, 0x63,0x2c,0x0,0xbe,0x64,0x2c,0x0,0x1f,0x66,0x2c,0x0,0x25,0xc,0x2d,0x0,0xbe, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x91,0x65,0x2c,0x0, 0x1a,0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0x91,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xf0,0x63,0x2c,0x0,0x71,0x65,0x2c,0x0,0x16,0x66,0x2c,0x0,0xf9,0x3d,0x2d, 0x0,0x71,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x90,0x65, 0x2c,0x0,0x91,0x65,0x2c,0x0,0x34,0xec,0x2c,0x0,0x8f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xe0, 0x46,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0, 0x81,0x65,0x2c,0x0,0x82,0x65,0x2c,0x0,0x11,0x46,0x2d,0x0,0x81,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x12,0x66,0x2c, 0x0,0xe7,0x56,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64, 0x2c,0x0,0x63,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x4,0xc8,0x2c,0x0,0x63,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x15, 0x66,0x2c,0x0,0xc9,0x75,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x34,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x3a,0x66,0x2c,0x0,0x94,0x44,0x2d,0x0, 0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x63,0x2c,0x0,0xb4,0x64,0x2c, 0x0,0x1a,0x66,0x2c,0x0,0xa3,0x55,0x2d,0x0,0xb4,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x27,0x64,0x2c,0x0,0xe1,0x64,0x2c,0x0,0x23,0x66,0x2c,0x0,0x32,0xd1, 0x2c,0x0,0xe1,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x66,0x2c,0x0,0xc0, 0x7e,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0x5a,0x47,0x2d,0x0,0xbe,0x7e,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xcf,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0xe9,0x3c,0x2d,0x0, 0x87,0x48,0x2d,0x0,0x1e,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c, 0x0,0xc6,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0x8f,0xc2,0x2c,0x0,0xc6,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x20,0x66, 0x2c,0x0,0x7a,0xc9,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a, 0x64,0x2c,0x0,0x5d,0x65,0x2c,0x0,0x1a,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x5d, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x96,0x65,0x2c,0x0, 0x1b,0x66,0x2c,0x0,0x4,0x48,0x2d,0x0,0x96,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2e,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x0,0xdd,0x2c, 0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xe,0x65, 0x2c,0x0,0x32,0x66,0x2c,0x0,0x98,0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x1f,0x66,0x2c,0x0,0x4c, 0xc4,0x2c,0x0,0x44,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0, 0xdc,0x64,0x2c,0x0,0x25,0x66,0x2c,0x0,0xb0,0x73,0x2c,0x0,0xdc,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x91,0x70,0x2c,0x0,0x92,0x70,0x2c, 0x0,0x49,0x48,0x2d,0x0,0x8d,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x19,0x66, 0x2c,0x0,0xbe,0x7e,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0x9f,0xd0,0x2c,0x0,0xbd,0x7e, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x66,0x2c,0x0,0x4b,0x70,0x2c,0x0,0x4d, 0x70,0x2c,0x0,0xf7,0x55,0x2d,0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2a,0x64,0x2c,0x0,0xdc,0x65,0x2c,0x0,0x15,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0, 0xd8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xa3,0x6f,0x2c, 0x0,0xad,0x6f,0x2c,0x0,0x77,0x45,0x2d,0x0,0xa4,0x6f,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x22,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0xdc,0x65,0x2c,0x0,0xf6,0xc3, 0x2c,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0x54, 0x65,0x2c,0x0,0x1b,0x66,0x2c,0x0,0xab,0x1a,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0, 0xab,0xd,0x2d,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c, 0x0,0xcc,0x65,0x2c,0x0,0x21,0x66,0x2c,0x0,0xaa,0x3d,0x2d,0x0,0xcc,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x19,0x66, 0x2c,0x0,0xff,0xc4,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0xd9,0xd1,0x2c,0x0,0x8b, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xe,0x20,0x2a,0x0,0x85,0x2e,0x2b,0x0, 0xee,0x3c,0x2d,0x0,0x87,0x83,0x2d,0x0,0x1d,0x36,0x2b,0x0,0x0,0x0,0x0,0x0, 0x1,0x24,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0xac,0xd4,0x2c, 0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x5,0x65, 0x2c,0x0,0x32,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x5,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x1d,0x64,0x2c,0x0,0xc3,0x64,0x2c,0x0,0x2a,0x66,0x2c,0x0,0xfc, 0x82,0x2d,0x0,0xc3,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0, 0xbf,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0,0x56,0x47,0x2d,0x0,0xbd,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xa0,0x65,0x2c,0x0,0x15,0x66,0x2c, 0x0,0xe6,0xc,0x2d,0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x40,0x46,0x2d,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x9d,0x65,0x2c,0x0,0x9f, 0x65,0x2c,0x0,0x69,0xcf,0x2c,0x0,0x9d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x30,0x64,0x2c,0x0,0x7c,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x7e,0x3d,0x2d,0x0, 0x7c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xff,0x64,0x2c, 0x0,0x1f,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xff,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x29,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0x10,0xeb, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfb,0x63,0x2c,0x0,0xb4, 0x64,0x2c,0x0,0x1a,0x66,0x2c,0x0,0x8b,0x76,0x2d,0x0,0xb4,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0, 0x8e,0x3d,0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c, 0x0,0xea,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x4c,0x45,0x2d,0x0,0xea,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x1a,0x66, 0x2c,0x0,0xe5,0xc8,0x2c,0x0,0x45,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35, 0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0xba,0x65,0x2c,0x0,0xbd,0xdd,0x2c,0x0,0xb8, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xff,0x64,0x2c,0x0, 0x31,0x66,0x2c,0x0,0x7a,0xe2,0x2c,0x0,0xff,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x30,0x64,0x2c,0x0,0x77,0x65,0x2c,0x0,0x78,0x65,0x2c,0x0,0xba,0x47,0x2d, 0x0,0x77,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0x97,0x65, 0x2c,0x0,0x98,0x65,0x2c,0x0,0x6b,0x83,0x2d,0x0,0x97,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x46, 0x3c,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x32,0x64,0x2c,0x0, 0x36,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0x5a,0x44,0x2d,0x0,0x35,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x1b,0x66,0x2c, 0x0,0xb0,0xd3,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xce,0x19, 0x2a,0x0,0x8,0x20,0x2a,0x0,0xf2,0x3c,0x2d,0x0,0x10,0x44,0x2d,0x0,0x19,0x36, 0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0x12,0x65,0x2c,0x0,0x36, 0x66,0x2c,0x0,0x95,0x83,0x2d,0x0,0x11,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x27,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x17,0x66,0x2c,0x0,0x6c,0x76,0x2d,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x18,0x65,0x2c, 0x0,0x30,0x66,0x2c,0x0,0xbb,0xd,0x2d,0x0,0x18,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x29,0x64,0x2c,0x0,0x60,0x65,0x2c,0x0,0x1a,0x66,0x2c,0x0,0x87,0x83, 0x2d,0x0,0x5e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xd9, 0x64,0x2c,0x0,0xda,0x64,0x2c,0x0,0x83,0x44,0x2d,0x0,0xd7,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0x9f,0x65,0x2c,0x0,0x17,0x66,0x2c,0x0, 0x87,0x83,0x2d,0x0,0x9f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c, 0x0,0x18,0x65,0x2c,0x0,0x1d,0x66,0x2c,0x0,0xbd,0x1c,0x2d,0x0,0x18,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x96,0x65,0x2c,0x0,0x25,0x66, 0x2c,0x0,0x87,0x83,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf9, 0x63,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x18,0x66,0x2c,0x0,0xef,0x82,0x2d,0x0,0x1d, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xf2,0x65,0x2c,0x0, 0xf3,0x65,0x2c,0x0,0xd7,0x3d,0x2d,0x0,0xf2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x31,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x73,0x65,0x2c,0x0,0xe7,0xc4,0x2c, 0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x3b,0x65, 0x2c,0x0,0x1b,0x66,0x2c,0x0,0x76,0xc,0x2d,0x0,0x3b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x28,0x66,0x2c,0x0,0x92, 0x83,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0, 0xcf,0x64,0x2c,0x0,0x38,0x66,0x2c,0x0,0x24,0xc5,0x2c,0x0,0xcf,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xae,0x65,0x2c,0x0,0x24,0x66,0x2c, 0x0,0xc8,0x46,0x2d,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64, 0x2c,0x0,0x6d,0x65,0x2c,0x0,0x6e,0x65,0x2c,0x0,0x1a,0x75,0x2c,0x0,0x6d,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x20,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x1a, 0x66,0x2c,0x0,0x86,0x83,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x1e,0x64,0x2c,0x0,0xd2,0x65,0x2c,0x0,0x12,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0, 0xd2,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xcc,0x65,0x2c, 0x0,0x21,0x66,0x2c,0x0,0x8,0x48,0x2d,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x22,0x64,0x2c,0x0,0x27,0x65,0x2c,0x0,0x1f,0x66,0x2c,0x0,0xc1,0x7e, 0x2c,0x0,0x27,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x21,0x64,0x2c,0x0,0x6d, 0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x6d,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xcd,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0xf7,0x3c,0x2d,0x0, 0x49,0x44,0x2d,0x0,0x20,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c, 0x0,0x54,0x65,0x2c,0x0,0x55,0x65,0x2c,0x0,0xbd,0x48,0x2d,0x0,0x54,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x23,0x66, 0x2c,0x0,0xb2,0x44,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0xbd,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x9,0x70,0x2c,0x0,0xbd, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0, 0x25,0x66,0x2c,0x0,0x56,0xc4,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2d,0x64,0x2c,0x0,0xa6,0x65,0x2c,0x0,0xa8,0x65,0x2c,0x0,0xdd,0xc,0x2d, 0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xe,0x65, 0x2c,0x0,0x1f,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x2b,0x66,0x2c,0x0,0x4d, 0xd2,0x2c,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0, 0xf0,0x64,0x2c,0x0,0x3a,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0xf0,0x64,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0xf9,0x63,0x2c,0x0,0xb9,0x64,0x2c,0x0,0x19,0x66,0x2c, 0x0,0x65,0xd1,0x2c,0x0,0xb9,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64, 0x2c,0x0,0x8b,0x65,0x2c,0x0,0x1b,0x66,0x2c,0x0,0xd1,0x7b,0x2d,0x0,0x8b,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x14,0x66,0x2c,0x0,0x44,0x70,0x2c,0x0,0x45, 0x70,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x43,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x29,0x64,0x2c,0x0,0x5e,0x65,0x2c,0x0,0x19,0x66,0x2c,0x0,0x94,0x83,0x2d,0x0, 0x5d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x8b,0x65,0x2c, 0x0,0x8c,0x65,0x2c,0x0,0x58,0xc9,0x2c,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2f,0x64,0x2c,0x0,0x59,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0xf8,0x79, 0x2c,0x0,0x59,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x4f, 0x65,0x2c,0x0,0x22,0x66,0x2c,0x0,0xb6,0x77,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x1d,0x66,0x2c,0x0, 0x8d,0x3c,0x2d,0x0,0x4a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c, 0x0,0x31,0x65,0x2c,0x0,0x32,0x65,0x2c,0x0,0xdf,0xc2,0x2c,0x0,0x31,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x28,0x66, 0x2c,0x0,0x4c,0x46,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31, 0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x24,0x45,0x2d,0x0,0x9a, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x90,0x70,0x2c,0x0, 0x91,0x70,0x2c,0x0,0xd8,0xc,0x2d,0x0,0x8d,0x70,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0xcd,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0xfc,0x3c,0x2d,0x0,0xee,0x48,0x2d, 0x0,0x1d,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0xfe,0x65, 0x2c,0x0,0xff,0x65,0x2c,0x0,0xa3,0xd5,0x2c,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0xbf, 0x7e,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0, 0x13,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0xf6,0x48,0x2d,0x0,0x13,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x27,0x65,0x2c,0x0,0x22,0x66,0x2c, 0x0,0x92,0x83,0x2d,0x0,0x27,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64, 0x2c,0x0,0xfa,0x64,0x2c,0x0,0xfb,0x64,0x2c,0x0,0xde,0x48,0x2d,0x0,0xfa,0x64, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xe7,0x64,0x2c,0x0,0x21, 0x66,0x2c,0x0,0x7a,0x75,0x2c,0x0,0xe7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x25,0x64,0x2c,0x0,0xe0,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x8b,0x83,0x2d,0x0, 0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf4,0x63,0x2c,0x0,0xa5,0x64,0x2c, 0x0,0x1a,0x66,0x2c,0x0,0x8b,0x83,0x2d,0x0,0xa5,0x64,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x28,0x64,0x2c,0x0,0x36,0x65,0x2c,0x0,0x22,0x66,0x2c,0x0,0xe8,0x72, 0x2c,0x0,0x35,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xab, 0x65,0x2c,0x0,0xac,0x65,0x2c,0x0,0x65,0x83,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x25,0x64,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0, 0x1d,0xd2,0x2c,0x0,0xa9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c, 0x0,0xb2,0x65,0x2c,0x0,0x22,0x66,0x2c,0x0,0x7f,0x45,0x2d,0x0,0xb2,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x54,0x65,0x2c,0x0,0x1a,0x66, 0x2c,0x0,0xdd,0x56,0x2d,0x0,0x54,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c, 0x64,0x2c,0x0,0x45,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0xcd,0x75,0x2d,0x0,0x45, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x92,0x1f,0x8,0x0,0x6b,0x2a,0x8,0x0, 0x6f,0x2a,0x8,0x0,0x8e,0x5,0x8,0x0,0x0,0x38,0x8,0x0,0x0,0x0,0x0,0x0, 0x1,0x1c,0x64,0x2c,0x0,0xdc,0x64,0x2c,0x0,0x22,0x66,0x2c,0x0,0x9a,0x6f,0x2c, 0x0,0xdc,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0x40,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0xbd,0x7e,0x2c,0x0,0x40,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xce,0x19,0x2a,0x0,0x8,0x20,0x2a,0x0,0x1,0x3d,0x2d,0x0,0x26, 0x49,0x2d,0x0,0x1c,0x36,0x2b,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0, 0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0xd9,0x75,0x2d,0x0,0xe0,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0,0x20,0x66,0x2c, 0x0,0x8a,0x7b,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64, 0x2c,0x0,0x9a,0x65,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x52,0xc6,0x2c,0x0,0x9a,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0x13, 0x66,0x2c,0x0,0xe1,0x1b,0x2d,0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0xfb,0x63,0x2c,0x0,0xcd,0x64,0x2c,0x0,0x27,0x66,0x2c,0x0,0x65,0x73,0x2c,0x0, 0xcd,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1b,0x66,0x2c,0x0,0x2f,0x66,0x2c, 0x0,0x4c,0x66,0x2c,0x0,0x9d,0x18,0x2d,0x0,0x4b,0x66,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x31,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0x12,0x66,0x2c,0x0,0xd9,0x55, 0x2d,0x0,0xf9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x95, 0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0xcf,0x75,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x1f,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x25,0x66,0x2c,0x0, 0x8,0xc4,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c, 0x0,0xef,0x65,0x2c,0x0,0x11,0x66,0x2c,0x0,0xc0,0x7e,0x2c,0x0,0xef,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0x65,0x65,0x2c,0x0,0x1a,0x66, 0x2c,0x0,0x7e,0x70,0x2c,0x0,0x65,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a, 0x64,0x2c,0x0,0xd1,0x65,0x2c,0x0,0x12,0x66,0x2c,0x0,0xf6,0xd0,0x2c,0x0,0xd1, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0, 0x14,0x66,0x2c,0x0,0x18,0xc8,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x29,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x14,0x66,0x2c,0x0,0xb0,0xd,0x2d, 0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xf5,0x63,0x2c,0x0,0xaf,0x64, 0x2c,0x0,0x18,0x66,0x2c,0x0,0xcc,0x79,0x2c,0x0,0xaf,0x64,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2a,0x64,0x2c,0x0,0xeb,0x65,0x2c,0x0,0x10,0x66,0x2c,0x0,0xab, 0x57,0x2d,0x0,0xea,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0, 0xa1,0x65,0x2c,0x0,0x15,0x66,0x2c,0x0,0x5a,0xd,0x2d,0x0,0x9f,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x1e,0x64,0x2c,0x0,0x5c,0x65,0x2c,0x0,0x19,0x66,0x2c, 0x0,0x7,0x55,0x2d,0x0,0x5c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64, 0x2c,0x0,0xae,0x65,0x2c,0x0,0xaf,0x65,0x2c,0x0,0xc1,0x7e,0x2c,0x0,0xae,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x24,0x64,0x2c,0x0,0x2e,0x65,0x2c,0x0,0x1f, 0x66,0x2c,0x0,0x9f,0x7b,0x2d,0x0,0x2e,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x20,0x64,0x2c,0x0,0x12,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0,0x52,0x49,0x2d,0x0, 0x12,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x11,0x66,0x2c,0x0,0xc0,0x7e,0x2c, 0x0,0xc2,0x7e,0x2c,0x0,0xe,0x46,0x2d,0x0,0xbe,0x7e,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x25,0x64,0x2c,0x0,0xe4,0x65,0x2c,0x0,0xe5,0x65,0x2c,0x0,0x95,0x83, 0x2d,0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x23,0x64,0x2c,0x0,0xf0, 0x64,0x2c,0x0,0x26,0x66,0x2c,0x0,0xfc,0x76,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xc5,0x65,0x2c,0x0,0xc6,0x65,0x2c,0x0, 0xf0,0x82,0x2d,0x0,0xc4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c, 0x0,0x54,0x65,0x2c,0x0,0x1b,0x66,0x2c,0x0,0x23,0xeb,0x2c,0x0,0x54,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x27,0x64,0x2c,0x0,0xa7,0x64,0x2c,0x0,0xa8,0x64, 0x2c,0x0,0xce,0xc,0x2d,0x0,0xa7,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x1f, 0x64,0x2c,0x0,0x18,0x65,0x2c,0x0,0x20,0x66,0x2c,0x0,0x87,0x83,0x2d,0x0,0x18, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x36,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0, 0x9c,0x65,0x2c,0x0,0x75,0x3e,0x2d,0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x33,0x64,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x9b,0x65,0x2c,0x0,0x28,0xdf,0x2c, 0x0,0x9a,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x36,0x65, 0x2c,0x0,0x3c,0x66,0x2c,0x0,0x92,0x83,0x2d,0x0,0x36,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x3e,0x66,0x2c,0x0,0x4d,0x70,0x2c,0x0,0x4f,0x70,0x2c,0x0,0x24, 0xd1,0x2c,0x0,0x4a,0x70,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0, 0x4,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0x8,0x4f,0x2d,0x0,0x4,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x7b,0x5c,0x8,0x0,0xc9,0xe5,0x8,0x0,0xca,0xe5,0x8, 0x0,0x50,0x36,0x9,0x0,0x64,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64, 0x2c,0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0x1,0x79,0x2c,0x0,0xe0,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x63,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2a, 0x66,0x2c,0x0,0xbd,0x7e,0x2c,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0xec,0x56,0x2d,0x0, 0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xef,0x65,0x2c, 0x0,0xf0,0x65,0x2c,0x0,0x9f,0xd3,0x2c,0x0,0xef,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3a,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x33,0x66,0x2c,0x0,0x94,0x83, 0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x9a, 0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x9f,0xd4,0x2c,0x0,0x9a,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xb3,0x65,0x2c,0x0,0xb4,0x65,0x2c,0x0, 0xce,0x1c,0x2d,0x0,0xb3,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x86,0x2a,0x8, 0x0,0xc8,0xe5,0x8,0x0,0xca,0xe5,0x8,0x0,0xd8,0x5a,0x9,0x0,0x5f,0x67,0x9, 0x0,0x0,0x0,0x0,0x0,0x1,0xfe,0x63,0x2c,0x0,0xe,0x65,0x2c,0x0,0x2a,0x66, 0x2c,0x0,0x7d,0x3c,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e, 0x64,0x2c,0x0,0xaa,0x65,0x2c,0x0,0xab,0x65,0x2c,0x0,0x94,0x83,0x2d,0x0,0xaa, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0xaf,0x65,0x2c,0x0, 0xb0,0x65,0x2c,0x0,0x9c,0x70,0x2c,0x0,0xae,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2a,0x64,0x2c,0x0,0xe3,0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0x29,0x76,0x2d, 0x0,0xe0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xbf,0x65, 0x2c,0x0,0xc0,0x65,0x2c,0x0,0x87,0x83,0x2d,0x0,0xbd,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x2d,0x64,0x2c,0x0,0x93,0x66,0x2c,0x0,0xb5,0x66,0x2c,0x0,0x48, 0x53,0x2d,0x0,0xb4,0x66,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2a,0x64,0x2c,0x0, 0x86,0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xbf,0x7e,0x2c,0x0,0x86,0x65,0x2c,0x0, 0x0,0x0,0x0,0x0,0x1,0x8b,0x2a,0x8,0x0,0x73,0x62,0x9,0x0,0x74,0x62,0x9, 0x0,0x74,0x62,0x9,0x0,0x66,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x3a,0x64, 0x2c,0x0,0x90,0x65,0x2c,0x0,0x2c,0x66,0x2c,0x0,0xf0,0x82,0x2d,0x0,0x90,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0xb9, 0x65,0x2c,0x0,0x1d,0x7b,0x2d,0x0,0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x27,0x64,0x2c,0x0,0x22,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0x5,0x56,0x2d,0x0, 0x22,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0x8f,0x65,0x2c, 0x0,0x2c,0x66,0x2c,0x0,0x91,0x83,0x2d,0x0,0x8f,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x31,0x64,0x2c,0x0,0x1d,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0x8d,0x83, 0x2d,0x0,0x1d,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xda, 0x65,0x2c,0x0,0x27,0x66,0x2c,0x0,0x62,0x6f,0x2c,0x0,0xd8,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xdb,0x65,0x2c,0x0,0x23,0x66,0x2c,0x0, 0xc7,0x76,0x2d,0x0,0xdb,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x89,0x2a,0x8, 0x0,0x84,0x62,0x9,0x0,0x85,0x62,0x9,0x0,0x91,0x47,0x9,0x0,0x6a,0x67,0x9, 0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x63,0x65,0x2c,0x0,0x33,0x66, 0x2c,0x0,0xaa,0x56,0x2d,0x0,0x63,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30, 0x64,0x2c,0x0,0xef,0x65,0x2c,0x0,0xf0,0x65,0x2c,0x0,0xb3,0xed,0x2c,0x0,0xef, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xe6,0x64,0x2c,0x0, 0x3e,0x66,0x2c,0x0,0xa2,0x70,0x2c,0x0,0xe6,0x64,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x33,0x64,0x2c,0x0,0x9,0x65,0x2c,0x0,0x3c,0x66,0x2c,0x0,0xc4,0xe2,0x2c, 0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0x8b,0x65, 0x2c,0x0,0x8c,0x65,0x2c,0x0,0x8e,0x48,0x2d,0x0,0x8b,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x95,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xe1, 0x43,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x88,0x2a,0x8,0x0, 0x87,0x62,0x9,0x0,0x88,0x62,0x9,0x0,0x8f,0x47,0x9,0x0,0x63,0x67,0x9,0x0, 0x0,0x0,0x0,0x0,0x1,0x2c,0x64,0x2c,0x0,0xc1,0x65,0x2c,0x0,0xc2,0x65,0x2c, 0x0,0x94,0x83,0x2d,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfd,0x63, 0x2c,0x0,0x9c,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x6,0x49,0x2d,0x0,0x9c,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0x72,0x65,0x2c,0x0,0x32, 0x66,0x2c,0x0,0x5b,0x7c,0x2d,0x0,0x72,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x2c,0x64,0x2c,0x0,0x81,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0x78,0x3c,0x2d,0x0, 0x81,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x81,0x65,0x2c, 0x0,0x82,0x65,0x2c,0x0,0x17,0x48,0x2d,0x0,0x81,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x3d,0x64,0x2c,0x0,0xa4,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xc2,0x7e, 0x2c,0x0,0xa4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x95, 0x65,0x2c,0x0,0x2f,0x66,0x2c,0x0,0xb,0x41,0x2d,0x0,0x95,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x89,0x2a,0x8,0x0,0xc8,0xe5,0x8,0x0,0xca,0xe5,0x8,0x0, 0xb7,0x5c,0x9,0x0,0x6a,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c, 0x0,0x91,0x65,0x2c,0x0,0x92,0x65,0x2c,0x0,0xc7,0xe9,0x2c,0x0,0x90,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x3b,0x64,0x2c,0x0,0x79,0x65,0x2c,0x0,0x30,0x66, 0x2c,0x0,0xb2,0x75,0x2d,0x0,0x79,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33, 0x64,0x2c,0x0,0x4a,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xcb,0x45,0x2d,0x0,0x4a, 0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2e,0x64,0x2c,0x0,0xd6,0x65,0x2c,0x0, 0x25,0x66,0x2c,0x0,0x4f,0x76,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2c,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0x36,0x3d,0x2d, 0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x39,0x64,0x2c,0x0,0x82,0x65, 0x2c,0x0,0x83,0x65,0x2c,0x0,0xe,0x57,0x2d,0x0,0x82,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x61,0x42,0x6,0x0,0x6d,0x42,0x6,0x0,0x80,0x42,0x6,0x0,0x0, 0x0,0x0,0x0,0xa7,0x42,0x6,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0x2a,0x8,0x0, 0x76,0x62,0x9,0x0,0x77,0x62,0x9,0x0,0xd0,0x51,0x9,0x0,0x6a,0x67,0x9,0x0, 0x0,0x0,0x0,0x0,0x1,0x29,0x64,0x2c,0x0,0xf0,0x64,0x2c,0x0,0x3c,0x66,0x2c, 0x0,0x42,0x3c,0x2d,0x0,0xf0,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2c,0x64, 0x2c,0x0,0xef,0x65,0x2c,0x0,0x24,0x66,0x2c,0x0,0x95,0x83,0x2d,0x0,0xef,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x33,0x64,0x2c,0x0,0x68,0x65,0x2c,0x0,0x31, 0x66,0x2c,0x0,0xb5,0x47,0x2d,0x0,0x68,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x29,0x64,0x2c,0x0,0xb8,0x65,0x2c,0x0,0x28,0x66,0x2c,0x0,0x8f,0x4e,0x2d,0x0, 0xb8,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x26,0x64,0x2c,0x0,0x9,0x65,0x2c, 0x0,0x39,0x66,0x2c,0x0,0x67,0xd3,0x2c,0x0,0x9,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x2e,0x64,0x2c,0x0,0x4f,0x65,0x2c,0x0,0x36,0x66,0x2c,0x0,0xc1,0x3f, 0x2d,0x0,0x4f,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xd1, 0x65,0x2c,0x0,0xd2,0x65,0x2c,0x0,0x38,0x48,0x2d,0x0,0xd1,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0x88,0x2a,0x8,0x0,0x71,0x62,0x9,0x0,0x72,0x62,0x9,0x0, 0xfb,0x4a,0x9,0x0,0x6a,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x4c,0x64,0x2c, 0x0,0xe0,0x65,0x2c,0x0,0xe1,0x65,0x2c,0x0,0xf8,0xc7,0x2c,0x0,0xe0,0x65,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x22,0x64,0x2c,0x0,0xfe,0x65,0x2c,0x0,0x1f,0x66, 0x2c,0x0,0x61,0xe,0x2d,0x0,0xfe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0xfa, 0x63,0x2c,0x0,0xb9,0x64,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x66,0xdd,0x2c,0x0,0xb9, 0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0xab,0x65,0x2c,0x0, 0x27,0x66,0x2c,0x0,0xf1,0x3d,0x2d,0x0,0xab,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x2d,0x64,0x2c,0x0,0xc7,0x65,0x2c,0x0,0xc8,0x65,0x2c,0x0,0xf0,0x82,0x2d, 0x0,0xc7,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0x90,0x65, 0x2c,0x0,0x2f,0x66,0x2c,0x0,0x61,0x73,0x2c,0x0,0x8f,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0xfe,0x63,0x2c,0x0,0x54,0x65,0x2c,0x0,0x29,0x66,0x2c,0x0,0x7f, 0x17,0x2d,0x0,0x52,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x89,0x2a,0x8,0x0, 0x72,0x62,0x9,0x0,0x73,0x62,0x9,0x0,0x4c,0x36,0x9,0x0,0x6a,0x67,0x9,0x0, 0x0,0x0,0x0,0x0,0x1,0x31,0x64,0x2c,0x0,0xd7,0x65,0x2c,0x0,0xd8,0x65,0x2c, 0x0,0xfb,0x55,0x2d,0x0,0xd6,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64, 0x2c,0x0,0x90,0x65,0x2c,0x0,0x91,0x65,0x2c,0x0,0xb2,0x7b,0x2d,0x0,0x90,0x65, 0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x28,0x64,0x2c,0x0,0x13,0x65,0x2c,0x0,0x3b, 0x66,0x2c,0x0,0x66,0x76,0x2d,0x0,0x13,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1, 0x94,0x2a,0x8,0x0,0xca,0xe5,0x8,0x0,0xcb,0xe5,0x8,0x0,0x1,0x37,0x9,0x0, 0x67,0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x2b,0x64,0x2c,0x0,0xe,0x65,0x2c, 0x0,0x37,0x66,0x2c,0x0,0x70,0x70,0x2c,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0, 0x0,0x1,0x33,0x64,0x2c,0x0,0xc2,0x65,0x2c,0x0,0x2e,0x66,0x2c,0x0,0xb3,0xd4, 0x2c,0x0,0xc0,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x30,0x64,0x2c,0x0,0x5d, 0x65,0x2c,0x0,0x38,0x66,0x2c,0x0,0x73,0x3c,0x2d,0x0,0x5d,0x65,0x2c,0x0,0x0, 0x0,0x0,0x0,0x1,0xea,0x63,0x2c,0x0,0x9b,0x64,0x2c,0x0,0x49,0x66,0x2c,0x0, 0xef,0x82,0x2d,0x0,0x9b,0x64,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c, 0x0,0xcd,0x64,0x2c,0x0,0xce,0x64,0x2c,0x0,0xb9,0xec,0x2c,0x0,0xcd,0x64,0x2c, 0x0,0x0,0x0,0x0,0x0,0x1,0x8,0x64,0x2c,0x0,0x4c,0x65,0x2c,0x0,0x33,0x66, 0x2c,0x0,0x7a,0x3c,0x2d,0x0,0x4c,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x95, 0x2a,0x8,0x0,0xc8,0xe5,0x8,0x0,0xc9,0xe5,0x8,0x0,0xee,0x52,0x9,0x0,0x6a, 0x67,0x9,0x0,0x0,0x0,0x0,0x0,0x1,0x2f,0x64,0x2c,0x0,0xe,0x65,0x2c,0x0, 0x3d,0x66,0x2c,0x0,0x50,0x3c,0x2d,0x0,0xe,0x65,0x2c,0x0,0x0,0x0,0x0,0x0, 0x1,0x26,0x64,0x2c,0x0,0x90,0x65,0x2c,0x0,0x2d,0x66,0x2c,0x0,0x7d,0x3c,0x2d, 0x0,0x90,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x35,0x64,0x2c,0x0,0xcc,0x65, 0x2c,0x0,0xcd,0x65,0x2c,0x0,0x4d,0x70,0x2c,0x0,0xcc,0x65,0x2c,0x0,0x0,0x0, 0x0,0x0,0x1,0x34,0x64,0x2c,0x0,0xf9,0x65,0x2c,0x0,0xfa,0x65,0x2c,0x0,0xbf, 0x7e,0x2c,0x0,0xf4,0x65,0x2c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4, 0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x1a, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0x60,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0xf3,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5d,0xa2,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x32,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x1a,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x52,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7, 0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e, 0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe2,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xe4,0x74,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xac, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x94,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0x6,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x24,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x90,0x73,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0xf0,0x51,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x4a, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x36,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xf7,0x67,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80, 0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x3c,0x3f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0x7c,0x86,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x84,0x59,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0xad, 0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa2,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0xb3,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x34,0x6b,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x30,0x36,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xc6,0x68,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xb3,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xb3, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x5e,0x56,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1,0x4a,0x3a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e, 0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe9,0x26,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xca,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xc8,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xef,0x6b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x8d, 0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0x8c,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0xc8,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91, 0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0xc8,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xb3,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xf5,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf0,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc, 0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x83,0x5a,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x90,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0x86, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x9d,0x50,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x9d,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x86,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xad,0x5c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x48,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e, 0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0xc7,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xb5, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x5a,0x41,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x5b,0x41,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9, 0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe6,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xed,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xc7,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xa4,0x58,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xef, 0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x59,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0xf7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa5,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x57,0x54,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x45,0x7c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcd,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x4b,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xc7,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xce,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xff,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x8d,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x4a,0x3a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e, 0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xab,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xad,0x5c,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x8, 0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8d,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xe8,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x57,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67, 0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc4,0x1f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x74, 0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1, 0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xb,0x5b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xfa,0x28,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0x99,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x36,0x78,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31, 0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x19,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x80,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd7,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x62, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x8a,0x6d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4c,0xf4,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7,0x8a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x91,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0x78,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xbc,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb, 0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3e,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x6,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xff,0x47,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x27,0x75,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0xb2,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb6,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x90,0x1d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe1,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x6b,0x75,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x3,0x61,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x1a, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7e,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0x76,0x4a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x79,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd9,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x62,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xaa,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x48,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0x51,0x1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3, 0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb6,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0xad,0x84,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x34,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x62, 0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe5,0x5,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xbd,0x42,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x34,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x16,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe5,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x79, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc, 0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x73,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbb,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xb6,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0xad,0x84,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5, 0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb3,0x41,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x15,0x20,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x7e,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x28, 0x66,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1, 0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xa4,0x58,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6b,0x75, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf8,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd6,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xa4,0x58,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x79,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xc8,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x85,0xc0,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf, 0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0xe9,0x3,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x1a,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x6,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80, 0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x99,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x68, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x1c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa1,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x10,0xf4,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x59,0xc7,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xc9,0x6e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xcc,0x6e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x1a, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7,0x75,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x48,0xcf,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xd1,0x6e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9a,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x3a,0x77, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1e,0xad,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80, 0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xd8,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xdb,0x6e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5d,0x59,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0x70,0xbd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x5c,0x50,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x90,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xdc, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xa4,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0xc4,0x1f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xe3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89, 0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xf0,0x51,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0xc0,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xa8,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xc7, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x5,0x32,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3f,0x4b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xd,0x32,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe8,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x85,0x33,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0x93,0x1d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9e,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3e,0x96,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x56,0xe,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x59,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0x31,0x3d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xa3,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe0,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0xe6,0x4f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x8a,0x6d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae, 0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0xfc,0xb2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x69,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x6f, 0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x74,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x77,0xe,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xbc,0x1d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x61,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0x75,0x7b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xc2,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0x82,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0x84,0xe,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x53,0x32,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd9,0xe,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x2a,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xc4,0x1f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xf8,0x67, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x78,0x87,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x59,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f, 0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x10,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x32, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1, 0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd2,0xb4,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a, 0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x13,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7a,0x25,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x8,0x78, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x8d,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x16,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb2,0x32,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x3a,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xc4,0x1f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x4b, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18, 0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x18,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xc,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0x59,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xe1,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3, 0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xe3,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x3f,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd5, 0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd5,0x32,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x23,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x1a,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x42,0x16,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x26,0x24,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x98,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xeb,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x39, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xd1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x47,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x29,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x7c,0x86,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xd9,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4c,0x45,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x4a,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xec,0xb5,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdb,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xb5,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1, 0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2f,0x81,0xd1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x79,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x51,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x90,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0xad,0x84,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66, 0x99,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e, 0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xa4,0x58,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x79,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x60, 0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18, 0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x9b,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x88,0xad,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbf,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0x79,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x34,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66, 0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x4c,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x73,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xb2, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc0,0xdb,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xa4,0x58,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x2e,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0xf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcc,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff, 0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x73,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xf3,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x1f, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x4f,0x16,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xdd,0x2a, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0x73,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9, 0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x37,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9a,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0xad,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5f,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x7b,0x33, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xae,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x79,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77, 0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7a,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x4d,0xf,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1,0x2b,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x94,0x25,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xb7,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x53,0xf,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36, 0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0x67,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x57,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x3c,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x13, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0xf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x2a,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb9,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xc1,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb2,0x5,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xdd,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x77,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68, 0x85,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x66,0xb2,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x50,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xcd,0xdd,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc4,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x41,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2e,0x9e,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc8,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x3,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e, 0x72,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x5b,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x8,0x16,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1f,0xe3,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x4a,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x1c,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe,0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb7,0x8a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x96,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x24, 0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x6a,0x5f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe0,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0xd6,0x7c, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8d,0x4d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd1,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22, 0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd3,0x78,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a, 0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x1e,0xe,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf2,0xae,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xc8,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x87,0xa3,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc5,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xcf,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe, 0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8f,0xdd,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x68,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x2d, 0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x92,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xe8,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6,0x7e,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x88, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80, 0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x1d,0x8c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb, 0xa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xd6,0x42,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xb1, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x18,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xde,0xe0,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xab,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x11,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0xd5,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x81,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb5,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0xdb,0x7c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8, 0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x20,0x78,0x5f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaf,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x81,0x97,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x51,0x1,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x5e, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x84,0x59,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x97,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x12,0x1a,0x4f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x1c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1b,0xf6,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaa,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4, 0x1e,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0x9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4c,0x3b,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a, 0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc8,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xab,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0xf0,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb9,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x91,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb2,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xed,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xe1,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x99,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x54, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x63,0x5e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x9e,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x10,0x2b,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8, 0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x11,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc9,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x3b,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd2,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda, 0xc8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xe1,0x3f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19, 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x47,0x6,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x3b,0x9,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x3a,0x9, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe8,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xbc,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x74,0xa1,0xb4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xad,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xeb,0x6,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xc1, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xc4,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xe9,0x3f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x99,0x26, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x18,0x89,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe5,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x29,0x2e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xc7,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x5b,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x80, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x11,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xf3,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbd,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x5d,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x89,0x8a,0x18,0x8a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xcc,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc9,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7a,0x11,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xd3, 0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xe,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xd5,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd1,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x67,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xad,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x6d,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0xe6,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x70,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xde,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0x39, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x72,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x81,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80, 0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c, 0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x91,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x3b,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xef, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xab,0xba,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xed,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x80,0x37, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xca,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x3c,0x59,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xef,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93, 0x41,0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xac,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xee,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x11,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xee, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xf9,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcd,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xee,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xef,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19,0xb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd5,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xef,0x2,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xef,0x2,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9d,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xee,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x89,0x8a,0x18, 0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x37,0x83,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xef,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xee,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x4d,0x11,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf, 0xc6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0x17,0x48,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e, 0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd1,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x1,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xc7,0x2f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xc8, 0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x48,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x80,0x17,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xff,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0x4e,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x1,0xd,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xb,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e, 0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x2,0x2a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x4,0xd,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xe, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0x61,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x53,0x31,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0x5d,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x9e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x14,0x22,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54, 0x19,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa0,0x1e,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xec,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x1b,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xc0,0xc,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x10, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x19,0xd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa3,0x1d,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0x17, 0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x20,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb3,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x13,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x90,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0x5a,0x31, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x8e,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0xc3,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60, 0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a, 0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xca,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0x5f,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x91, 0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x18,0x89,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x12,0xe9,0x4d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0xd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x1c,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x62,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xa9,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xab,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67, 0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xcb,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xae,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xa5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19, 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xd2,0xc,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x4c,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0x17,0x44,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0xb1,0x29, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x19,0xa,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xad,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd5,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1,0x59,0x31,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0x5c,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x0,0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe1,0x16,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x21,0x22,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xef,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x12,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb, 0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1f,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xcc,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x91,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x7b,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x8,0x57, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0x8b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf5,0x81,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xd0,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xac,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xc7,0x47,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x80,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xab,0x7e,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e, 0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2b,0x87,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xc5,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x73,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb6, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x62,0xcb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7b,0xbe,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xc6,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xbf,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc1,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x58,0x86,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdb,0x7d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x80,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe2,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xc3,0x56,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0x83,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44, 0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x6f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe7,0x7c,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xfc,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd8,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xad,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xb7,0x56,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xba, 0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x89,0x8a,0x19, 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa9,0x7e,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x28,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc9,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x75,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xbc,0x56, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb5,0x74,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x5,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc3,0x7d,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xff,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x84,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x98,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xbb,0x56,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xb9,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3, 0x40,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x63,0x82,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xbb,0x56,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x77,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x8f, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x93,0x81,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe0,0x45,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xbe,0x29,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x41,0x11,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x87,0x20, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x95,0xb8,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xb5,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9a,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x82,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7, 0x46,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0x73,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf6,0x80,0x8e, 0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x37,0x44,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc6,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x7f,0x20,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x49,0x11,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8e, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0x43,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17, 0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x4b,0x11,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xca,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x8a,0x20,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x3e,0x11, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x82,0x8c,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xd,0x40,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xf,0x40,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51, 0xe,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe3,0x4e,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0xf7,0x39,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x11,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x15, 0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8d,0x8,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5d,0x48,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa0, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xb,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1b,0x1,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xf,0x40,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xfb,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x7b,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89,0x8a,0x19,0xb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5d,0x9,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf7,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x14,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xfe,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x4d,0x4f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x6,0x40,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde, 0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbd,0x46,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf2,0x11,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8c,0x5e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x12,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x47, 0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xff,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f,0xf8,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x95,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xfd,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x8,0x25,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a, 0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x1,0x25,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xf6,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x5, 0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xfc,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xf7,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xc3,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x89, 0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x5a,0x15,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0x64,0x15,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2, 0x99,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x52,0x97,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x59,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbe,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0xa1,0x24,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x90, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf2,0x98,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xd3,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xcf,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd1,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x89, 0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc5,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xcc,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xd5,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd, 0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb5,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc8,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb5,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xca,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xda, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x65,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x19, 0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x7c,0x14,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0xd1,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb9,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x85,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa1,0x79,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x91,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x2a,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x78,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd, 0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1c,0x6c,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e, 0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbd,0x2e,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b, 0x5,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0xce,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x28,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xd3, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0x34,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1c,0x2d,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x71,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x31,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c,0x2b,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x46,0x38,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x2,0x80,0x8e,0x17,0x68, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2d,0x70,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x33,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xd0,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xd6,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51, 0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xdb,0x29,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc9,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0xd8,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xb3, 0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0x17,0x54,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8,0xd3,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17, 0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x54,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6c,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc,0x45,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe8,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x12,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x12,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d, 0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd5,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x72,0x80,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x1a,0x6b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf, 0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x57,0xa,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x91,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0xe9,0x51, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc8,0x22,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa3,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80, 0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xef,0x75,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xa7,0x42,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbc,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xf2, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2,0xfc,0x4b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd9,0x43,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9f,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0xbd,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xc8,0x5e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x57, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4f,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x71,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb8,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35, 0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a,0xe0,0x1b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xe9, 0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4b,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0xbc,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9,0x86,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x57,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xe0,0x1b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e, 0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb6,0x1a,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xbd,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xe0, 0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3e,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xbc,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x90,0x27,0x2e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x22,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42, 0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0x1a,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc8, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xcb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1, 0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x64,0xd8,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x57,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xe0,0x1b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3a,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xc8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb6,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xb0,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f, 0x3e,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xb0,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xa2, 0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xc9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0xfc,0x1,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xed,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xa,0x68,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x13,0x96,0x4c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0xe8,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xb0,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xce,0x13,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x73,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x10,0x23,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x5,0x60,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe,0xc3,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9c,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0x80,0x41,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa1, 0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x11,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xfe,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0x59,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x5,0x55, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0xd,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xbe,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x32,0x60,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb8,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6f,0x8c,0x43,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd9,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0x48,0x5e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x91,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xe3, 0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x20,0xe7,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x23,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x48,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x1e,0x62, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc7,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xae,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xbc,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba, 0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4b,0x17,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc7,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xe5,0x65,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4d,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x1c,0x62,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xe3,0x74, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcb,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0xf0,0x50,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0xd7,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf3,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7e,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa5,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x31,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x91, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x5a,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x95,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x14,0x62,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0xb6,0x28, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc, 0xa4,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa6,0x12,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x65,0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x95,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb6,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc8,0xad,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xd4,0x52,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0x78,0x87, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xe7, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x89,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd9,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x8d,0x33,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2, 0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x43,0xef,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x95,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x15,0x30,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0x88,0x54,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xea,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x90, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0x5,0x0,0x0,0xe,0x33,0xda,0x95,0x66, 0xd9,0x46,0xa2,0x89,0xc2,0xf3,0x79,0xfa,0x5,0x13,0x9c,0xe6,0xfd,0x82,0xe4,0xf6, 0x9d,0x46,0xd2,0x81,0xa1,0xa3,0xe5,0x5e,0x3a,0x4a,0xb7,0xce,0x79,0x42,0x24,0x42, 0x96,0x48,0xac,0xa5,0x86,0x5f,0x83,0xd4,0x72,0x6a,0x7d,0x70,0x39,0xd5,0xc,0xd3, 0x8b,0x49,0xec,0xb9,0x4c,0x27,0x68,0x50,0xac,0x13,0xd9,0xa0,0xb6,0x97,0xf9,0x8d, 0x6d,0x41,0x8c,0x81,0x9c,0xef,0xf1,0x95,0x39,0x28,0xd4,0x27,0x51,0xa9,0xd2,0x34, 0x60,0x4b,0x9a,0x87,0xdd,0x0,0xb1,0xe1,0x29,0x33,0xac,0x6e,0xa7,0x7d,0x8e,0x78, 0x54,0x4f,0xaf,0x8e,0xad,0x65,0xfe,0x99,0xf9,0x96,0x56,0xf8,0x46,0x94,0x8a,0x4, 0x4b,0x43,0x6b,0x95,0x80,0xc9,0x46,0x3,0x54,0xd1,0x7,0xfe,0x43,0x82,0x9c,0x1d, 0x88,0x4b,0x40,0x9c,0x64,0x4b,0xe5,0xa3,0x79,0x6e,0x7,0xaa,0xe3,0xb1,0xb2,0xe9, 0x51,0x44,0xaa,0xa8,0xc2,0x0,0x2a,0xe5,0x22,0xb1,0xff,0x6,0x63,0x6d,0xa1,0xe8, 0xbe,0x44,0x7a,0x93,0x8c,0xd2,0xd4,0x59,0x5a,0x28,0x6,0x62,0x3b,0xda,0x60,0xc3, 0x84,0x4d,0x67,0xb8,0xc5,0x38,0x2c,0x14,0x6b,0x29,0x6a,0x43,0xec,0xbc,0xfc,0xa3, 0x7a,0x4b,0x7f,0xa7,0x4d,0x11,0x64,0x3a,0x71,0xa6,0xc8,0xc6,0x7d,0x40,0x3a,0x8f, 0xf,0x4a,0xc6,0x86,0x47,0x8e,0xf,0x5e,0xb8,0xe9,0xb4,0x8b,0x60,0x40,0x7a,0xda, 0xa0,0x4a,0x61,0xba,0x91,0xbb,0x4b,0x29,0x62,0xcf,0xdd,0x4a,0x21,0xca,0xe6,0xec, 0x32,0x49,0xb1,0xbf,0xa2,0x94,0xe6,0xc,0x6c,0x1,0x55,0x36,0xd7,0x62,0xd1,0xa8, 0x3c,0x40,0xc2,0x93,0x25,0xa,0xed,0x4e,0xcb,0xd,0x5b,0x9,0xd6,0xe4,0xd4,0x89, 0x42,0x45,0x83,0x93,0x78,0x74,0x15,0xd0,0x35,0x9a,0x96,0x17,0x9,0x56,0x6c,0x27, 0x4c,0x40,0x62,0x93,0x72,0x9f,0x7d,0x3a,0x53,0x6c,0x90,0xd8,0x50,0x6c,0x83,0x7e, 0x8c,0x4a,0xa8,0x99,0xd9,0xdf,0x55,0x35,0x43,0x44,0x73,0xe6,0x80,0xe6,0x40,0x92, 0xfe,0x49,0xf3,0xbc,0xc,0x3a,0xa1,0x9d,0xec,0xbf,0xe1,0xdf,0x70,0xc2,0x65,0x3f, 0xa5,0x4b,0x4,0x86,0xfb,0x17,0xe,0x77,0xfa,0x77,0xe7,0x24,0xb8,0xbe,0x69,0xa7, 0x9a,0x45,0x54,0x93,0x2e,0x41,0xc5,0x10,0x66,0xd2,0xb5,0xdd,0xb5,0x89,0x70,0x60, 0xfb,0x4c,0xd1,0x8d,0xcb,0x69,0x8f,0x8d,0x20,0x97,0x95,0xcd,0x8a,0xf7,0x4b,0x1b, 0x23,0x4f,0x4c,0xb9,0x17,0x75,0xcd,0xae,0x2f,0xfd,0x4e,0x56,0x71,0xa2,0x8e,0xe9, 0x76,0x40,0x1b,0xba,0xbb,0x44,0xa4,0x7,0x34,0xb7,0x22,0x80,0xca,0x6a,0xed,0x32, 0x68,0x4b,0xf5,0x88,0x46,0x9d,0xd8,0x1f,0x2a,0x19,0x24,0xc6,0x8e,0xde,0x81,0x98, 0x9c,0x45,0x27,0x91,0x4e,0xa9,0x1e,0x1a,0x79,0x2d,0x38,0xf5,0x1f,0x65,0x11,0x4a, 0x9b,0x4b,0x1a,0xad,0x0,0x90,0x17,0x77,0xe4,0x79,0xbb,0x95,0x15,0x9f,0x8,0x39, 0xbc,0x42,0xba,0xa1,0xed,0xe3,0xa2,0x8c,0xa,0x45,0x40,0xd3,0xd1,0x7a,0xae,0x3c, 0xd0,0x42,0x5b,0x8d,0x5f,0xcb,0x3f,0xd6,0xfe,0xa4,0x3b,0xe5,0x5e,0xaf,0xec,0x19, 0x15,0x4e,0xe,0x99,0x5b,0x2d,0xf8,0x4c,0x20,0x64,0x0,0x17,0x70,0xae,0xa4,0xff, 0x59,0x48,0x85,0xad,0x30,0x2a,0xd4,0xb5,0x7e,0x18,0x84,0xfd,0x27,0x2,0x56,0xbb, 0x6a,0x4e,0x2f,0xbe,0xcb,0x3d,0x4e,0x31,0x84,0x82,0x43,0x85,0x59,0x34,0x1d,0x10, 0x9c,0x4f,0x65,0x96,0xcf,0xf9,0xb1,0x53,0x60,0x25,0xae,0x95,0xf1,0x9c,0x4c,0x88, 0x91,0x4d,0x64,0xa4,0x26,0xcc,0xf4,0xd,0x4d,0x88,0xdf,0xa3,0x52,0xda,0xfa,0xba, 0x1c,0x40,0x4a,0xbf,0xea,0x6b,0x3d,0x88,0x7e,0xa0,0x4e,0x40,0xfa,0xb0,0x19,0xb5, 0xfb,0x45,0xfc,0x83,0x1,0x6b,0xef,0x65,0xb0,0xfe,0xd9,0xb,0x13,0x70,0xe9,0x33, 0x5d,0x48,0x5c,0x81,0xc3,0x36,0xdb,0x30,0xc3,0x52,0xb7,0xa4,0xb8,0x5c,0xd8,0x27, 0xf9,0x47,0xa1,0xbd,0x97,0x3e,0x31,0x53,0xbb,0x3,0x77,0xdc,0x4d,0x22,0x75,0x13, 0x15,0x4a,0xd8,0x95,0x77,0x69,0xda,0x6,0xd0,0xbc,0xe,0xc3,0x46,0x96,0x6e,0x50, 0x93,0x47,0x68,0xbd,0x5,0xb0,0xa2,0x19,0x85,0x80,0x7f,0x35,0x6a,0x59,0xea,0x8b, 0xbf,0x46,0x71,0x9b,0x3b,0x4f,0xc2,0xe2,0xa2,0xfe,0x46,0xa3,0x8,0xfa,0x7b,0x13, 0x5,0x40,0x1d,0x94,0x3c,0xd3,0x93,0xa6,0x8a,0x1f,0x8c,0xfd,0x69,0x1f,0x2e,0x1a, 0x41,0x41,0xed,0xb2,0xf5,0x4c,0x2e,0xe4,0x6,0x7b,0xa4,0x20,0xe2,0xd8,0x50,0xd2, 0xf3,0x42,0xe4,0xbf,0x6c,0x51,0xd,0xd3,0xb8,0x96,0x3c,0x20,0x24,0xc,0x4e,0x3b, 0xc4,0x43,0x6a,0xba,0xfa,0xc6,0x81,0xd8,0xab,0x60,0x8,0x2e,0xfb,0x5c,0xa9,0x17, 0x94,0x4d,0x57,0xad,0xac,0xd8,0xac,0xc,0xb3,0x8b,0x2,0x49,0x8f,0x30,0xc4,0xc5, 0xc8,0x48,0x8f,0x8a,0xf7,0x79,0xc1,0xb9,0x4d,0x36,0x45,0xdd,0xbf,0xcf,0x1b,0xb9, 0x83,0x47,0x5a,0x9d,0x15,0xf5,0x86,0xe0,0x44,0xef,0xaa,0x3a,0xd7,0xc4,0x81,0xe, 0x1f,0x4b,0x10,0x92,0x38,0xe8,0xcb,0x85,0x73,0x51,0xf5,0x42,0x3a,0x57,0x51,0x10, 0x5b,0x4a,0x4,0xb7,0x3a,0x5a,0xf7,0x53,0xac,0xfb,0x22,0xb2,0x45,0x80,0x4c,0x6, 0xd,0x45,0x47,0x9c,0x8b,0xb4,0xdf,0xb0,0x29,0x8a,0x8d,0xb9,0x77,0xd0,0xb2,0x19, 0x95,0x44,0x4a,0x8e,0x4,0xae,0xc8,0x2f,0xf2,0x4f,0x90,0x2a,0xde,0xc,0x42,0xd4, 0x6b,0x4d,0x3d,0xb6,0x1,0x90,0x47,0x1d,0xdb,0x4a,0xb3,0x7b,0xf1,0x9b,0xfd,0x91, 0x60,0x47,0x17,0xa4,0x7d,0xa8,0xb2,0xed,0x61,0x13,0x38,0x91,0xf4,0xea,0xaf,0x29, 0x61,0x4f,0xb7,0x8c,0xbe,0x24,0x73,0xe1,0x4f,0x9,0x6f,0x1d,0xdf,0xd9,0xc4,0x91, 0xbe,0x48,0x66,0x86,0xe1,0x4,0x67,0xf6,0xbb,0xe7,0xa,0x8d,0x58,0x7c,0xb5,0x7d, 0x64,0x46,0x1d,0xb9,0x4e,0x55,0x16,0x1,0xeb,0xdc,0xa0,0x13,0x8c,0xe6,0xef,0xaa, 0x70,0x4b,0xd7,0xa8,0xf8,0x53,0x8d,0xeb,0x94,0xef,0x7,0x2b,0x56,0xc8,0xf5,0xbc, 0xc3,0x44,0xed,0xbf,0xd,0xa5,0x58,0x2e,0xe6,0x1e,0xa1,0xe1,0xdd,0xd8,0x22,0x23, 0x4e,0x46,0xd2,0x8e,0xd2,0x84,0xff,0x6d,0x86,0xb1,0xd9,0xd3,0x72,0x91,0xfc,0x2, 0x87,0x40,0xf1,0xb5,0x88,0xa3,0x7d,0xcd,0xd5,0x99,0x7f,0x46,0xd3,0x77,0x56,0x42, 0x84,0x43,0x44,0xb7,0x21,0x9a,0x11,0xd6,0xa1,0xda,0xe0,0x27,0x81,0xfd,0xcb,0x4b, 0x4,0x4b,0xb2,0xa3,0x20,0xbd,0xe6,0x74,0xa1,0x76,0xd6,0x29,0x7e,0xf8,0xf5,0xe0, 0xce,0x4a,0x7a,0x88,0x61,0x3a,0x29,0xef,0xbb,0xb5,0x66,0x19,0x9,0x7b,0x42,0x48, 0xa2,0x41,0xca,0xb4,0x73,0x62,0x8,0xad,0xff,0x90,0xcc,0x4f,0x59,0x1c,0xb3,0x22, 0xac,0x4d,0xec,0xa5,0x15,0x95,0x4d,0x18,0xf3,0x1f,0xee,0xfe,0x30,0x9b,0xaa,0xce, 0x82,0x4e,0xd5,0x99,0x39,0xd0,0x15,0x99,0x99,0x74,0x66,0xf1,0x23,0x2e,0x71,0xba, 0xd3,0x4d,0xb0,0x87,0x7f,0xca,0xe,0x9d,0x47,0x43,0x1b,0xf2,0xab,0x2a,0xbf,0x51, 0x44,0x4d,0x8,0x9f,0xd4,0x56,0x41,0xd0,0x26,0xce,0x1d,0x14,0x89,0xe3,0x7a,0x9a, 0xac,0x4a,0x6c,0xa0,0x65,0xe1,0x90,0xa5,0xbd,0x56,0xff,0x7e,0x20,0x43,0xac,0xcf, 0x28,0x4f,0xdb,0xae,0xc5,0x27,0x28,0x9e,0x6b,0xb8,0x19,0x7f,0x6d,0xbc,0xb6,0xe6, 0x40,0x49,0x3f,0x9a,0x90,0x41,0x4e,0xe8,0xf8,0x4,0x2d,0x70,0x64,0xa7,0xdd,0xee, 0xbe,0x40,0x12,0xb3,0xe,0xcf,0x9b,0x91,0xd5,0xc5,0x69,0xaa,0x7a,0x97,0x98,0x9f, 0x35,0x4e,0xac,0x8a,0xfa,0xce,0x2f,0xe8,0xa4,0xbc,0xf,0xa4,0x84,0x1,0x95,0x1a, 0x2b,0x4d,0xe6,0x92,0xf6,0xba,0xdf,0x1e,0x10,0x70,0xa6,0xc3,0x86,0xc8,0xff,0xc0, 0x95,0x4e,0xe6,0x99,0xe0,0x7a,0x2,0x61,0x36,0xbb,0xfb,0xd0,0x15,0x71,0x5a,0x8c, 0x9c,0x4c,0x3b,0x9c,0x94,0xad,0x66,0x36,0x2d,0x71,0x6f,0x89,0xc0,0xd,0xe6,0x4, 0xd5,0x44,0x67,0xa9,0x1a,0xad,0x8e,0x70,0xb4,0x65,0xf4,0x9d,0xf5,0x8f,0x2f,0xa9, 0xdc,0x4e,0x3,0x8b,0xa6,0x8a,0xcd,0x3b,0x6b,0x4f,0xf,0x59,0x12,0x4c,0xf,0xc8, 0xec,0x48,0x31,0x8c,0x49,0xd6,0x6f,0x41,0x5d,0xf6,0x65,0x18,0x98,0x3b,0xbc,0x95, 0x2c,0x44,0x16,0xa0,0x88,0x46,0x7c,0x4b,0x5b,0x7c,0x30,0xed,0x20,0xf,0x5c,0x7f, 0x1a,0x4e,0x7d,0x83,0x4c,0xc6,0x6b,0x7a,0x98,0xe2,0x12,0x9b,0x18,0x88,0xa6,0x22, 0xa8,0x4b,0x62,0x89,0xdd,0xdf,0x78,0xa7,0x15,0xe5,0x6a,0x9c,0x7,0xfc,0xc6,0xff, 0xf5,0x45,0x2d,0x95,0xa1,0x19,0xb1,0x62,0x3f,0xff,0x41,0xe0,0x33,0x48,0xef,0x87, 0x94,0x46,0x19,0xb7,0x3,0xe3,0x19,0xf3,0xae,0x5a,0x9c,0x91,0x43,0xe3,0x55,0xd2, 0x82,0x46,0xc3,0xab,0x19,0x9,0xd9,0xfc,0x5b,0x96,0x2f,0xc5,0x29,0x25,0x11,0x19, 0x9b,0x4b,0xbb,0x8f,0x3e,0x9d,0x64,0x72,0xd4,0x8a,0x4,0x6c,0xe1,0x35,0x0,0x69, 0x59,0x4e,0xb8,0xab,0xdf,0xaa,0xea,0x5d,0xd1,0x59,0x6d,0xa8,0x28,0x8d,0x59,0xcb, 0xd5,0x45,0x2f,0xaa,0x7e,0x9c,0x24,0x83,0x3c,0x4f,0xe7,0x5e,0xe5,0x6d,0x51,0x91, 0x9,0x4a,0xb0,0xa5,0xa2,0x58,0x7b,0x2c,0x3d,0xa5,0xd,0x84,0xaf,0xd8,0x70,0x57, 0x27,0x41,0x63,0xb6,0xbd,0x5a,0xd3,0x49,0xb,0xa,0x19,0x39,0xe8,0xfe,0x41,0x1c, 0xb8,0x42,0x3c,0x88,0xa2,0x7f,0xbb,0x49,0x1e,0x32,0xca,0x7f,0xd5,0xd6,0x8,0xa8, 0x66,0x48,0x35,0x88,0xb0,0xed,0x50,0xb2,0x6b,0xea,0xf2,0xeb,0xde,0x71,0x78,0xab, 0x4d,0x48,0xe4,0x95,0x56,0x84,0xc7,0x7f,0xba,0x42,0xec,0x13,0xb4,0x37,0x72,0x2f, 0xb,0x4f,0xb7,0x8c,0x78,0x34,0x83,0xd,0x7d,0x70,0xc0,0xa2,0xcf,0xfe,0xcb,0x32, 0xb4,0x44,0x36,0x9c,0xee,0x8a,0x50,0xe4,0xee,0x5d,0x68,0x5c,0x78,0x1,0xb5,0x5f, 0xdc,0x45,0xd2,0x9e,0x70,0xd0,0x5f,0x4,0x67,0x13,0xd7,0x45,0x92,0x30,0xd9,0x86, 0xdd,0x42,0x16,0x83,0x94,0x97,0xc4,0xa9,0xd0,0x6e,0xd8,0xa6,0xec,0x8b,0x7b,0x5d, 0xd7,0x4a,0x48,0x96,0x96,0x65,0x7f,0x65,0xbc,0x3,0xa5,0xbe,0x8e,0x19,0x57,0xcb, 0x67,0x41,0x5,0xae,0x1d,0x30,0x44,0x65,0x11,0xb4,0xd5,0xef,0xc6,0xff,0x55,0x6b, 0xd8,0x41,0x1b,0xb6,0x21,0xfb,0x6b,0xc,0x16,0xa1,0x44,0x7c,0x54,0x6d,0x69,0xac, 0xd6,0x40,0xf0,0x92,0xd8,0x19,0x75,0x74,0xd0,0x1e,0xb0,0x42,0x6a,0x92,0xdf,0x80, 0xda,0x47,0xb1,0xba,0x9f,0x64,0x21,0xc3,0x6a,0x81,0x3c,0x7d,0x30,0xbc,0xec,0x51, 0xb1,0x49,0x77,0x87,0x94,0xd3,0xc3,0x0,0x2c,0x30,0x4e,0xf,0x8c,0x41,0x4,0x6a, 0x77,0x48,0x17,0x91,0xb,0xec,0x80,0xed,0xc,0x10,0x9,0xf5,0xb,0xd0,0x3,0xd2, 0x3b,0x4d,0xb9,0x8e,0xc3,0x19,0x27,0x7a,0x3f,0x23,0xac,0xa0,0xe,0xb1,0x24,0x44, 0xbc,0x42,0xc5,0x82,0xed,0x47,0x2d,0x2f,0xb5,0xde,0x33,0xd8,0x8,0x14,0x12,0x54, 0xc3,0x41,0xcd,0x89,0x1c,0xb3,0x33,0x1b,0x5d,0x6,0x69,0x1b,0x89,0x21,0x3d,0x18, 0x18,0x4e,0x69,0x96,0xc3,0xcc,0x19,0x6,0x1d,0xbe,0x84,0xcb,0x71,0xac,0x33,0x3d, 0x98,0x40,0x99,0xb9,0x83,0xfc,0x4e,0x24,0xb3,0xe3,0x18,0x70,0xc2,0xb6,0x26,0xb, 0x2a,0x4a,0x61,0x8e,0x85,0x5f,0xbf,0x41,0x7a,0xcb,0x6f,0x7a,0x3e,0x52,0x79,0x11, 0x7e,0x4d,0x73,0xa5,0xd2,0x4d,0x3,0x7,0xa8,0x1b,0x36,0xfa,0xd7,0xeb,0x83,0x88, 0xe9,0x4d,0x81,0x9c,0xa8,0x10,0x9,0x8b,0xff,0xda,0xc3,0x64,0x1,0x7a,0x72,0xb8, 0x97,0x46,0xcf,0x9e,0x76,0xe9,0xb9,0x51,0x24,0xec,0x11,0x5a,0xb9,0xf1,0xe1,0x98, 0xf0,0x42,0xb,0xa0,0xbf,0x8f,0xbb,0xf7,0x47,0xfd,0xc5,0xec,0xed,0x1f,0x6f,0x52, 0x5f,0x40,0x99,0xaf,0xc6,0xb3,0x86,0x35,0x5,0x7b,0xba,0x78,0x21,0xfe,0xa7,0x59, 0x6f,0x42,0x28,0x96,0x1a,0x57,0x10,0x30,0xf1,0x2e,0xf6,0x9,0xbe,0xd5,0x9c,0x49, 0xab,0x4b,0x24,0xbb,0xd9,0x8d,0x15,0x4d,0xb3,0x33,0x4b,0xdc,0xb5,0x6d,0xec,0x4f, 0x9b,0x44,0x93,0x86,0x23,0xec,0xdf,0x47,0xa4,0x6e,0x6e,0xd0,0xe5,0xbf,0x19,0xd5, 0xa1,0x4c,0xf7,0x82,0xae,0x5c,0xb,0xd7,0xe7,0xfb,0x9b,0x8d,0xec,0x59,0xf,0xcf, 0x20,0x45,0x2d,0x8c,0xb7,0x97,0x1,0x83,0x8c,0xbc,0x91,0x1c,0x6e,0x71,0x8c,0x65, 0x80,0x42,0xda,0xa0,0x17,0x9,0x3a,0x48,0x93,0x18,0xd7,0xde,0x70,0xa7,0x25,0x52, 0x37,0x45,0xe8,0x99,0xc7,0xe6,0x7,0xd4,0x16,0x59,0x22,0x49,0x3a,0x71,0x5c,0x6f, 0x3b,0x4b,0xfc,0x96,0x90,0x0,0x46,0x77,0x28,0x9,0x1a,0x25,0xba,0xd,0xfd,0x8, 0x5d,0x41,0x10,0x80,0xff,0x23,0x10,0x5a,0xd,0x85,0xec,0xdf,0x9c,0x9c,0xa6,0x78, 0x36,0x4c,0xcb,0xb6,0x43,0x83,0x9e,0xea,0xfc,0x7c,0x82,0x7c,0x28,0x79,0x50,0x1f, 0x5f,0x4f,0xbd,0xaa,0xd7,0xb4,0xad,0xa7,0x58,0xd9,0xc6,0x69,0x58,0xe3,0xb3,0xf2, 0xb4,0x46,0x94,0x85,0xd5,0x43,0xb0,0x92,0xfd,0xd7,0x15,0xa9,0x2e,0xde,0x42,0x6e, 0x58,0x43,0x18,0xb0,0x7b,0x75,0x1d,0xb8,0x2f,0xb8,0x5d,0x44,0x87,0xbf,0x86,0xb6, 0xc9,0x47,0x21,0xb5,0xc2,0x6d,0x32,0xe0,0xe3,0xa3,0x52,0x8b,0x2a,0x7f,0xe0,0x2e, 0x2b,0x4c,0x13,0xa9,0x13,0x13,0xf1,0xdb,0x19,0x80,0xfc,0xda,0xcf,0xea,0x4d,0xc, 0x8a,0x4b,0xa,0xb0,0xdd,0x92,0x52,0x1,0x48,0x63,0xdd,0x65,0xb9,0x56,0x32,0x20, 0x69,0x45,0x67,0x99,0xfe,0x5a,0xba,0x2b,0x1,0x46,0xa0,0x7b,0x8c,0xbc,0x13,0x2b, 0xcb,0x42,0xba,0xa5,0xe3,0xe5,0x97,0xe3,0xa4,0x41,0xe5,0x4,0x3c,0x78,0xbc,0xe8, 0xae,0x47,0x9,0xa3,0xf4,0xcd,0xd9,0x67,0xe9,0xdb,0xae,0x8f,0x64,0x82,0x5,0x46, 0x4c,0x43,0x92,0x91,0x78,0xe5,0x3b,0x24,0x48,0xb1,0x46,0xee,0xaf,0xcc,0x32,0xc0, 0xef,0x45,0x7,0x9e,0x50,0x3c,0x69,0xac,0x96,0x35,0x8b,0x5a,0xa5,0x8a,0x25,0xd1, 0xc6,0x46,0x22,0x96,0x55,0x1a,0x98,0x56,0xe9,0x94,0x11,0x27,0x4d,0xd,0x26,0x3f, 0xe3,0x41,0x65,0xa1,0xa6,0xf9,0xb0,0x3b,0xce,0x6,0xc6,0x7e,0xbb,0x4c,0x8b,0x38, 0xb6,0x4c,0x74,0x99,0xf3,0xa1,0xb,0xcc,0x25,0x97,0xac,0xf9,0xcb,0x55,0x6,0x5d, 0x5c,0x43,0xce,0xbb,0x52,0x2d,0x1a,0xe0,0x11,0xf6,0x4a,0x10,0x64,0x24,0x43,0xe1, 0x28,0x4d,0xd6,0x84,0x71,0xac,0x97,0xd8,0x68,0x5e,0x8a,0xd6,0x85,0x38,0x4,0x3d, 0x59,0x40,0xf6,0x88,0x71,0x84,0xde,0xf8,0x17,0xc3,0xa7,0x6a,0x98,0xed,0x65,0x37, 0x90,0x49,0x28,0xb4,0x5f,0x6f,0x29,0x96,0xaa,0x1d,0x56,0x41,0xd5,0xc7,0x86,0x5f, 0xd1,0x42,0x24,0x8b,0x3b,0x2c,0x9e,0xd0,0x7a,0xbc,0xfe,0x80,0x78,0x89,0x7f,0xae, 0x24,0x49,0x27,0xaa,0x53,0x6b,0xe6,0x36,0x1f,0xc7,0x97,0xb6,0x26,0xdb,0xdb,0x7b, 0xec,0x47,0xd2,0x9a,0x39,0xf7,0xc3,0x75,0xc5,0xe1,0x10,0x89,0x84,0x6e,0xdd,0x7a, 0xbe,0x40,0x4c,0x95,0x1a,0x16,0xf,0x76,0x9a,0xbb,0x5d,0x2a,0x48,0x3,0xb5,0x83, 0x5e,0x43,0xad,0x94,0xce,0xd2,0xd7,0xb9,0x5e,0x6e,0xa,0xbb,0xd4,0x30,0xc7,0x5a, 0x2c,0x41,0x82,0x99,0xee,0x2,0x17,0x3,0xfb,0x89,0xee,0xe2,0x17,0xee,0x9a,0x1b, 0xef,0x46,0x18,0x80,0x91,0xd5,0x7a,0xb7,0xc1,0xd5,0x3f,0x7c,0x5d,0x6,0xe,0xc4, 0x76,0x47,0xc8,0xbf,0xeb,0x4d,0x65,0x9c,0x17,0xb4,0x73,0x16,0x81,0xe5,0x3c,0xfe, 0x50,0x4d,0xbe,0xbb,0x22,0xbf,0x6b,0xc,0xab,0x8f,0xa,0xf3,0x82,0x62,0xd,0x4c, 0xf1,0x4e,0xcb,0x81,0xbb,0x73,0x9d,0xd,0xe1,0xbd,0x15,0xca,0x1c,0x8c,0x15,0x1d, 0x37,0x49,0xd,0xaa,0x40,0x2d,0x4d,0xe7,0x30,0xa5,0x94,0x83,0x9c,0x6c,0x96,0x40, 0x1a,0x42,0x5f,0x8b,0xed,0xf7,0x15,0x1f,0x66,0x25,0xe,0xbd,0x95,0xb6,0xc2,0x3c, 0xbf,0x4f,0x74,0x87,0xbc,0xc1,0x51,0xc1,0xa1,0x8d,0x92,0x83,0xf9,0xad,0xd1,0x16, 0xed,0x44,0x8,0x8f,0x53,0x70,0x74,0x76,0xa0,0x36,0x96,0x3c,0x56,0xce,0xb8,0x7e, 0xfc,0x4c,0x76,0x95,0x7c,0xa7,0xf6,0xe,0x27,0x29,0x46,0xa2,0x8,0xf4,0x44,0x6d, 0x85,0x4e,0xe8,0x96,0x60,0x22,0x4,0x6e,0x3d,0xb1,0xc1,0x18,0xf0,0x4f,0x14,0x36, 0xb5,0x4e,0x49,0x96,0x6b,0x55,0x63,0x29,0x63,0xb7,0x0,0x16,0x55,0x83,0x6e,0x4f, 0xcf,0x43,0xc,0x93,0xa,0x47,0x54,0x68,0x25,0xbe,0xe,0x45,0x59,0x31,0x8a,0x60, 0x3c,0x49,0x74,0xad,0x24,0xd4,0xa,0x7a,0xa6,0xb,0xdd,0xe,0xfb,0x9c,0x3e,0x88, 0x5d,0x48,0x47,0xb7,0xf3,0x19,0x88,0xed,0xe1,0x79,0x8e,0x6,0x43,0x4b,0x4e,0x1, 0x45,0x42,0x66,0xab,0xab,0x11,0x45,0xfa,0x8b,0xc3,0x40,0x42,0xab,0xd4,0x7,0xfc, 0x27,0x47,0x86,0xa1,0x72,0xb7,0x72,0xaf,0xb6,0x0,0xf5,0x86,0xc2,0x8b,0xc4,0x35, 0xc9,0x4e,0xbe,0x9d,0xd9,0xc1,0x8a,0xbd,0xee,0x98,0x1b,0xb9,0x45,0xc5,0xec,0x6d, 0xf5,0x4a,0xde,0xa1,0x8d,0xd2,0xb9,0xf9,0xcc,0xd3,0x52,0xc1,0x37,0xef,0x58,0x36, 0xe4,0x4a,0xad,0xac,0x4e,0xa5,0x2e,0x5c,0xf0,0xc5,0x4c,0xa3,0x2,0xf1,0x8e,0xa0, 0x88,0x40,0xfa,0xad,0x5,0xe,0xa2,0xc0,0xf8,0x6d,0x8d,0xc2,0xa0,0xa9,0xb9,0x7, 0x77,0x4b,0xde,0x9d,0xc4,0xfc,0x97,0xdf,0xc3,0xf7,0x96,0xbf,0xa0,0x72,0xd7,0xfa, 0x92,0x47,0x41,0xa3,0x41,0xe9,0x93,0xf5,0xab,0x87,0x5,0x77,0x38,0xd0,0x76,0x7f, 0x85,0x4a,0x6,0x8e,0x10,0xd3,0xce,0x6b,0x97,0x6e,0xd4,0x1b,0xe,0x4b,0x6b,0x9a, 0x85,0x4a,0x92,0x89,0xb3,0x48,0x8b,0x97,0xd5,0xfe,0xf,0x1,0x5c,0xca,0x79,0xe5, 0x8e,0x47,0x6f,0x99,0x4,0x26,0x54,0xc0,0x5c,0x9e,0xb3,0x3f,0x5e,0xd6,0x4a,0x47, 0x28,0x4d,0x94,0xa3,0x1d,0xeb,0x45,0x3,0xb5,0x2b,0x7e,0xba,0x68,0xe2,0xd9,0xdd, 0x92,0x41,0x5b,0x83,0x3d,0x12,0xc8,0xf6,0x80,0x7f,0x1e,0x5e,0x9,0x65,0x55,0x18, 0x79,0x4e,0xec,0xac,0x25,0x94,0x23,0x9,0xfd,0xbd,0xb6,0x81,0xc7,0xc0,0xd3,0x44, 0x18,0x40,0x12,0xad,0xea,0xd7,0xc9,0x11,0x53,0x0,0x3c,0x87,0x72,0x7d,0xb1,0xf0, 0x5b,0x4a,0x9a,0xbe,0x48,0xa1,0x3b,0x75,0x54,0xe7,0xc6,0xe0,0xcd,0x35,0xb1,0xba, 0x2b,0x4e,0xc8,0x93,0xf4,0xd0,0xef,0x81,0xbd,0xdd,0xde,0x9d,0x4a,0x55,0xd4,0xa, 0x7b,0x40,0xb8,0x8b,0x2a,0xb1,0x35,0xfc,0xf1,0x43,0xe1,0x7a,0x38,0x2a,0x86,0x7e, 0xd1,0x4b,0x82,0xa0,0x98,0x30,0xbb,0xf2,0x50,0xa6,0x98,0x2f,0xb6,0x4f,0xd5,0xca, 0x75,0x48,0xa2,0x98,0x20,0x85,0xe0,0x6e,0x42,0xea,0x18,0xf7,0x13,0x99,0x2a,0xe9, 0xf9,0x43,0xa8,0x8b,0xd,0x1d,0x5b,0x4e,0xe9,0xa4,0x34,0xe0,0xe9,0x6f,0x20,0x6a, 0x22,0x4d,0xd6,0x90,0x7b,0x86,0x74,0xe3,0xfe,0xbe,0x2c,0x58,0x42,0xd8,0x50,0x81, 0x1c,0x4b,0x3f,0x85,0xc8,0x6e,0x7f,0x98,0x74,0xea,0x26,0x76,0x99,0x37,0x81,0x61, 0x52,0x41,0xd,0xb3,0xaa,0x1c,0x84,0xe2,0x5e,0x66,0x63,0x8d,0x8,0x61,0xf8,0x9, 0x45,0x4f,0x67,0xb3,0xfb,0x2c,0xf0,0x49,0xd5,0x94,0x27,0xea,0xa7,0xeb,0x9b,0xa8, 0x1d,0x4f,0x1,0x9b,0xff,0xf6,0x3e,0x57,0x29,0xef,0x40,0x7a,0xeb,0xca,0xc5,0x29, 0xbe,0x47,0x8e,0xb3,0x2a,0xa7,0x4c,0x27,0x14,0x84,0xef,0x71,0xe8,0x4f,0x82,0xa2, 0xfc,0x47,0x3a,0x83,0x86,0x35,0xc,0x17,0x91,0x9e,0x9d,0x74,0xca,0x95,0x29,0x77, 0xe3,0x4a,0x82,0xaa,0xfa,0xa8,0xb3,0xd7,0x36,0x5c,0x4f,0xda,0x97,0x44,0x16,0xb4, 0xa8,0x49,0x67,0x91,0x9f,0x75,0x41,0xa9,0x80,0x8e,0x4b,0xc8,0x0,0xe6,0x43,0xa4, 0xfc,0x4b,0xeb,0x91,0xed,0xeb,0xff,0x83,0x15,0xd8,0x9f,0x60,0xf5,0x7c,0xc6,0x13, 0xda,0x43,0xa1,0xbe,0x30,0xa7,0x91,0xd0,0x7a,0x82,0x9e,0xbd,0x33,0x31,0x9c,0x35, 0xf5,0x49,0x8d,0x88,0xda,0xe,0x40,0xd3,0x27,0x95,0x97,0x5d,0xd7,0x4d,0xb1,0x3e, 0x3d,0x47,0xa9,0xbb,0x17,0xb9,0x32,0xf4,0xa5,0x5a,0xaf,0xc5,0xfa,0x89,0x26,0xd5, 0x35,0x4a,0x51,0xba,0x4d,0x9c,0x6,0x57,0x1b,0x28,0xfc,0x49,0x7,0x79,0x90,0x18, 0xb9,0x45,0x8a,0xb7,0x37,0x63,0x94,0xa6,0x14,0x33,0x97,0xab,0x12,0x3b,0x63,0x2f, 0x43,0x4f,0xe6,0xa9,0xfd,0x6d,0xf,0x90,0xf8,0xb2,0x5d,0xc9,0x9,0x7d,0xfa,0x9, 0x9d,0x40,0xf8,0xad,0x34,0x73,0x59,0xab,0x88,0xb4,0x88,0xba,0xd4,0x92,0xd3,0x65, 0x33,0x40,0xa7,0x82,0x33,0x90,0xe8,0x1f,0x19,0x2c,0xf1,0xe6,0x64,0xb3,0x13,0x55, 0x6a,0x48,0xa9,0x84,0xef,0xca,0x5a,0xd0,0x12,0x1e,0xda,0x6b,0xd7,0xbf,0x17,0x15, 0x7,0x48,0x8a,0xad,0x87,0x35,0xf4,0x10,0xea,0x4,0x58,0x25,0xff,0xc0,0x5e,0x5e, 0xf6,0x4f,0x11,0x9d,0xac,0x24,0x9a,0x46,0xb4,0xab,0x47,0xa0,0x56,0xa7,0xb9,0x7, 0xbe,0x47,0xff,0x84,0x55,0xc1,0x63,0x79,0xda,0x9e,0x44,0x9,0xc3,0x74,0xd8,0x19, 0x9b,0x42,0x71,0x8f,0x10,0xa9,0xbc,0x29,0x9f,0x72,0x54,0xf3,0x1b,0xb9,0x3d,0xfb, 0x81,0x49,0x4c,0xb7,0xac,0x56,0x89,0xbf,0x34,0x7d,0x51,0xd3,0xb5,0xa1,0x31,0x23, 0xd7,0x4d,0x2d,0x92,0x83,0xaa,0xfe,0xe0,0x23,0x33,0x7b,0xa1,0x4e,0xaa,0x77,0x66, 0x18,0x44,0x27,0x95,0x43,0x17,0xe6,0x47,0x4c,0x9a,0x24,0xee,0x45,0x57,0x4b,0xfc, 0xc2,0x4f,0xef,0x90,0xbb,0xdd,0x48,0x68,0x2b,0xff,0x92,0xa3,0x39,0xdd,0xab,0xf1, 0x87,0x4d,0xf6,0xba,0x61,0xc7,0xf8,0x47,0xa4,0x2a,0x9d,0xa1,0xb0,0xba,0xd1,0xb6, 0xb0,0x4d,0x28,0x9d,0xe7,0xf8,0xc7,0x5,0x37,0xaf,0xda,0x5e,0xa6,0xd7,0x97,0x74, 0xe3,0x4f,0x97,0xae,0xbf,0x91,0xbb,0x94,0xf2,0xf5,0xd9,0x4c,0xee,0xd9,0x81,0xc1, 0x4f,0x4f,0x18,0xa2,0x22,0x42,0x86,0x87,0x5a,0x90,0xef,0x1,0x8c,0xb2,0x6d,0xe2, 0x77,0x43,0x2f,0xa7,0xe6,0x2b,0xed,0xbd,0xbc,0x18,0xc3,0x7c,0x24,0xc6,0xd2,0x6a, 0x87,0x41,0xe6,0x96,0x5d,0x58,0x8f,0x12,0xdd,0xb9,0x2c,0xe0,0x59,0xe7,0x1f,0x36, 0xa2,0x4d,0xef,0xb6,0x3d,0x9b,0x36,0x35,0x15,0x45,0x1a,0x10,0xde,0xd4,0x82,0xf2, 0xb0,0x47,0xcb,0x91,0xc3,0x53,0x60,0xa6,0xe7,0x35,0xac,0xd2,0x8b,0x4d,0xe5,0xed, 0x58,0x4b,0x71,0x96,0x87,0xde,0x6c,0xa3,0x5,0xf6,0x8f,0x1f,0xb,0x83,0xbd,0x9c, 0xa4,0x46,0xf,0x84,0x1d,0xb4,0xd8,0x5a,0x8b,0xd,0x16,0xd1,0x85,0xf9,0x19,0x74, 0x7d,0x43,0x83,0x9a,0xe,0x9c,0x85,0x2,0xb8,0xda,0xed,0xd1,0xe9,0x26,0x55,0xe2, 0x86,0x4c,0x1d,0x98,0xa7,0x46,0xd,0x78,0xcf,0x36,0xba,0x32,0xad,0x13,0x11,0x3b, 0x1,0x48,0xf,0x90,0xc7,0x26,0x37,0x64,0x9c,0x8,0xd1,0x6,0xa3,0x3a,0x25,0xd3, 0x1d,0x4a,0x99,0x92,0x51,0x99,0xca,0xb3,0xd8,0xf7,0x8,0x4d,0x9f,0x6f,0x68,0x95, 0x76,0x4d,0xfa,0x81,0xba,0x79,0x96,0xa5,0xff,0x46,0xf1,0x39,0xe9,0x90,0x41,0xd8, 0x51,0x4d,0xb1,0xbf,0x15,0x6b,0x97,0x97,0x66,0x8a,0xee,0xc7,0x2b,0x8b,0xed,0x52, 0xb0,0x4f,0x4,0x86,0x9e,0xb6,0x83,0x82,0x34,0x6e,0x70,0x7c,0xd,0xb6,0x4,0x67, 0x5a,0x47,0x52,0xbf,0x5c,0x4d,0x6b,0x96,0xb0,0xa3,0xbb,0xd1,0x3e,0x95,0x8b,0x4f, 0x79,0x43,0xdb,0x90,0xc0,0xb7,0xa3,0x24,0x3e,0x9b,0xa5,0x64,0x62,0xe1,0xfd,0xf1, 0x48,0x46,0x2e,0xa1,0xfd,0xa1,0x95,0xb6,0x1,0xf,0x43,0x23,0x19,0xbc,0xe5,0x6d, 0x7e,0x43,0x5c,0x89,0x80,0x83,0xaf,0x5a,0x5d,0x52,0x16,0x21,0xd1,0xcf,0xca,0xf5, 0x39,0x41,0x35,0x83,0xa1,0x2,0xde,0x44,0xd0,0xb2,0x20,0xc6,0xf2,0xc4,0xfa,0xec, 0xf7,0x4e,0xcc,0xa9,0x70,0x91,0xd6,0x16,0x9b,0xc9,0x21,0x44,0xd1,0xf1,0x6b,0x52, 0x71,0x46,0x95,0xb4,0x3,0xfe,0x4a,0xde,0xfb,0x40,0x9e,0x50,0xa2,0xc9,0xad,0xe3, 0xba,0x48,0xa6,0x9e,0x70,0x66,0x1f,0xb3,0x1e,0xfb,0xce,0x2,0x35,0x3a,0x2b,0xd1, 0xcb,0x4c,0x3d,0xa0,0xfd,0xe1,0x19,0xd,0xdb,0x6,0xbe,0xc,0xf1,0x8c,0xf5,0x8a, 0x7,0x44,0x82,0x96,0x9,0x80,0xac,0x74,0x17,0x67,0x92,0x74,0x80,0x5d,0xf6,0xa0, 0xc5,0x48,0xe8,0x88,0x1d,0xe7,0x97,0x6e,0x6c,0x40,0x98,0x34,0x1e,0x30,0x16,0xd, 0xd6,0x47,0x70,0xa7,0x9f,0xac,0xa4,0x80,0xfa,0xb1,0xae,0x2,0xb1,0x2e,0x1e,0xa5, 0xc8,0x41,0xc2,0xbe,0x99,0x48,0x77,0x68,0x88,0xd3,0x47,0x28,0xa0,0xf9,0xac,0x55, 0x48,0x4c,0xe2,0xbf,0xcf,0x1e,0x41,0x67,0xf5,0x6,0x54,0x5e,0xcd,0x89,0xf,0xf3, 0xec,0x4a,0x19,0xb0,0xe8,0x40,0x5d,0xbc,0xf5,0xf7,0x7,0x96,0xb6,0xa8,0x5c,0x81, 0xb4,0x46,0xc4,0x8b,0xf6,0x10,0x12,0xde,0xf2,0xc8,0x45,0xe8,0x7,0x57,0xfe,0xbb, 0x70,0x49,0x5d,0x9c,0x4f,0x78,0xcb,0xdc,0x5e,0x68,0x80,0x5d,0x49,0x8b,0x92,0x12, 0xaf,0x48,0xa6,0x83,0x54,0xc,0xac,0x10,0x10,0xf8,0x1e,0xd4,0xf9,0x8d,0x20,0x24, 0xb6,0x46,0x35,0xbf,0x8a,0x64,0xdf,0x83,0xa9,0xc,0x91,0x5,0x47,0x53,0x8d,0x44, 0x23,0x42,0x68,0x9a,0xfd,0xbf,0xf,0xa2,0x2d,0x74,0xd0,0x6e,0x60,0x41,0x98,0x50, 0x5,0x44,0x2b,0x9e,0x17,0xfc,0xc7,0x7e,0x12,0x69,0xa9,0x6e,0x45,0x66,0xf4,0xd9, 0xf6,0x4f,0x20,0xb0,0x45,0xbf,0xed,0x33,0x2a,0x47,0x11,0x92,0xe,0x59,0x19,0x76, 0x36,0x4d,0x74,0x84,0xe8,0xce,0xd6,0xcc,0xa0,0x58,0x56,0x21,0x9f,0x81,0x15,0xc5, 0x33,0x41,0x38,0xb9,0x18,0xd3,0x1e,0xbe,0xb1,0x16,0x25,0x11,0xfa,0x9,0x55,0x43, 0xaa,0x40,0x6c,0x88,0x6,0x7d,0x99,0xf6,0x7c,0xfe,0x14,0x3d,0x16,0x20,0x66,0x38, 0xd2,0x4d,0xaf,0xab,0xd6,0x95,0x7,0x86,0xd0,0xb5,0x49,0x77,0xa8,0x98,0x1,0x19, 0xc9,0x45,0x5c,0x89,0x97,0xb8,0x98,0xb,0x9,0x14,0x28,0x96,0x7b,0x47,0x37,0x2f, 0x45,0x49,0xf2,0x81,0x1a,0x5a,0x5c,0x2d,0x98,0x88,0xc8,0x8a,0x4b,0x33,0xe0,0x83, 0x74,0x4c,0xf0,0xbe,0xf2,0xc1,0x9,0x28,0x24,0xb5,0xab,0x6c,0x58,0x9b,0x58,0x34, 0xf8,0x4c,0x36,0xa6,0x62,0xaf,0xfa,0x4b,0xab,0x5d,0x9d,0xab,0x3a,0x1b,0x3c,0xed, 0x2,0x4d,0x6d,0xbc,0x5d,0xc5,0x47,0xf6,0x7d,0xe,0xf6,0xe0,0xa,0xac,0xe0,0x4c, 0xbc,0x4b,0x67,0x8d,0xb,0xa6,0x5c,0xe3,0x73,0xb4,0xad,0xb,0x3d,0x1b,0xf7,0x7f, 0x11,0x4f,0xc0,0xa2,0x5f,0x6,0xdf,0x34,0x26,0xe,0x34,0xdc,0xfc,0x3f,0xe6,0x42, 0x60,0x48,0x22,0x87,0xd1,0x4c,0x36,0x54,0x39,0xe3,0x43,0x46,0x81,0x8d,0x94,0x4d, 0xd2,0x4a,0x89,0xb8,0xe6,0xbe,0xd1,0x50,0x23,0x50,0xed,0xa,0x44,0xde,0x91,0x7b, 0xad,0x4f,0xed,0xb9,0x32,0x8e,0xf8,0x20,0xeb,0x61,0x9b,0x41,0xa7,0xa2,0xee,0x6, 0xf7,0x4b,0x10,0xbe,0x1f,0x95,0xf9,0xeb,0x62,0xa4,0x7d,0x2b,0xb6,0x1b,0xa,0x36, 0xab,0x4b,0xdc,0x8a,0xe0,0xc9,0x9b,0x18,0x27,0xf7,0x37,0x79,0x8a,0x90,0x40,0x4f, 0xab,0x4e,0xd8,0xb8,0xf7,0x43,0x2e,0xcc,0x1e,0x70,0x6c,0x69,0xed,0x5d,0x28,0xf2, 0x28,0x43,0xe5,0x84,0x5,0x82,0x49,0x5a,0xed,0x31,0x46,0xe0,0x89,0xd,0xfc,0xea, 0xf,0x4b,0xe9,0xb6,0xd1,0xf3,0x9c,0x79,0x79,0x9c,0x1f,0x14,0xc3,0xff,0x87,0x6e, 0xc6,0x44,0xaf,0xb9,0x7a,0x37,0xd6,0x21,0x8,0x6a,0xe,0x75,0x12,0x46,0xe7,0x14, 0x37,0x49,0xbf,0xb1,0xc7,0x13,0xf9,0xb9,0x51,0xc8,0xa4,0xba,0xe9,0xe3,0xc7,0xb1, 0x8c,0x47,0x14,0x8d,0x1c,0x84,0x7f,0x9e,0x4,0xdf,0xdb,0xb7,0x9f,0x6f,0xf2,0x14, 0xd,0x4f,0x11,0xb7,0xd7,0x3e,0xfb,0x1b,0xb2,0x98,0x2d,0xba,0x6,0x9,0x44,0xa2, 0xc2,0x42,0x3d,0xa3,0xe,0xc9,0x67,0xcd,0x7c,0xa5,0xf5,0x71,0x13,0xc4,0xc0,0xc9, 0xfa,0x42,0x1e,0x8c,0x19,0xb9,0xa5,0x8b,0x8f,0x1d,0xe4,0x2a,0x5e,0xc8,0xff,0x83, 0x53,0x4b,0x42,0xbf,0x56,0x9c,0xc5,0xc,0x43,0xf8,0x1d,0x78,0x2a,0x36,0x1,0x6c, 0x6e,0x4d,0x2c,0xa2,0x1f,0x56,0x57,0xbd,0x97,0x54,0x66,0x48,0x36,0xc,0x99,0xbe, 0xc6,0x40,0x3f,0x9c,0x93,0x54,0x4c,0xc4,0x2f,0x8c,0x8a,0x88,0x82,0x4f,0x93,0xc0, 0xf9,0x4f,0x2a,0x90,0x81,0x71,0xa7,0xc2,0x4a,0xae,0xba,0xb7,0xc2,0x72,0x32,0x95, 0x5f,0x4d,0x41,0xa9,0x54,0x91,0x78,0x35,0xe6,0x59,0xeb,0xad,0xe,0x6,0x5,0xf3, 0x97,0x40,0x20,0xaa,0x29,0xba,0x69,0x17,0x31,0xfb,0xe4,0x2c,0x6c,0x9a,0x6d,0x41, 0x98,0x4c,0x81,0xb9,0xc1,0x23,0x78,0x2b,0xc2,0x58,0x1d,0x3c,0x32,0x3,0xc6,0x89, 0x3,0x4e,0xa5,0xb8,0x96,0x98,0x58,0x2,0x2d,0x22,0x6d,0x9b,0x42,0x21,0x6a,0x6c, 0x45,0x48,0x68,0x85,0x12,0x7a,0xa9,0xe8,0x48,0x79,0x38,0xba,0xad,0xf7,0x2d,0x46, 0x31,0x4a,0xed,0xb4,0x5b,0xf2,0xb5,0x3d,0xff,0xe3,0x1b,0x8c,0x89,0x50,0xe4,0x7, 0x94,0x4f,0xe2,0xb3,0x42,0x70,0xcb,0x63,0x7b,0xa7,0xbd,0x4,0x7f,0x2e,0xcb,0x1d, 0xe5,0x4f,0x23,0x95,0xfa,0xef,0xa9,0x4a,0x93,0x18,0xbe,0xb7,0x41,0x49,0xa5,0xbf, 0x14,0x4d,0xeb,0xa4,0x53,0x20,0x65,0x30,0xe0,0x31,0x7b,0xd5,0xcb,0x15,0xc7,0x12, 0x48,0x45,0xb6,0xa5,0x1e,0xb9,0xc6,0x3c,0x6a,0x39,0x4f,0xfd,0x1b,0x51,0x42,0xb2, 0xc5,0x45,0x73,0x8b,0xec,0xf3,0x27,0xfe,0xee,0x2b,0x66,0x95,0x2d,0x37,0xe,0x4e, 0x14,0x4c,0xd9,0xa9,0x22,0x8b,0xc7,0xf6,0xc6,0xd7,0x5d,0x35,0xaa,0xe1,0x66,0x54, 0xce,0x49,0x1b,0x8e,0x34,0x5f,0xca,0xdc,0x87,0xe1,0x45,0xf7,0x35,0x65,0xf0,0x27, 0x4e,0x42,0x1b,0xbd,0x0,0xa3,0xe2,0xdd,0xe2,0xdd,0x64,0x53,0xce,0x48,0xf1,0x47, 0x50,0x46,0x29,0xa9,0xef,0xd8,0x6d,0x1,0xb7,0xfd,0x95,0x7f,0xdc,0x20,0x86,0x27, 0x8e,0x45,0x40,0x82,0x92,0x2b,0x3d,0x4d,0xc4,0xf9,0xc0,0xc2,0x4a,0xc3,0xda,0xf8, 0x20,0x4c,0xc2,0xb8,0x8a,0xcf,0xf1,0xd1,0x52,0xc9,0x47,0xce,0x3e,0x6b,0x79,0x8b, 0x7f,0x42,0x87,0x86,0xb9,0xa2,0x1,0x16,0x79,0xd7,0x3,0xa0,0x1c,0x27,0x93,0x3d, 0x45,0x48,0x54,0xa0,0x25,0xa0,0x4f,0x6b,0xb4,0x1f,0x6f,0x1c,0x4c,0xb9,0xd5,0xaa, 0x35,0x4e,0x37,0xb9,0x5,0xe1,0x8,0x70,0xf8,0x21,0x22,0x5e,0xc,0x0,0x91,0x59, 0x94,0x4c,0xff,0xb6,0x62,0xbe,0x61,0x13,0xfa,0x6c,0xa3,0xa1,0x6c,0x66,0xb8,0x5c, 0xcc,0x4c,0x79,0x95,0x55,0xb2,0xcc,0xfe,0x5d,0xc,0x94,0x45,0xa5,0x4d,0x40,0xb5, 0x1e,0x4e,0x61,0x9f,0xfe,0xd1,0xb8,0xeb,0xdc,0x4a,0xd2,0x89,0x3c,0xef,0x1b,0xab, 0x6c,0x4f,0x4e,0xb4,0x3e,0xd4,0xd8,0x89,0xad,0xd7,0x4e,0xe3,0xa2,0x46,0xe0,0x3, 0xd8,0x48,0x78,0xb0,0x4b,0x56,0x93,0x9f,0x36,0xf9,0xc1,0xd,0x79,0x43,0x75,0x97, 0x37,0x46,0x50,0xa5,0x14,0x17,0x10,0xc6,0x3f,0x78,0xc6,0xf9,0x69,0xd3,0xf9,0xc, 0x18,0x41,0xa5,0x91,0x72,0x41,0xe5,0x7f,0x1a,0x87,0xd7,0x44,0xa8,0x83,0x17,0x99, 0xa4,0x44,0x61,0xb6,0xb2,0xb,0xd8,0xcb,0x5,0xa2,0x59,0x35,0xaf,0x9e,0x60,0x7e, 0x2d,0x41,0x72,0xb3,0x73,0xe,0xf0,0xb3,0xe6,0x66,0x20,0x6b,0x3a,0x78,0x5e,0x15, 0x21,0x4f,0x8,0xac,0x84,0x88,0xc3,0x20,0xc0,0x5,0xaf,0xd4,0x19,0x16,0x36,0xab, 0xce,0x41,0xe2,0x95,0x35,0x44,0x24,0x96,0xc9,0x93,0xcd,0x39,0x21,0x7c,0xf,0x84, 0xf4,0x4d,0x13,0xa6,0xc3,0xbe,0xc8,0xcc,0xdf,0x90,0x75,0x4c,0x6b,0xf6,0x38,0xe1, 0xe7,0x4f,0xbb,0x96,0xb8,0x6d,0x8c,0xb0,0x56,0xf3,0x23,0xb5,0x84,0xc7,0xca,0x9, 0xad,0x4b,0x35,0xb1,0x22,0x4d,0x80,0x24,0xe,0xf8,0x43,0xb9,0x96,0xa6,0x22,0x6f, 0x53,0x4e,0xe4,0x84,0x91,0xf0,0xcf,0x1c,0x8,0xc4,0x76,0x86,0x15,0xf4,0xe4,0x10, 0xa3,0x45,0x9a,0x98,0x7c,0x7,0xfd,0x87,0x9d,0x3e,0xc2,0x95,0xfb,0x78,0x5e,0x5, 0xc4,0x47,0x31,0xb2,0x52,0xed,0x26,0xbc,0x31,0x8c,0x2,0x13,0x5e,0x70,0x44,0xd3, 0xe3,0x41,0xa6,0x9b,0x25,0xb2,0x75,0xa7,0xe4,0x2,0x65,0xed,0x5a,0xf5,0x3c,0x14, 0x56,0x42,0x94,0x98,0xbb,0xb3,0x7b,0xa7,0x77,0x62,0xa0,0x8b,0x72,0x60,0x2f,0xbd, 0xfd,0x4b,0x24,0x8a,0xc7,0x51,0xfb,0x6e,0x96,0xee,0xb3,0xc7,0x2f,0xfa,0x95,0xe9, 0x24,0x42,0xdf,0x8e,0xe0,0xdb,0xa1,0x49,0xa,0xd8,0xa9,0x16,0x3,0x81,0x3f,0xaa, 0x81,0x48,0xb,0xa1,0x21,0x5,0xd,0x5c,0xc0,0xcf,0xd7,0xa2,0x82,0x86,0x92,0xeb, 0xea,0x42,0x63,0x8c,0x98,0x35,0x65,0x29,0xbb,0x4f,0xb4,0xb5,0xe4,0x57,0xd3,0x29, 0x68,0x42,0x11,0x84,0xa4,0x1a,0xf9,0x17,0x8,0x8a,0xda,0x33,0xd2,0x4b,0x56,0xcf, 0x89,0x40,0xd7,0x9e,0xf5,0x62,0xf,0x67,0xfa,0xde,0x73,0xf4,0xe9,0xdc,0x35,0x65, 0x9b,0x4b,0xfb,0xb9,0x66,0x58,0x25,0x62,0xde,0x61,0x7b,0x1a,0x6b,0xa4,0x6d,0xc7, 0x31,0x4f,0xad,0x9d,0x75,0xaa,0x83,0x6a,0x8,0xf9,0x7a,0x3e,0x65,0x7b,0xf5,0x2e, 0x3,0x4a,0xea,0x8d,0xfc,0x4f,0x96,0x58,0x69,0x8e,0x6f,0x7a,0x98,0xc1,0x60,0xe5, 0x25,0x4c,0x18,0xa2,0x1d,0x38,0x6b,0x4a,0x56,0xee,0x9c,0x50,0x6,0x1,0xf8,0xce, 0x95,0x47,0x66,0xae,0xf5,0xf1,0x12,0xec,0xb1,0xcd,0xe0,0x80,0xd7,0xc5,0x7d,0xf7, 0xec,0x48,0x19,0x9d,0x6a,0xf0,0x58,0x39,0x3a,0xbf,0xd2,0x37,0x24,0x31,0x98,0xbf, 0x9a,0x43,0x3e,0x88,0xdb,0x80,0xb6,0x69,0x88,0x81,0x7d,0x30,0x75,0x1a,0xf3,0x97, 0xce,0x40,0xd5,0x8e,0x19,0xf5,0xba,0xc9,0xcb,0xcc,0x3e,0xd2,0xb5,0x6f,0xe7,0x43, 0xae,0x4e,0xbc,0xb5,0x52,0xc7,0x4b,0xbf,0x7d,0xb9,0x74,0x8e,0x62,0x70,0x36,0xe4, 0x74,0x4c,0x46,0x80,0xc8,0x29,0x2f,0x4f,0x32,0xce,0x21,0xd,0xa,0x3c,0x79,0xe8, 0x89,0x4e,0x71,0x8b,0x18,0x12,0x35,0x6c,0x27,0x90,0x4,0xcb,0x87,0xc0,0xe5,0xb6, 0x77,0x42,0x9e,0xa2,0x25,0xec,0x40,0x6e,0x5f,0x4a,0x59,0xcc,0x7a,0xa6,0x56,0xc8, 0x9,0x49,0x53,0xa5,0x9b,0x92,0x4e,0x13,0x5c,0x9f,0x4f,0x15,0xd2,0x26,0x2e,0xd8, 0x12,0x4c,0x9d,0xb5,0x6,0x7,0x7c,0x40,0x96,0x62,0x11,0x7f,0x22,0x78,0xe7,0xe8, 0xbe,0x42,0x7d,0x80,0xe9,0x91,0x5e,0x8,0xbe,0x25,0x26,0xa9,0x49,0x30,0x68,0x13, 0xbe,0x49,0x2d,0x9e,0x5,0xdf,0xb9,0x52,0x63,0xa3,0x8f,0x42,0xc5,0xe8,0x24,0x87, 0x28,0x48,0xe4,0xa0,0x38,0xe2,0x29,0xf7,0xee,0x88,0xca,0x84,0x5b,0x5,0x85,0x41, 0xa0,0x46,0xc8,0xa4,0x1f,0xfa,0x70,0x68,0x7e,0x89,0x7b,0xdd,0xf1,0x4a,0xec,0xff, 0x38,0x4b,0x8c,0x99,0x8,0xc5,0xfd,0x93,0xa3,0xd3,0xcd,0x46,0x86,0xb1,0x62,0xce, 0x91,0x4b,0xc1,0x87,0x1,0x28,0x7b,0xe3,0xbf,0x6e,0x2,0xe5,0x7d,0x97,0x7f,0x1f, 0x93,0x48,0x5f,0x80,0x44,0x63,0xc5,0xcc,0xa6,0xc,0xf8,0xd6,0x80,0x46,0x39,0xbf, 0xd2,0x46,0x5b,0xb5,0x85,0x6d,0xe2,0x5e,0x7,0x61,0xd7,0x62,0x19,0x88,0x2b,0xa2, 0x64,0x49,0xb1,0x8e,0x55,0x15,0xfc,0xcd,0xa1,0x69,0x56,0x3f,0x11,0x1,0x8e,0xf2, 0x93,0x47,0xa,0xb2,0x16,0xa0,0xac,0xf8,0x22,0xad,0x27,0x7d,0x1f,0x9,0xdc,0x1f, 0xf5,0x4f,0x99,0xbd,0x9,0x1c,0xf2,0xe0,0x64,0xec,0x19,0xb7,0x9a,0x36,0xfc,0x8b, 0xe5,0x4e,0x99,0xbe,0x16,0x87,0x86,0xc1,0xda,0x97,0xf3,0xd6,0x4d,0x55,0xf3,0x79, 0x6b,0x4a,0x4b,0x9f,0xf,0x95,0xf2,0xbd,0xf8,0xe,0x84,0xe2,0xe8,0x13,0x4b,0x2a, 0xf8,0x4e,0x78,0x98,0x79,0x40,0x8a,0x34,0x4e,0xa0,0xe3,0xc9,0xc5,0x3d,0xb9,0xf0, 0x64,0x4b,0xf6,0xbc,0xab,0x5e,0x39,0x90,0xf3,0xa3,0x99,0xf0,0xb1,0x48,0xfa,0x90, 0xe8,0x40,0xeb,0xaa,0xd5,0xec,0xa7,0x3b,0xda,0x9a,0xee,0x7e,0x3a,0x94,0x32,0xd, 0x1f,0x4f,0xcc,0xbf,0x30,0xc6,0xab,0xce,0x24,0xe,0x61,0xb0,0x25,0x82,0x3a,0xce, 0xe7,0x4b,0x4d,0x86,0xc4,0xc5,0xd9,0x4f,0xb1,0x47,0x7f,0xbd,0x3f,0x13,0x9f,0xdf, 0x2c,0x48,0xd1,0xad,0x7c,0x29,0xad,0x5e,0xee,0x97,0x77,0x9,0x51,0x16,0x3d,0x14, 0x4e,0x40,0x3d,0xb1,0xc3,0xdd,0x7b,0xe6,0x28,0x6,0xb6,0xd,0xc4,0x89,0x4f,0x5e, 0x1b,0x45,0xff,0xb0,0x98,0x23,0x91,0x97,0x5d,0x69,0xa6,0x84,0xf,0x4c,0x5b,0x93, 0x50,0x40,0x4,0x90,0xb4,0x4b,0xc5,0x5b,0x4d,0x50,0x35,0xe0,0xc6,0x33,0xc9,0x4, 0x13,0x48,0xb7,0x8b,0x20,0xf0,0xdf,0xae,0xc1,0xbb,0xbb,0x86,0xa2,0x3e,0x77,0x4c, 0xc3,0x4c,0xe2,0xa9,0xfd,0x6e,0xe2,0xde,0xe9,0xa,0xe9,0x43,0xc2,0x55,0x53,0xe7, 0x55,0x43,0xfb,0x87,0x1e,0x98,0x73,0xa5,0xa0,0x4a,0xfb,0x7d,0x0,0xe3,0x64,0x5f, 0x5,0x47,0x36,0xaa,0xa4,0x4b,0xac,0x80,0xd9,0xbd,0xe4,0x6d,0xd7,0xf9,0xe7,0x65, 0xe0,0x45,0x9b,0xb6,0x7f,0x47,0xbb,0x53,0x23,0xd0,0x43,0x59,0xb5,0x26,0xd3,0x16, 0xee,0x47,0xc6,0xbf,0xf3,0xaf,0x76,0xff,0xe5,0x80,0xe,0x78,0xc6,0xdf,0x18,0xc9, 0xbe,0x43,0x5,0x89,0xe8,0x58,0x40,0x87,0xf2,0xfb,0x9b,0x9e,0xcf,0x7b,0x38,0xfc, 0x9e,0x44,0xd3,0xa3,0x0,0xaf,0x45,0x16,0x37,0x57,0xc1,0x9,0x37,0x2a,0xd3,0x88, 0xc8,0x40,0x7e,0x97,0x40,0x92,0xea,0x1,0xd0,0x7a,0x67,0x18,0xa1,0xc4,0x6a,0x59, 0x59,0x4b,0xe0,0x8e,0xcd,0xaa,0x53,0x52,0x7b,0xd9,0x55,0xa,0xc0,0xc1,0x4a,0x89, 0x14,0x40,0xe,0x89,0xfa,0x52,0xc9,0xad,0x74,0x54,0x1c,0x71,0x30,0x81,0xc1,0xf4, 0xc1,0x4f,0xb0,0x95,0xb8,0x9f,0x1,0x2d,0xc,0x41,0x9f,0x1f,0x51,0x21,0xe5,0x8a, 0xe7,0x40,0x6d,0x8f,0x3f,0xc5,0x60,0x7e,0xe5,0x2d,0xb3,0xd5,0xac,0x69,0xdd,0x69, 0x65,0x46,0xdf,0xa0,0xc8,0x81,0x6e,0xe0,0x7c,0x11,0x23,0x9c,0x5a,0x7e,0xad,0x41, 0xa,0x4b,0x86,0xa5,0xa0,0x8e,0x5c,0x50,0xec,0x77,0x95,0xc5,0xb6,0xaa,0x1e,0x18, 0xfd,0x46,0xd3,0xbf,0xc0,0xea,0x74,0x8d,0xc2,0x13,0xf7,0xd6,0x18,0xf6,0xcf,0x86, 0xdc,0x42,0xf3,0xae,0xe,0xc8,0x79,0x89,0x86,0x94,0x37,0xa3,0x55,0x16,0x53,0x38, 0x37,0x40,0x3b,0xaf,0xf,0x9b,0xd8,0xe3,0x74,0x83,0x8d,0x86,0x88,0xb0,0xe9,0xeb, 0xd5,0x46,0x3a,0xae,0x5d,0x6f,0x67,0x25,0xcb,0x5d,0xe2,0x70,0x3c,0x70,0x31,0xf3, 0x92,0x40,0x6,0x99,0x51,0xcd,0x5b,0x34,0x46,0x7,0x1e,0x6c,0xf4,0xa7,0x40,0x47, 0xe2,0x44,0xdf,0xb6,0xab,0xa8,0xde,0xff,0x6a,0x24,0xe5,0x35,0xca,0x16,0x5,0x13, 0x71,0x41,0xbb,0x8d,0xe,0x87,0xb5,0x5b,0xdb,0xb7,0xf9,0x5,0xdc,0xb4,0x31,0xef, 0xa9,0x45,0x9,0x9f,0xfd,0x2d,0x10,0x91,0xf7,0x2c,0xa2,0x47,0x73,0xbf,0xf1,0xb8, 0x3f,0x43,0x69,0x90,0x58,0x18,0x17,0xdf,0x1d,0xc,0x67,0x51,0x96,0x3,0xba,0x62, 0x14,0x43,0xab,0x8e,0x4e,0xec,0xf3,0xa4,0x95,0xfb,0x34,0xa9,0x84,0x7b,0xbc,0xff, 0xa8,0x43,0x27,0x96,0xdb,0x1d,0xea,0xe7,0x17,0x35,0x8b,0xc2,0x48,0xfc,0x43,0x28, 0x59,0x49,0xd2,0x95,0x85,0x84,0x17,0x40,0x33,0x58,0x7a,0x4,0xf9,0x30,0x51,0x89, 0x28,0x45,0x1d,0x8f,0xaa,0x13,0x5f,0x18,0x73,0xfa,0x3d,0x36,0xeb,0x26,0xd2,0x90, 0xc8,0x4e,0x92,0xa5,0x24,0x97,0x9,0xf5,0x53,0x81,0x2d,0xb1,0xa0,0xb,0xe8,0x62, 0x5c,0x44,0xe1,0x8d,0xed,0xb4,0x84,0xad,0x78,0xb4,0xf,0x85,0xda,0x3f,0x26,0xad, 0xfd,0x43,0x20,0x87,0x42,0x69,0xeb,0x28,0xed,0x2e,0x44,0xcd,0xc7,0x96,0x41,0x49, 0x10,0x41,0x9c,0x8d,0x80,0xce,0xa6,0xf1,0xf4,0x5c,0x90,0xd0,0x7b,0xe,0x7c,0x5a, 0x43,0x46,0xbb,0xb9,0x2d,0x49,0xb2,0xd6,0xef,0x6,0xd7,0x36,0xef,0x97,0x9,0x67, 0x2e,0x4c,0x47,0xbe,0xa6,0xe0,0x96,0xfa,0xea,0x5e,0x4d,0x8d,0x9a,0x30,0x3b,0xe3, 0x72,0x45,0x77,0x96,0xa3,0x62,0x39,0xd0,0x6c,0x94,0xf6,0x98,0xbc,0xa5,0xad,0xef, 0x9f,0x4a,0xed,0xae,0xce,0x76,0xa7,0xd3,0x8f,0xd9,0x6c,0xca,0x69,0xc6,0x31,0x16, 0xd5,0x44,0xb,0x99,0x6b,0x42,0xf4,0x40,0xa,0x25,0x97,0x8b,0xe6,0x88,0x81,0xca, 0xa7,0x41,0xf9,0x80,0xd3,0x15,0xac,0x11,0x64,0xb5,0x25,0x4e,0xa5,0xfa,0x70,0x8e, 0x9e,0x4a,0xe,0xb3,0x15,0xc,0xb7,0x8d,0x4c,0x15,0x8e,0xde,0xaa,0xc6,0xba,0x90, 0x15,0x4a,0xad,0x89,0x8a,0x93,0x46,0x2f,0x9a,0x55,0xde,0x3e,0x91,0x1b,0x74,0xf2, 0x74,0x41,0xd6,0x8d,0x7a,0xbc,0x4c,0xa8,0x0,0xf9,0xae,0x2f,0xee,0x20,0x61,0xda, 0xaa,0x47,0x6d,0x97,0xb5,0x63,0xcc,0xfc,0x83,0x7a,0x1a,0x5d,0x73,0x5c,0xdf,0x5a, 0x19,0x44,0xb5,0x9c,0x97,0xa0,0x0,0x7e,0xd8,0xb5,0xb4,0xe8,0xda,0x52,0x6f,0x59, 0x88,0x44,0xa3,0x9d,0x7b,0xe8,0x55,0x6c,0x35,0x2f,0xb0,0x7b,0x47,0xdf,0xf7,0xfc, 0x63,0x49,0x22,0xb5,0x51,0xfc,0xb8,0xb1,0xbc,0x41,0xec,0xe0,0x25,0xf2,0x7c,0x55, 0x6d,0x42,0x37,0x80,0x4d,0x12,0x6d,0xf1,0x9b,0x4f,0x5c,0xd4,0x83,0xcc,0xbb,0xb4, 0xbd,0x47,0xaf,0x89,0x41,0xfb,0xb9,0xbf,0xe4,0x95,0x1d,0x2a,0x31,0x58,0x20,0x3d, 0x60,0x42,0xe8,0xbb,0x43,0xd8,0xb7,0xae,0x16,0xdc,0x5a,0xb4,0x5a,0xa6,0x18,0xd6, 0x72,0x47,0xcf,0xaa,0x2e,0x1f,0x12,0x43,0x50,0x8e,0x54,0x27,0x6d,0x2a,0x55,0xe5, 0x64,0x42,0xb1,0x87,0x4b,0x1e,0x9f,0xf0,0x55,0xe,0xd8,0xea,0x7d,0x65,0xdc,0xc1, 0xd5,0x4f,0x30,0x97,0x69,0x1f,0xff,0xec,0x8,0xcd,0x92,0xb4,0xf5,0xcd,0xa6,0x3e, 0xba,0x44,0xb0,0xb5,0xa7,0x32,0xaa,0xe3,0x31,0x52,0x61,0x29,0xb,0x2,0x97,0x39, 0x56,0x4f,0x1f,0xb7,0x55,0xa1,0x82,0x66,0xa0,0xac,0x22,0x7d,0xe4,0x8f,0x26,0x98, 0xa6,0x4c,0xc,0x9d,0xe7,0x21,0xd1,0xaa,0x8a,0x6d,0x4f,0x51,0x7d,0x6c,0xa4,0xa5, 0x8d,0x4a,0x92,0x9f,0xe5,0xed,0x6a,0x9,0x1,0xf1,0x6e,0xdb,0x24,0x43,0x5a,0x69, 0xdc,0x41,0xa9,0xae,0x6b,0xf0,0xd8,0x3b,0x28,0x83,0x63,0xce,0xcb,0xdf,0xbc,0x2f, 0xa1,0x44,0x30,0x86,0x90,0xc0,0x2,0xf2,0xa0,0xfd,0x2c,0x4c,0x29,0x25,0x9e,0x8f, 0x2c,0x4b,0xb8,0xa8,0x1b,0xf3,0xf0,0x2e,0xc2,0xa3,0x10,0x5e,0x30,0x59,0x18,0x96, 0x56,0x48,0xd8,0x81,0xeb,0x96,0xb4,0x95,0x2a,0x33,0x8a,0xec,0x1b,0x5c,0x7d,0xba, 0x58,0x4a,0x38,0xa9,0x84,0x9e,0xe1,0xc3,0x3,0x31,0x32,0x32,0x6c,0xb9,0x10,0xab, 0xba,0x4f,0x9a,0xae,0x3d,0x47,0xbf,0xef,0xa2,0xf4,0x8,0x7d,0xd8,0x77,0x13,0x38, 0x82,0x48,0xbd,0xad,0x48,0xdd,0x11,0xb,0xa2,0x5d,0xfc,0x77,0x1b,0xf2,0xac,0x4d, 0xdf,0x41,0x9,0x92,0x90,0x98,0xb9,0xc8,0x86,0x30,0xa7,0xf5,0x43,0x83,0x25,0xc6, 0x7,0x41,0x16,0xa3,0x15,0xeb,0x28,0x51,0x98,0x4a,0x7a,0xcc,0x71,0xc,0xfd,0x3b, 0x57,0x42,0xaf,0x8e,0x6d,0x42,0xac,0x44,0xd7,0xc,0x51,0x69,0x53,0x73,0xd3,0xba, 0xf5,0x47,0x4d,0xb6,0x4a,0xb4,0x3c,0x6e,0x7,0xae,0xd0,0x89,0xf5,0xd3,0x22,0x63, 0x8a,0x4a,0x2a,0xb8,0x8a,0x48,0xb2,0xb,0x32,0x1,0xb0,0x3a,0xd8,0xe4,0xe0,0xfb, 0xeb,0x43,0x87,0xa5,0x1,0xc9,0xb6,0xe7,0x19,0x19,0xd9,0xce,0x2e,0xb8,0xd4,0x29, 0x3a,0x44,0xa8,0x82,0xf5,0x94,0x24,0x8c,0x66,0xb9,0xdf,0xeb,0x9,0x29,0xea,0x20, 0xeb,0x49,0xb0,0x89,0xab,0x49,0xa0,0xaa,0xc6,0x95,0x9c,0xfc,0xba,0xc,0x74,0x9c, 0x7c,0x45,0xe9,0xb8,0xb1,0x47,0x8f,0xdc,0xad,0x44,0x7a,0x13,0xb2,0x60,0xaf,0x17, 0xe1,0x4e,0x1a,0xb0,0xd5,0x21,0x37,0x92,0x3b,0xa2,0x7e,0x97,0x11,0x71,0x6c,0x6a, 0xd3,0x41,0xc7,0x8d,0x32,0xd9,0xb9,0x65,0xb3,0x46,0x13,0xd9,0xba,0xb,0xcc,0xcd, 0xf5,0x49,0x23,0xb7,0x82,0x6e,0x4,0x4c,0xc9,0xe0,0x82,0x4b,0x11,0x52,0x6f,0xc9, 0xbd,0x41,0x54,0x8f,0x91,0xe9,0x0,0x67,0x80,0x1e,0xe6,0x2e,0x13,0x1b,0x3d,0xf7, 0xe2,0x46,0x8,0xb5,0xb2,0x82,0x61,0xd0,0x47,0x43,0x72,0xb8,0xdf,0xac,0x6a,0x7f, 0xd0,0x42,0x90,0xb6,0xc0,0x9a,0xe7,0x7d,0xa2,0xb1,0x8b,0xd6,0x8a,0x3a,0x80,0x9a, 0x94,0x49,0x2a,0xb2,0xe3,0x42,0x59,0x1,0x23,0x65,0x45,0xb9,0x59,0x24,0x9b,0x1d, 0x6d,0x4a,0xaf,0x81,0x3e,0xbe,0xe9,0x16,0xe2,0xf4,0x60,0x6f,0x29,0x1a,0xa8,0xf3, 0x61,0x48,0x95,0x8f,0x3,0x60,0xd2,0x29,0xe8,0x71,0xe0,0x85,0x44,0xb8,0xab,0xb7, 0x78,0x4e,0x39,0xbd,0x85,0xd9,0x44,0xa2,0xec,0x68,0xb6,0x1e,0x5,0x1f,0x6d,0xc, 0xa3,0x40,0x36,0x8b,0x66,0x16,0x45,0x8d,0x15,0xf8,0xe3,0x17,0xd0,0x1d,0x44,0x9b, 0x1,0x42,0x7b,0x82,0xa1,0x31,0x12,0xfc,0xbe,0x1f,0xb2,0xcb,0x72,0x7c,0xf8,0x57, 0xb7,0x44,0xa,0x8c,0xd,0x95,0xa1,0x78,0x8f,0xa1,0x9a,0xee,0xd6,0x1a,0x3b,0x94, 0x7e,0x48,0xda,0xac,0x5,0x3d,0xec,0x8a,0xbd,0xc5,0xc,0x6c,0x89,0xf5,0x7d,0x75, 0x29,0x48,0x80,0xb4,0xf1,0xe7,0xe8,0xe5,0x55,0x85,0xb7,0x37,0xab,0xd4,0x16,0x43, 0x16,0x4b,0xb8,0x8c,0x76,0x55,0x77,0x71,0x8e,0xc7,0x10,0x82,0xc2,0x69,0x25,0xbf, 0xe5,0x4c,0x55,0xb3,0xbc,0xbd,0x54,0xc,0x29,0xe3,0xb5,0x33,0x59,0x8f,0xf1,0xe1, 0xf1,0x4f,0x55,0x97,0x9b,0x53,0xa7,0x8f,0x86,0x6b,0x98,0x46,0x2e,0xbb,0xa3,0x4b, 0xd3,0x49,0x5c,0x87,0x4,0x8a,0xc8,0x8e,0xa0,0xde,0xfe,0xa8,0xe2,0x3a,0xbf,0x94, 0x5d,0x41,0xb2,0x89,0xaa,0xb4,0x2d,0xf9,0xc,0x93,0x6f,0xb3,0xc1,0xd2,0x4c,0x8a, 0x60,0x4c,0x8c,0x9a,0x37,0xea,0x50,0x2e,0xa9,0xf3,0x57,0x6e,0x7d,0x9e,0xa4,0xd, 0xf1,0x47,0x65,0x8c,0xd6,0x52,0xce,0x9a,0x40,0x13,0x5b,0x25,0x7b,0x30,0x32,0xaf, 0x11,0x4d,0x1,0x90,0xc3,0x3d,0x97,0x7e,0x19,0xaa,0xec,0x8d,0x82,0x73,0xaf,0x24, 0x4d,0x47,0xce,0x80,0x90,0xd9,0xd,0x64,0x3e,0x64,0xf6,0xd8,0xc,0x55,0x14,0x94, 0xb4,0x4c,0xa4,0xb9,0xdb,0x1d,0x38,0x57,0x15,0x5a,0xdd,0xb8,0x3,0x9a,0xdd,0x30, 0x1c,0x41,0xe2,0xac,0x1b,0x44,0x87,0x9f,0x76,0xa2,0x9a,0xea,0xfd,0x25,0x4f,0xc7, 0x14,0x4c,0xfb,0xa8,0x5a,0xcd,0xb8,0x5e,0x22,0x33,0x2b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6a,0x9a,0x29,0x3f,0x59, 0x5,0x42,0x11,0x87,0xc9,0xc3,0x59,0xd6,0xb0,0xf5,0xa7,0x95,0x75,0x11,0xf4,0x6e, 0x31,0x49,0x25,0x8a,0x8f,0xf,0x58,0x49,0xb2,0x11,0x53,0x83,0x6d,0xcc,0xa4,0x84, 0x5f,0x4e,0xd6,0xb0,0x53,0x11,0xb8,0xaa,0x62,0x40,0xae,0xc5,0x70,0x0,0x99,0xb3, 0x3a,0x49,0xb2,0xbf,0xfb,0x67,0x6,0x4d,0xfe,0x6e,0xb8,0x4b,0xe9,0xe1,0xe7,0x98, 0xa4,0x41,0xad,0xb4,0xe8,0x73,0x72,0x92,0x34,0xa5,0x65,0xfa,0x5a,0xc6,0x88,0xf7, 0x82,0x42,0xbf,0x8f,0x10,0x4e,0xa4,0xd1,0x5c,0x8f,0xf0,0x84,0xd3,0x60,0xd2,0x62, 0xe7,0x4d,0xcc,0xbf,0x74,0x7b,0x1e,0x61,0x7a,0x58,0x1a,0x7c,0x1a,0xcd,0xb2,0xa0, 0xfa,0x46,0x6b,0x95,0xfd,0xfa,0x46,0x4c,0xdd,0xc8,0xd4,0xbc,0x66,0x6f,0x1b,0xf6, 0xcb,0x4a,0x5,0xa0,0xdd,0xe4,0xf3,0x68,0x5e,0x58,0xe3,0x61,0xb4,0x67,0x44,0x44, 0x3a,0x40,0x59,0xa4,0xc4,0xe0,0xf6,0x48,0xab,0x28,0x86,0x3a,0xc6,0x5a,0xd5,0x70, 0xbb,0x46,0x2,0xb4,0xca,0xb5,0x7a,0x8c,0xc0,0xc7,0xab,0x87,0x2d,0x69,0x2d,0x13, 0x9f,0x47,0x62,0xb2,0xcd,0x8d,0xb1,0x1e,0x8c,0x6,0x88,0x64,0x99,0x5,0x88,0xd4, 0x1f,0x48,0xc9,0x92,0x77,0x62,0xa2,0x57,0x38,0x3f,0xc1,0x7b,0x16,0xcc,0xfd,0x9c, 0x43,0x41,0xc6,0x8d,0xe5,0x98,0x70,0x1,0x68,0x21,0xee,0xb7,0xf7,0x80,0x66,0xec, 0x94,0x4f,0x46,0x80,0x92,0x80,0x1e,0x38,0x17,0x17,0xea,0x6f,0xa,0xae,0x9b,0xc9, 0x99,0x41,0x1,0x8e,0x6f,0x52,0x3,0x8f,0x19,0x47,0xc4,0x53,0xaa,0xb8,0xe2,0xa9, 0x81,0x40,0x76,0xa0,0xa3,0x98,0x10,0x2e,0x7f,0x58,0x73,0x69,0xb4,0xa9,0x7b,0xa8, 0x3d,0x4f,0x95,0x93,0x37,0x94,0xe6,0x38,0x91,0x93,0x18,0x61,0x65,0x38,0xb1,0xe2, 0xec,0x4d,0x65,0x81,0x10,0x4,0xb7,0x2d,0x3,0xe0,0x9d,0x16,0x20,0x3c,0x16,0xe1, 0x40,0x46,0xa8,0x92,0x59,0xdf,0x8e,0xf7,0x1a,0xec,0x32,0xa9,0x1,0xd2,0x72,0x17, 0x84,0x4b,0x34,0x8b,0xeb,0x69,0x97,0xb1,0x34,0xcd,0x2e,0xc5,0xeb,0x30,0x59,0x57, 0xe2,0x4e,0xcb,0x97,0xf0,0x65,0xcb,0x20,0xd4,0xcb,0x0,0xd4,0x22,0x6,0x8,0xb6, 0x98,0x44,0xf8,0x80,0x38,0x17,0xae,0x46,0xcb,0xab,0x51,0x5f,0x50,0x61,0xe0,0x7f, 0x99,0x44,0xb0,0xb7,0x45,0xf1,0x3e,0x46,0x84,0x51,0xed,0xb8,0x1e,0xef,0x63,0x3c, 0xa1,0x44,0xbc,0xbe,0xf4,0x24,0x88,0xad,0x4f,0xa9,0xc5,0x48,0xfc,0xdf,0xac,0x3d, 0xe1,0x43,0x33,0x87,0xc7,0xb3,0xe7,0xcf,0xcb,0xfc,0x3c,0xa8,0x99,0x31,0xe9,0x12, 0xa4,0x40,0x5c,0xb7,0xca,0x94,0x6f,0xbc,0x6e,0xa8,0x2b,0xc0,0x6c,0x75,0x1e,0x3f, 0x1a,0x4f,0x72,0xa1,0xe9,0x41,0x23,0xc5,0xdb,0x6,0x68,0x43,0x12,0x2e,0x4,0x27, 0x71,0x4c,0x6b,0x9f,0x39,0x2b,0x2e,0xb8,0xc7,0x70,0xe3,0xaf,0x6c,0x7d,0x16,0x20, 0x2d,0x4a,0x80,0xbe,0xe0,0x8c,0xcc,0x4,0x85,0x7c,0x3,0xa4,0xea,0xa6,0x34,0xe9, 0x95,0x43,0x3d,0xa0,0x4,0xae,0x7e,0x35,0xb9,0xb5,0xdd,0x14,0x92,0xd7,0x32,0xd9, 0xe3,0x4e,0x3c,0x85,0x82,0x28,0x38,0x42,0x98,0x20,0x3,0xeb,0xd1,0x35,0xdd,0x58, 0xa1,0x40,0x56,0x95,0x45,0x27,0xcf,0xdd,0x50,0xa0,0xf7,0xe6,0x2a,0x52,0xe5,0xd6, 0xd0,0x48,0x7d,0x93,0x49,0xfb,0xae,0x67,0x7a,0xa7,0xce,0x36,0xf1,0x5,0x92,0x9a, 0xbe,0x4d,0x2b,0x82,0x48,0xda,0x9,0x15,0x86,0x6,0x2f,0x5,0xba,0xdd,0x0,0x4d, 0x6b,0x4c,0x70,0xae,0xe4,0xe4,0x59,0x43,0xf5,0xe4,0x3c,0x97,0x7e,0x25,0x59,0x48, 0xe2,0x4b,0x6c,0x87,0x26,0x47,0xa,0xfc,0x26,0x29,0x4f,0x52,0x8,0x64,0x7a,0xde, 0x45,0x47,0x65,0x97,0xb2,0x72,0xf0,0x51,0xb6,0xb0,0x58,0x4c,0xcd,0x4,0x81,0xfa, 0x84,0x44,0x2c,0x83,0x82,0x7,0xf0,0x15,0x1c,0xc7,0xbe,0xdf,0x61,0x2a,0xba,0xbc, 0x5a,0x49,0x5a,0xb0,0x81,0xff,0x17,0xc5,0xbe,0x9,0x1d,0x16,0x46,0x9f,0x79,0x76, 0x9e,0x48,0x8,0x9b,0x69,0x30,0x76,0x4e,0xd5,0x9d,0xb2,0xe2,0x4d,0xfb,0x73,0x80, 0xc9,0x45,0xbb,0x9e,0xc5,0xee,0x5,0x45,0xd5,0xe1,0x6f,0x7,0x9f,0x7f,0xa9,0xc9, 0xca,0x44,0x6d,0xab,0x23,0x52,0x1d,0x31,0xe5,0x9d,0xee,0x65,0xb4,0x3e,0x8b,0x5, 0x2e,0x49,0x5c,0xbc,0xa7,0x4d,0x4a,0xf2,0x88,0x3c,0x5,0xb9,0xc9,0xdc,0xc5,0x1d, 0xff,0x41,0x2,0xa2,0x26,0x27,0xc7,0xd6,0xe9,0xe3,0xe7,0xd4,0x24,0x16,0xad,0x87, 0x38,0x4b,0x25,0xb3,0x23,0x4f,0x46,0xc2,0x78,0xaf,0x65,0x5f,0xb5,0x8,0xca,0xf8, 0xe5,0x4c,0xb9,0xaa,0x9,0xa5,0xc8,0x2e,0x5e,0xaf,0x2e,0xf4,0x31,0xdb,0xbf,0x5a, 0x82,0x44,0xb7,0xb3,0xeb,0x2f,0xb9,0x2a,0x1d,0xb3,0x55,0x69,0xde,0x66,0x9d,0x4b, 0x74,0x47,0x78,0xaa,0x58,0xd6,0x80,0x2b,0x9,0x86,0x75,0x83,0x51,0x2a,0xf3,0x7b, 0x51,0x43,0xd3,0xb0,0xfd,0xc0,0x18,0x8b,0x65,0x77,0x8b,0xb6,0x1d,0x5d,0x21,0xc9, 0xbd,0x4d,0xb5,0xb9,0x9b,0x2d,0x8a,0x17,0xff,0x2f,0xfc,0x9c,0x89,0x16,0x97,0xd0, 0xb4,0x41,0x42,0xa0,0xb2,0x9c,0x18,0xcc,0xd4,0x53,0x60,0xab,0x1f,0x6f,0x6f,0x6f, 0xd7,0x4b,0x8c,0xa2,0xda,0x9c,0xa1,0x31,0x85,0x46,0x75,0x82,0xa6,0xa0,0xa7,0x4f, 0xf7,0x4a,0xd4,0x85,0x90,0x3e,0xf7,0x62,0x97,0x38,0xe8,0x12,0xe1,0xf3,0x22,0x96, 0xc7,0x42,0xdd,0xa8,0x44,0x1e,0xd5,0xfa,0xbc,0x69,0x50,0x8a,0x25,0xbf,0xc7,0x2, 0xc7,0x4b,0x94,0xb5,0x54,0xa,0xff,0x6,0x6d,0xe,0x9b,0x7e,0x9c,0xd8,0x5a,0xa9, 0x19,0x4b,0xba,0x8b,0x16,0x92,0xc7,0x1a,0xb8,0x61,0x85,0xa2,0x11,0xb4,0xbe,0xd3, 0x66,0x41,0xd5,0xbb,0x22,0x73,0x9a,0xa2,0x3e,0x7e,0xd4,0xb5,0x3a,0xb5,0x73,0xc1, 0x9c,0x4a,0x36,0xa5,0x75,0xa0,0xdd,0x69,0xb6,0xd6,0x70,0xbd,0x32,0x4f,0xf9,0x94, 0xec,0x49,0xb3,0x87,0xe8,0xd4,0x72,0x9b,0xb8,0x6e,0x74,0x88,0x19,0xdf,0x86,0xac, 0xfa,0x41,0x88,0x95,0x7,0x8a,0x83,0x5f,0x50,0xd0,0x73,0x31,0x5c,0x10,0xf4,0x79, 0x19,0x42,0x2e,0xa0,0x8b,0x46,0x26,0x72,0x52,0xd0,0xf4,0x40,0x1b,0xfb,0xd3,0x7, 0x18,0x4e,0x1a,0x83,0x89,0xf5,0x6a,0xdb,0x6e,0xa4,0x62,0x98,0x63,0xeb,0x7c,0x49, 0x45,0x40,0xe7,0x9d,0x35,0xea,0x9b,0xff,0x1d,0x7,0x5d,0xbd,0xf6,0x42,0xc7,0xa7, 0x65,0x4f,0x5f,0x92,0x90,0x8f,0x69,0x91,0xbd,0x77,0xac,0x7a,0xbd,0xf8,0x5d,0x2a, 0x2,0x47,0x7f,0x86,0xd6,0x90,0xe2,0x29,0xdf,0xbf,0x69,0x9b,0x21,0xee,0x63,0xeb, 0x51,0x48,0x25,0xb6,0xd4,0xa5,0xbb,0x8c,0x7f,0x52,0x55,0x9b,0x96,0xa2,0x34,0xe5, 0xc8,0x4d,0x18,0x85,0x90,0x6e,0xd1,0x2c,0x51,0x31,0xce,0x5b,0xfd,0x1b,0xce,0x5e, 0x86,0x45,0x13,0xaa,0xed,0x5f,0x30,0xa3,0x24,0xe7,0x10,0xb4,0x9e,0x14,0x8b,0xd7, 0x8b,0x4b,0x67,0x97,0x26,0x2a,0xea,0xfa,0xe1,0x86,0x8f,0x38,0x1d,0x53,0x0,0x64, 0x25,0x4d,0xa2,0x92,0x4f,0xd3,0x6d,0x3f,0x9e,0x12,0xab,0x2f,0x24,0x72,0xb8,0xba, 0x92,0x4c,0xd,0xb6,0xdd,0xe2,0xda,0x33,0xc7,0xf4,0x9f,0x7,0xa8,0xbe,0x54,0xe7, 0x2d,0x49,0xc1,0x91,0x33,0xda,0x20,0xb3,0x55,0xf5,0x9,0xc2,0x13,0xc9,0xb3,0x9f, 0x54,0x4f,0x21,0xb6,0xe3,0x38,0xcf,0x25,0xd5,0x5b,0xa5,0x22,0x2d,0x86,0x82,0x38, 0x49,0x4b,0xdf,0xa5,0x61,0x96,0xc5,0x49,0x9e,0x60,0x43,0xf2,0xf1,0x44,0x53,0xf4, 0xd1,0x42,0xb4,0x99,0x4b,0x8c,0x11,0x5,0xe4,0xb,0xc1,0xd6,0x2c,0x37,0xc7,0xeb, 0xae,0x43,0x4a,0x93,0x67,0x78,0x30,0x1f,0x42,0xd,0xf8,0x6d,0xea,0x99,0x3b,0x7f, 0x36,0x45,0xab,0xba,0xf,0x15,0x18,0xde,0xae,0x74,0xc3,0x61,0x25,0x97,0x5b,0x46, 0x92,0x45,0x68,0x8a,0x7b,0x7c,0xce,0xfe,0x7b,0x14,0xd1,0x2b,0x21,0x98,0xb6,0x48, 0x98,0x49,0xf6,0x88,0x3c,0x1a,0x1c,0x41,0x91,0x3a,0xea,0x0,0x1,0x54,0x37,0x3d, 0x40,0x48,0xb3,0x8a,0x15,0x30,0x4b,0x79,0x77,0xd,0xd7,0xf5,0x9c,0x65,0xde,0x7a, 0xf6,0x48,0x5c,0xa3,0x0,0x8d,0xd6,0xaa,0x72,0xdd,0x4d,0x7f,0xbe,0xb4,0x6a,0x2, 0x77,0x40,0x8e,0xbd,0x2f,0x52,0x4b,0x9a,0x8b,0xb1,0xe6,0x85,0xdb,0x1c,0xb0,0xf1, 0xf2,0x44,0xcf,0x9a,0x6c,0x94,0x5b,0xe8,0xfe,0xea,0x5e,0xbc,0x6,0xc,0x4a,0x19, 0x10,0x42,0x60,0xa8,0x36,0x22,0x4a,0xff,0x6a,0x12,0x36,0x4,0x22,0x73,0x1f,0xa6, 0xf0,0x4c,0xcd,0x88,0xb1,0xd6,0xbb,0x8b,0x81,0x2d,0xae,0xe4,0x26,0x22,0x85,0x3d, 0xdd,0x41,0x76,0x99,0x2e,0x85,0x3a,0xa2,0x60,0x93,0x89,0x2,0xaa,0x91,0xea,0x10, 0x5f,0x45,0xa2,0xa7,0xc8,0x37,0x6e,0x2b,0x55,0x15,0x4c,0x33,0x6,0x8e,0x17,0xdf, 0xcc,0x4f,0x37,0x9c,0x7a,0xc5,0xcc,0x12,0xfb,0xc3,0x13,0x4b,0xde,0x67,0xee,0xdb, 0xc7,0x42,0xbc,0x95,0xb7,0xb3,0xe,0x28,0x50,0xd9,0x5f,0x10,0xb4,0xd7,0xbe,0x9a, 0x31,0x4d,0x42,0x8c,0xf1,0x7,0x53,0x2c,0x7b,0xbb,0xbe,0x3f,0xb,0x6b,0x16,0x4d, 0xb3,0x4b,0x82,0xbc,0x77,0x51,0xd6,0x35,0x4d,0x50,0x97,0x73,0x8,0xc0,0x36,0xbd, 0x3c,0x4f,0x79,0xb4,0x85,0x24,0x9f,0xd0,0xc9,0xdb,0xad,0xfe,0x93,0x93,0x37,0x40, 0xf,0x4c,0xa3,0xa1,0x51,0x68,0xf7,0xa8,0xb6,0xf7,0x10,0x1d,0xad,0xeb,0xaa,0x5e, 0x22,0x43,0xa3,0x87,0x6f,0x15,0x9c,0x99,0x2b,0xdf,0xa4,0x2f,0x3d,0xb3,0x0,0xaa, 0x59,0x42,0x2,0xb5,0x4f,0x9c,0xf7,0x2b,0x11,0x89,0x86,0x7a,0x71,0x4c,0x29,0x21, 0x51,0x40,0xfe,0xa1,0xd3,0xcf,0xc8,0xef,0xf1,0x17,0x91,0x9e,0x0,0xd9,0xd6,0x7d, 0xe0,0x4a,0x28,0x95,0x0,0xe2,0xdf,0xd9,0xf5,0xa5,0x28,0x2c,0x39,0xd5,0x71,0xac, 0x34,0x4c,0x5b,0x81,0x5f,0xfa,0xa9,0x7c,0x5c,0x5a,0x7f,0xcc,0x87,0xda,0xd6,0xe0, 0x23,0x44,0x22,0x93,0x66,0xa5,0x58,0x97,0x8a,0xae,0xfe,0x13,0xbc,0x94,0xb2,0x47, 0x3a,0x41,0x57,0x83,0xe8,0x89,0xd,0xb1,0x70,0x68,0x90,0xfa,0xdf,0x7f,0x7c,0x61, 0x7d,0x4d,0x99,0x9f,0xbc,0x33,0x17,0xe9,0xea,0x1a,0x4,0xf9,0xce,0x72,0x9a,0x3b, 0x99,0x43,0x98,0x98,0xf6,0x68,0x34,0xd4,0x96,0xe0,0x81,0x8b,0xb6,0x74,0x2e,0x6d, 0x61,0x41,0x68,0xb7,0x2e,0x61,0xc1,0xf7,0x7b,0x80,0xf0,0xfb,0xf5,0x35,0x56,0xdf, 0xc5,0x48,0x27,0xb3,0x77,0xb6,0xd4,0xe6,0xd8,0xd3,0x62,0xa1,0x35,0x74,0x30,0x70, 0x5e,0x4a,0xf6,0xbb,0x16,0x6e,0x36,0x7a,0xb0,0x54,0x7,0x9,0xe4,0x26,0xe2,0x16, 0x1,0x4e,0xd8,0xba,0x88,0xdd,0xd2,0x49,0xa3,0xa,0x24,0xcc,0xa9,0x69,0xb8,0xed, 0xba,0x46,0xd1,0x95,0xc7,0x35,0x1e,0xe7,0x15,0x42,0x1d,0xac,0x32,0x83,0x2b,0x55, 0xc1,0x40,0x89,0x83,0xca,0xfa,0xb,0x4e,0x9e,0x16,0x42,0x8c,0x11,0xa4,0x99,0xcb, 0xdc,0x48,0xf2,0xaf,0x22,0xcd,0x2a,0xc9,0x79,0x10,0xfd,0x79,0xe3,0x20,0xb9,0x2a, 0x6d,0x44,0x4e,0xb4,0xad,0x88,0xcf,0xc2,0x98,0xac,0xc6,0xde,0xf7,0x22,0x7e,0x57, 0x8,0x4d,0x6,0xb7,0x11,0x93,0x23,0x95,0xcf,0x96,0x75,0x93,0x52,0x7,0x8f,0xa5, 0x47,0x44,0xdd,0xb5,0x5d,0xf,0x77,0x4e,0x6e,0xab,0xd7,0x9c,0x9d,0x7c,0xea,0x89, 0x26,0x47,0x36,0xae,0xb1,0x12,0x47,0xbc,0x1a,0x48,0xcd,0xe7,0x8f,0xba,0x1b,0xb, 0x99,0x49,0xfe,0x80,0x4a,0xbb,0x3e,0x22,0x13,0xf9,0xe2,0x1d,0xc0,0xf8,0x63,0x60, 0xa3,0x49,0xe7,0xa9,0x1,0x79,0x4b,0xbd,0x75,0x5d,0x96,0xd5,0x63,0xe2,0xfd,0xd5, 0x6d,0x4f,0xf7,0xad,0x99,0x28,0xf3,0x2a,0xf1,0x63,0xf2,0xae,0x6f,0x81,0xfe,0x57, 0x2f,0x41,0x47,0x95,0xd5,0x82,0x24,0x53,0x51,0xc3,0xe9,0x3b,0xa,0x94,0x2e,0x5b, 0xb2,0x41,0x2a,0xbd,0xb0,0xdc,0x37,0x69,0x95,0x8b,0xf5,0x24,0xf7,0x52,0x83,0xb9, 0xb5,0x41,0xb6,0xb5,0xbe,0x1e,0x58,0x11,0xe9,0xd3,0x5a,0x97,0xc3,0x73,0x2c,0x12, 0x6,0x4f,0x9d,0x83,0x9f,0x86,0xd8,0xe4,0x4b,0x52,0x23,0xe2,0xea,0x20,0xb0,0xa5, 0xb3,0x42,0x6e,0xbf,0xa3,0xf7,0x40,0xd7,0x55,0x4c,0x5e,0xb3,0xe0,0x9b,0xe0,0x98, 0x3d,0x4e,0x4e,0xaf,0x99,0x48,0xf3,0x37,0xe,0xc,0xe9,0xc0,0xa3,0xc,0x40,0x4f, 0xfd,0x4c,0x12,0x93,0x36,0x4,0x6e,0x77,0xe6,0xea,0x64,0x93,0x1d,0x63,0x63,0x84, 0xd4,0x42,0xee,0xad,0xf6,0x65,0x56,0xfd,0x98,0x13,0xa8,0x4d,0x11,0x94,0xbe,0x6a, 0x6d,0x41,0xee,0xaf,0x91,0xee,0x22,0xfe,0x6e,0xec,0x6b,0xf4,0xc5,0x75,0x9d,0x55, 0xb7,0x4c,0x28,0xa9,0x68,0x4e,0x29,0x48,0x17,0xf3,0x88,0xb5,0xbf,0xd1,0xdc,0x19, 0xf9,0x46,0x2d,0xb9,0x21,0xae,0xac,0x49,0xf4,0xfc,0x3b,0x9c,0xcc,0x45,0xbb,0x87, 0x7b,0x4f,0x81,0x89,0xcf,0xfa,0x1,0x4c,0xa0,0x2b,0x29,0x4b,0xf1,0xba,0x52,0xa6, 0x6f,0x4d,0xf4,0xb2,0xc6,0x75,0xe2,0x40,0x90,0x26,0x16,0x99,0x8f,0x24,0x8,0x1a, 0xa5,0x47,0xfb,0x97,0x83,0x8e,0xef,0x20,0x80,0x2,0x41,0xf7,0xe7,0x94,0xcb,0x41, 0x1f,0x4a,0xb1,0xa6,0x7f,0x18,0xff,0x99,0x49,0x88,0xfe,0x47,0x31,0x4f,0x5c,0x46, 0xe2,0x49,0xb4,0xa3,0x50,0x36,0x46,0xf6,0xa8,0x1a,0xbc,0x6b,0xf5,0x38,0x31,0xcf, 0x90,0x49,0x6d,0xa0,0xba,0x79,0x9e,0xb7,0x2e,0x4d,0xde,0x6f,0xe0,0xd3,0xf5,0x1d, 0xbe,0x46,0x9,0xbf,0x44,0xb7,0x8b,0x31,0x95,0x77,0xab,0x5b,0x3a,0xd7,0x72,0x9c, 0xa0,0x48,0xb4,0x8a,0x78,0x4c,0xcc,0xbc,0xb0,0x62,0x30,0xb1,0x6,0xd5,0x4,0xa, 0xab,0x4f,0x22,0x9d,0x9d,0x7f,0xbc,0x6d,0x33,0x82,0xa2,0xb1,0x41,0x85,0x22,0xa8, 0xb7,0x4a,0x8f,0x89,0x9d,0x5e,0x2a,0xc7,0x72,0x10,0xf0,0x7f,0x3a,0x84,0xeb,0x73, 0xe7,0x4f,0xd5,0x98,0x79,0x7,0xe5,0x74,0xf7,0xe5,0x4b,0x13,0xd,0x78,0x3a,0xf0, 0xad,0x4a,0x95,0xb4,0xea,0xf,0x86,0xb2,0xe1,0x72,0x9d,0x6f,0xff,0x85,0xd0,0x22, 0xb5,0x45,0xc6,0xb6,0xba,0x51,0x1e,0xc8,0x58,0xd8,0xe4,0x4,0xe,0xbc,0x5e,0x46, 0x87,0x4f,0xbb,0x9b,0xe7,0x1d,0xdb,0xf,0xc5,0x3e,0xb1,0xde,0x49,0x11,0xa2,0x26, 0xb6,0x42,0x4,0xa8,0x53,0xc0,0xf,0xeb,0x27,0xe1,0xe4,0x3b,0x83,0x59,0xa3,0x76, 0x6c,0x46,0x7c,0x80,0x83,0x44,0xa1,0xc5,0x72,0xd6,0x77,0xf3,0x56,0x3b,0xdf,0xbb, 0xff,0x4f,0xc,0xb8,0xd5,0xe,0xbf,0x15,0x6,0x5,0x51,0x25,0xa0,0xdd,0xda,0xe2, 0xbc,0x4c,0xe9,0x98,0x50,0x18,0x25,0x53,0x79,0xe2,0xe5,0x45,0x7a,0x83,0xa4,0x21, 0x1b,0x4b,0x4f,0x8c,0x68,0x45,0x51,0x79,0xf0,0xe5,0xc8,0x31,0x83,0xff,0xd6,0x42, 0x54,0x48,0xcc,0x9c,0x96,0x68,0x71,0x64,0x62,0x62,0x91,0x60,0xf9,0xaa,0x2c,0xcd, 0x7c,0x47,0xfe,0xb2,0xe9,0x78,0x65,0xa5,0xb3,0x65,0x77,0x68,0x18,0xa,0x3,0x50, 0x89,0x49,0xcf,0x92,0x9a,0xab,0x9e,0x4c,0x13,0x1e,0x41,0xd8,0x43,0x37,0xa0,0x67, 0x3d,0x43,0x2a,0x9c,0xf0,0xf2,0xdd,0xd5,0x56,0xec,0x2a,0x2b,0x1e,0xc6,0x8e,0x97, 0x8e,0x47,0x27,0x87,0x30,0x35,0xa3,0xbe,0xf6,0x1,0x85,0x8,0x94,0x78,0x1a,0x66, 0x85,0x41,0x81,0x90,0xe9,0xa4,0x58,0x72,0x37,0xe4,0x8e,0xe8,0xda,0x5b,0x7b,0x62, 0xe5,0x43,0xcd,0x9f,0x5f,0x8c,0x23,0xd8,0x73,0xb5,0x79,0xfd,0x59,0x3f,0x8,0x6c, 0x78,0x40,0xe9,0x87,0x82,0x43,0xb8,0xa0,0xad,0xb3,0xbe,0x68,0x65,0x99,0x50,0xd7, 0x88,0x4c,0x11,0x8b,0x5f,0x37,0x72,0x6f,0x60,0xa9,0x56,0x34,0x43,0x80,0x36,0x50, 0x68,0x49,0x91,0x97,0x8b,0x1b,0xb6,0x73,0xb6,0x4f,0xb7,0x4,0xca,0x8c,0x2d,0x99, 0x6e,0x4e,0x20,0xad,0xdf,0xf1,0x2a,0xf6,0x47,0x19,0x4b,0xe9,0xf1,0x3f,0x95,0xe0, 0xf4,0x4b,0xf0,0x9d,0x31,0xf5,0xa3,0x9f,0xc5,0x27,0xe,0x2d,0xf0,0x5e,0xb,0xd0, 0xfe,0x42,0x7e,0xb7,0xc6,0x49,0xd0,0x76,0x6a,0x9b,0x1e,0x82,0x9,0x8f,0x3d,0xfe, 0x1b,0x4d,0x8b,0xa1,0x82,0x1a,0x86,0x6e,0x9e,0x13,0x95,0xad,0x86,0x21,0xa9,0xa8, 0xde,0x41,0xdf,0x82,0x7,0x9f,0xcd,0x5d,0x1f,0x12,0x55,0xf,0xd,0x2b,0xec,0xbe, 0x7c,0x47,0xe1,0xaa,0x33,0xe7,0x5d,0xe0,0x33,0x95,0x34,0x69,0x42,0xfd,0x1e,0x7b, 0xec,0x40,0x3b,0x84,0x90,0xe3,0x92,0x46,0xc,0xfc,0xbe,0x22,0xd2,0xbe,0x2c,0xcd, 0xcb,0x4f,0xa9,0xae,0x6b,0x4d,0x90,0x7b,0x8e,0xc6,0x75,0x96,0x14,0x8c,0x7c,0x38, 0x44,0x46,0xe4,0x8b,0xdb,0x60,0xdd,0xfe,0xb5,0x61,0x2,0xee,0xa9,0x80,0x30,0x2f, 0xe4,0x48,0xbd,0x85,0x2f,0xd1,0xea,0x4d,0xaf,0xac,0xa1,0x36,0x8e,0x36,0x8d,0x23, 0xb8,0x4e,0x4e,0x89,0x4d,0x85,0x53,0x4f,0x67,0xad,0xa7,0x80,0x4b,0xc3,0x4c,0x56, 0x81,0x4d,0xca,0xa1,0x48,0xff,0xfe,0xa7,0xfa,0x4,0x55,0x25,0x6a,0xfb,0xf9,0x17, 0x8f,0x42,0x32,0xa4,0x47,0x5d,0xc,0x6d,0x5c,0x9a,0x63,0x26,0xff,0x4e,0x7c,0xab, 0x97,0x43,0xf1,0xb4,0x56,0x5e,0x66,0xed,0x43,0xf,0xd5,0x34,0x9b,0x71,0x47,0x7a, 0x9d,0x4b,0x33,0x81,0x4,0xd5,0x8e,0x46,0x2b,0xf5,0xec,0xae,0xf,0xfa,0xe6,0x3d, 0x7c,0x4d,0x56,0x93,0x63,0x3f,0x3a,0x13,0x5c,0x46,0x60,0xf7,0x80,0xa4,0x62,0x90, 0x86,0x44,0xfe,0x84,0x30,0x5,0x38,0x87,0xda,0x7a,0x40,0x4b,0x25,0xe0,0x35,0x34, 0xe1,0x4e,0x38,0x8c,0xd2,0x6d,0x52,0x46,0x4c,0x21,0xee,0x9f,0xcb,0x5b,0xde,0x14, 0x13,0x4b,0x61,0x83,0xf0,0x8b,0x18,0xbd,0x47,0x9,0x31,0x8b,0x16,0xd9,0xe9,0xc2, 0x3c,0x44,0x1f,0xbf,0xea,0x7d,0x62,0x61,0x3a,0x63,0x1e,0x8c,0x95,0x7f,0x5c,0xf0, 0xc0,0x44,0xbf,0xb0,0xd9,0xd3,0x27,0x5,0x8e,0x86,0x18,0x94,0x4a,0x80,0xa0,0x5a, 0x6,0x4c,0x5b,0xb7,0x5a,0x6a,0xe1,0xe9,0x19,0x69,0xd4,0xa0,0x93,0x56,0xd4,0xf6, 0xbd,0x42,0x42,0x97,0xd0,0x58,0xd6,0xda,0x45,0x37,0xb2,0x2,0xfc,0x9f,0x4b,0xea, 0x6,0x47,0xe9,0x85,0xf,0x25,0x90,0x77,0xa0,0x37,0x28,0xff,0x15,0xf3,0x73,0xe6, 0x89,0x49,0x42,0xac,0xbf,0xcf,0x3f,0x68,0x49,0x8e,0x4c,0x53,0xa6,0x70,0xe1,0x4, 0xeb,0x42,0x95,0x8f,0xb1,0x79,0x56,0x75,0x80,0xb9,0x30,0x9e,0x26,0xf7,0x77,0xb7, 0xd8,0x4b,0x98,0x86,0xa4,0x81,0xee,0x1b,0xf0,0xf7,0x65,0xed,0x8f,0xe8,0xc8,0x7f, 0x77,0x41,0x4f,0x93,0x42,0xe0,0x45,0xa3,0x75,0x4e,0xbe,0x92,0x13,0x18,0x33,0x42, 0x8e,0x40,0xaa,0xbb,0xc7,0xb1,0xd5,0x85,0x49,0x4d,0x65,0x1,0x25,0x8d,0xc2,0xc4, 0x4,0x42,0xdd,0x92,0x94,0x26,0x43,0x15,0xfc,0x88,0xad,0xbc,0x5f,0xec,0x65,0x3b, 0x8f,0x44,0x27,0x95,0xce,0xd0,0xa8,0x4a,0xb7,0x57,0x25,0xa,0x4c,0x6,0xc1,0xc3, 0xa2,0x43,0x91,0x94,0x5d,0x5f,0x76,0x54,0xd8,0x9c,0x42,0xe8,0x22,0x38,0xcc,0xf9, 0x80,0x46,0x29,0xab,0x21,0x82,0x2a,0x11,0xa4,0x78,0xb5,0xcd,0xd8,0xbe,0xf0,0x2c, 0x85,0x4b,0x57,0x8e,0x80,0x23,0x63,0x68,0x9f,0x85,0x53,0xb8,0x9,0x6b,0x32,0x25, 0xfd,0x4a,0x1b,0x8e,0x24,0xee,0x7,0xdf,0xae,0xc,0x5e,0x9e,0x99,0x72,0x40,0x6d, 0xc2,0x4d,0x85,0xb6,0xbf,0x9,0x50,0x50,0x5,0x84,0x57,0x3e,0xc6,0xd6,0x12,0x65, 0xbe,0x4a,0xf8,0xb7,0x9,0xf8,0xde,0xa5,0x7b,0x85,0x28,0x50,0xf,0xc1,0x1e,0x10, 0x76,0x4c,0x1f,0xbf,0xae,0x83,0x6d,0xc0,0xb2,0xf0,0xe5,0xae,0xae,0x17,0xbc,0x66, 0x42,0x4a,0xc2,0x90,0x92,0x4e,0x35,0xa0,0xef,0x75,0x7,0xaf,0xc6,0x13,0xfb,0x88, 0x19,0x4c,0x8e,0xa5,0x7c,0x3d,0x84,0xd3,0xd7,0xbe,0x3d,0xda,0xc1,0xb8,0x52,0xda, 0xbf,0x42,0xd1,0xab,0x78,0xda,0xde,0x83,0xce,0xca,0xa1,0x13,0x10,0x15,0x51,0x76, 0xdb,0x46,0x29,0x8d,0xbc,0xaf,0x8a,0x2d,0x1b,0x17,0x17,0x45,0x7c,0x6,0x38,0x4c, 0x7a,0x4d,0xcd,0x8c,0x2,0x42,0xde,0xa6,0x76,0xe7,0xac,0x4b,0xb2,0x98,0x12,0x8f, 0x2f,0x47,0xd7,0x95,0xfe,0xd,0xc2,0x5b,0x4,0x70,0x89,0xb5,0xfc,0xe0,0x48,0x85, 0x32,0x45,0x3,0xba,0x4f,0x2,0x46,0xcd,0xf7,0x55,0x66,0xaf,0x7c,0x97,0x59,0x25, 0x27,0x41,0x9c,0xad,0xd0,0xfc,0x8e,0xa6,0xf2,0x53,0xe6,0x94,0x7a,0x22,0x3a,0xf, 0xca,0x4e,0x42,0x94,0x3b,0x42,0xbe,0x5f,0x28,0x5c,0x46,0xd6,0x4c,0x18,0x92,0x7b, 0xc9,0x43,0x99,0xa0,0x67,0x45,0x5b,0x28,0xd,0xf7,0xff,0x48,0xe4,0x8d,0x55,0x60, 0xde,0x47,0x1e,0xb6,0x27,0x9f,0x17,0x60,0x6c,0xf1,0x34,0x1e,0xd6,0xbf,0x47,0xfa, 0x13,0x43,0x87,0xa6,0xae,0x30,0xe0,0x51,0x54,0x93,0xff,0x5f,0x21,0x7f,0x6a,0x5e, 0xa7,0x49,0xc4,0xad,0xf0,0xca,0xa2,0xdd,0x71,0x9b,0xe1,0xcc,0x6c,0xa0,0xaf,0xe3, 0xb2,0x41,0xe4,0xab,0x10,0x75,0x70,0xed,0x97,0x2f,0x97,0x21,0xb4,0x63,0x56,0xf8, 0xc0,0x49,0x24,0x80,0x53,0x49,0x27,0x73,0xc6,0x84,0x6c,0x58,0xc5,0xdc,0xe6,0x3d, 0x6b,0x42,0xa8,0xad,0x6b,0x3b,0x70,0x6a,0x69,0x43,0x8,0xf5,0x36,0xa8,0x91,0x9, 0xbe,0x4b,0x15,0x97,0x6f,0x7,0xb9,0x72,0x98,0x27,0x8c,0x3,0xf6,0x3a,0xc1,0xb0, 0x5d,0x4b,0x1a,0x9e,0x4e,0xbe,0x96,0x12,0x3,0x64,0x50,0xcc,0x4e,0xe9,0x90,0xdb, 0xa3,0x45,0xf5,0x9d,0xef,0xf1,0x2d,0xf6,0xef,0x3,0xf4,0x69,0x49,0x52,0x10,0x7c, 0xc4,0x40,0x7a,0x9f,0x1f,0x9e,0xa3,0x28,0x9e,0xf6,0xda,0x61,0x53,0x7,0x43,0xa2, 0x7c,0x41,0xf,0x92,0xee,0x49,0xdd,0x4b,0xca,0x52,0xf4,0x58,0x89,0xa4,0x69,0xc5, 0x84,0x4f,0x4,0xba,0x5,0x1c,0x1e,0xeb,0xbe,0xb,0x64,0xe1,0x92,0xa0,0xde,0x58, 0x90,0x4c,0xda,0x84,0x11,0xa5,0x51,0xa,0x25,0x35,0x26,0x66,0x94,0xc8,0x2,0x76, 0xa1,0x4a,0xf6,0x92,0xc6,0x51,0x86,0x8,0xf5,0x67,0xe5,0x4b,0x3a,0x42,0x8a,0x7f, 0xed,0x42,0x65,0xba,0xf3,0xb2,0xc,0x9c,0xf6,0x49,0x3f,0xaa,0x96,0xd5,0x61,0xb, 0x7e,0x4c,0x12,0xb1,0xcb,0x9a,0xe8,0xb6,0x27,0xb6,0x1c,0x50,0x91,0xc4,0x5b,0x98, 0x4e,0x49,0x67,0x94,0x29,0x12,0x21,0x7c,0x17,0x50,0x20,0xd,0x7c,0xd7,0xbc,0xd5, 0x2c,0x4d,0x7d,0x95,0x3d,0xda,0xec,0x7c,0xaf,0xfa,0x3,0x57,0x69,0x40,0xb6,0x99, 0x80,0x45,0x58,0x98,0xa7,0xc9,0xb2,0x44,0xcb,0xd6,0xa1,0xf1,0xb5,0xf,0xb3,0xcb, 0xa,0x42,0xaa,0xaf,0x97,0x7d,0x53,0xf8,0x3e,0xe1,0x69,0xc0,0x3,0x26,0x9e,0x46, 0x52,0x4d,0xc,0x81,0x6d,0xcb,0x4a,0xe9,0x1e,0xec,0xdc,0x3b,0x5e,0x3b,0x6e,0x86, 0x1c,0x46,0x7,0x8d,0x42,0x21,0xf7,0xa,0x41,0x7e,0x8b,0xf8,0xf,0x28,0x60,0x60, 0x39,0x42,0x6d,0x8d,0xd0,0x83,0x24,0x10,0x2d,0x8b,0xd7,0x2f,0x27,0xd9,0x56,0xc8, 0xad,0x48,0xfb,0xb4,0xdf,0x6a,0x21,0x34,0xd8,0x43,0xf2,0x25,0xef,0xea,0x9c,0x62, 0x6c,0x43,0x56,0xbe,0x9b,0xea,0x53,0xca,0x5d,0x27,0x40,0xda,0xcf,0xca,0x12,0x9c, 0xe6,0x4e,0x27,0xb0,0xa8,0x73,0x83,0x6e,0x5f,0x66,0x98,0x1e,0xa2,0x10,0x9f,0xaa, 0xc2,0x41,0x27,0x9d,0xf2,0x79,0x14,0x96,0x4d,0x5d,0xc1,0x85,0x7c,0x2f,0x6b,0x2c, 0xf2,0x4b,0xb8,0x9f,0x19,0x4c,0xc,0xcc,0x6e,0x5a,0xbb,0xd3,0x26,0xd,0xa5,0xc9, 0x63,0x4f,0xda,0x91,0xa8,0xf3,0xc0,0x23,0x32,0x89,0x8e,0xb0,0xc3,0xa0,0xda,0xd2, 0x4c,0x48,0x70,0x81,0xf2,0x7e,0xbf,0xaa,0x52,0xe4,0x16,0x86,0x88,0xce,0x6e,0x94, 0xf9,0x4e,0xf4,0x87,0xdf,0x8b,0xb,0x24,0x1e,0xaa,0xd0,0xbe,0x33,0x34,0x1b,0x81, 0xfd,0x4b,0xf4,0x8c,0x52,0xd,0x56,0x4b,0x89,0xce,0xd3,0x1c,0xe4,0xa,0x5f,0xf3, 0x9b,0x4b,0x8d,0x88,0xf4,0x95,0xd2,0x69,0x4d,0x29,0x93,0x6e,0x7e,0xe5,0x91,0xd3, 0xb5,0x48,0x15,0x87,0x64,0xa8,0x7f,0x4d,0xa,0x19,0x33,0xb2,0xc1,0x7d,0x8b,0xb7, 0x42,0x4d,0xe5,0xaa,0x5a,0x84,0x4d,0xb1,0xfe,0x85,0xb5,0x83,0xe5,0x3a,0x73,0x6, 0x91,0x4f,0x0,0x81,0x59,0xff,0x3a,0x8,0xb4,0x6b,0xd1,0x9b,0x98,0x50,0xb6,0xd2, 0x14,0x4f,0xc6,0xa8,0xdf,0x9f,0xd5,0xd2,0x9f,0x18,0xee,0x7c,0x81,0xdf,0x1d,0x33, 0x54,0x45,0x40,0xad,0x3e,0xa6,0x22,0xf2,0xa7,0x67,0x68,0xaa,0x33,0x3b,0xdb,0xb7, 0xe5,0x49,0x5b,0xad,0xb0,0xbd,0xce,0x95,0xa4,0xfa,0x3f,0xd1,0xaa,0x4b,0x4a,0x2b, 0x91,0x42,0x54,0xbc,0x1b,0x60,0x8f,0x46,0x7e,0x26,0x74,0x8a,0xa,0x39,0xe6,0x57, 0xc5,0x4d,0xfa,0xad,0x3f,0x10,0xbb,0x18,0xb5,0x71,0x5f,0x3e,0x6b,0x3b,0x41,0x20, 0x99,0x4a,0xdd,0xa8,0x4a,0xf9,0xce,0x6,0x6c,0x86,0xb3,0x1e,0x88,0x7c,0x34,0x54, 0xc7,0x43,0xdc,0xac,0xc7,0xa7,0xc9,0xb1,0x73,0x10,0x19,0x68,0x22,0xc,0x1d,0x62, 0x29,0x41,0xc7,0xa0,0x4a,0x6d,0x1c,0x12,0xba,0x33,0x41,0xde,0x14,0x0,0xe8,0x58, 0x9b,0x4d,0xff,0xa1,0xcd,0x14,0x88,0xcf,0xf7,0xeb,0xa4,0x21,0x1,0xa0,0x87,0x62, 0xb5,0x43,0xf5,0xad,0x12,0x92,0x3b,0xf2,0x54,0x94,0x31,0x5d,0x6d,0xe7,0xa4,0x4e, 0x13,0x44,0x1c,0xbd,0x15,0x6c,0x94,0xf3,0xf8,0x5d,0x2f,0xf0,0xc9,0xa9,0x96,0x66, 0x60,0x40,0x34,0x9d,0xa3,0x52,0x22,0x25,0xca,0x93,0xb9,0xc1,0x84,0x80,0xe9,0x22, 0xeb,0x4b,0xc8,0x8c,0x53,0x12,0xc5,0x43,0xbc,0x7d,0x33,0xb5,0x87,0x61,0x8b,0x9d, 0x85,0x4c,0xc2,0x95,0xd9,0x85,0xbe,0x8,0x5d,0x13,0xf2,0xf7,0x27,0xdb,0xfd,0xd9, 0x6d,0x4e,0xbb,0xa8,0xa5,0x66,0xc7,0xf8,0x61,0x20,0xa8,0xf0,0xad,0x7,0x61,0x75, 0x19,0x41,0xd9,0xb1,0xe2,0x26,0xb,0x8a,0x25,0xc5,0xaf,0xf0,0x5e,0xce,0xcf,0xc0, 0x73,0x44,0xe8,0x8c,0x8c,0xa1,0x77,0x4a,0xfe,0x68,0x68,0xf8,0xc6,0x57,0x1c,0xb4, 0x4c,0x4e,0x3,0x85,0x81,0x4a,0xee,0x1e,0x1c,0x74,0xf4,0x4f,0x6b,0xa8,0xa0,0x67, 0x6,0x49,0xfa,0xbc,0xb4,0x72,0xdb,0xbb,0x30,0x37,0x12,0x21,0xb,0x71,0x4a,0xdf, 0x7e,0x46,0x91,0xb8,0x91,0xa3,0x10,0x8f,0x94,0x7,0xdd,0xb7,0x33,0x7a,0x78,0xef, 0xcf,0x4d,0x39,0xbb,0xc6,0xec,0x45,0xb8,0x95,0x5f,0xc3,0x80,0x4b,0xa4,0x69,0x30, 0x6e,0x41,0x8f,0xa7,0x71,0xf6,0xcd,0xb6,0x7,0x0,0x89,0xa1,0xda,0xbe,0x7b,0xe5, 0x5e,0x4d,0x7f,0xa5,0x79,0x8e,0x71,0x8a,0xbf,0xc2,0x73,0x75,0xb,0x62,0x8f,0x19, 0xba,0x48,0x9c,0x93,0xfe,0x3b,0xc2,0xbc,0x1f,0xd2,0xb,0xdf,0x86,0xcd,0x6f,0x7c, 0xeb,0x4a,0x6c,0x93,0x6f,0x96,0x97,0x53,0xff,0x50,0xe7,0xe2,0x4c,0xe4,0xe1,0x6d, 0x23,0x40,0x5a,0x93,0x6d,0xae,0x6b,0x5b,0x4e,0x20,0xc4,0xfc,0xea,0x5f,0x1d,0x70, 0x3b,0x4a,0x44,0xb2,0x7b,0xd8,0xc2,0x32,0x76,0x51,0xd0,0xdb,0x1c,0xbb,0x1,0xec, 0x7e,0x44,0xe7,0xa3,0x5,0xd9,0x82,0xa8,0xfb,0x94,0x30,0xe5,0x7d,0xea,0x3b,0x5a, 0xec,0x44,0x5e,0x99,0x9a,0x5c,0xa1,0xca,0x60,0xdb,0x49,0x59,0x2d,0x33,0xc6,0x3, 0x75,0x4b,0xb,0x9f,0xd,0xb5,0x39,0xf7,0xde,0x5d,0x7b,0xef,0x78,0x53,0x0,0x75, 0xa8,0x4c,0xe6,0x88,0x7e,0x32,0x9a,0x97,0x98,0xc0,0x79,0xfd,0x87,0xf4,0xb6,0x6, 0xf7,0x46,0xc1,0x9d,0xc3,0x41,0x99,0x50,0xb0,0x2e,0x74,0x14,0x7c,0x5f,0x27,0x1e, 0xba,0x4d,0xe0,0x8d,0xbe,0x17,0xd3,0x2f,0x5e,0x2b,0x93,0x85,0x97,0x42,0x5e,0x6d, 0x33,0x49,0x4d,0x9f,0x88,0xa1,0x7,0x87,0x9b,0x52,0x96,0xe,0xa,0xa0,0xcb,0x4, 0x2e,0x42,0x36,0xa4,0xd8,0x9,0x9a,0x10,0xdc,0x2b,0xef,0x8d,0x2e,0xd0,0x23,0x30, 0x7a,0x45,0xab,0xb8,0x70,0x32,0x68,0x6,0x3d,0xa9,0x9a,0xfd,0x8d,0xd,0x68,0x59, 0x33,0x4b,0xa4,0x8e,0x6b,0x50,0xfa,0x6b,0x56,0x2c,0x2b,0x50,0x7f,0x93,0x5,0xaf, 0x48,0x41,0x6f,0xaa,0x44,0xb,0x60,0x5b,0x35,0xad,0xe2,0x89,0xaa,0xe6,0x33,0x9, 0x89,0x40,0xf4,0x89,0xf,0xe3,0x9b,0x4a,0xbe,0x82,0x7c,0xa0,0x8c,0x3b,0xde,0x6d, 0xca,0x42,0x5a,0x80,0x43,0xbc,0x4,0x82,0xd7,0x51,0x98,0x92,0x8f,0x19,0x13,0x96, 0xd2,0x4e,0x15,0x99,0xee,0xa1,0xc5,0x1b,0xa7,0x86,0xef,0x81,0x9e,0x6a,0xf8,0x65, 0x1d,0x49,0xb0,0x86,0x2,0x59,0xf8,0xb8,0xaa,0x36,0xea,0x6f,0x8c,0x25,0xe,0x48, 0xed,0x4f,0x5b,0xa4,0x1b,0x5d,0x40,0x49,0x80,0x9c,0xc9,0x12,0xad,0x50,0x57,0x67, 0x1f,0x40,0xc6,0xb5,0xdc,0x28,0xfd,0x9e,0x73,0xee,0xd3,0x5e,0xd2,0x1a,0x8e,0x9c, 0x22,0x49,0x2e,0xbc,0x2b,0xbf,0xfc,0x54,0xfb,0xa0,0x7b,0x74,0xb6,0x8d,0x1b,0x16, 0x8a,0x4e,0x1f,0x96,0x7c,0x2f,0x38,0x4f,0xf6,0xb7,0x32,0xb,0x76,0x8c,0xe2,0x5, 0xc3,0x41,0x33,0x91,0x8b,0xff,0x37,0x37,0xe3,0x32,0x87,0x8f,0x72,0x80,0x24,0x69, 0x2c,0x42,0x1e,0x8c,0x90,0xef,0xde,0x84,0x68,0xe5,0x95,0xd6,0xfc,0x7f,0x55,0xd7, 0x46,0x44,0x97,0x91,0x81,0x46,0x18,0x12,0x9a,0x8e,0x42,0xa4,0x91,0xfb,0xef,0xa2, 0x86,0x49,0x7e,0xaa,0x95,0xc8,0xf9,0x87,0x82,0x36,0x4,0xa0,0xd2,0x39,0x99,0xe, 0x4e,0x42,0xf6,0xad,0x60,0xff,0x92,0x14,0x6a,0x8c,0x3b,0x26,0x9,0xf,0x8a,0xc6, 0xa,0x42,0xfe,0xa9,0x4a,0x73,0x98,0xa3,0x83,0x51,0xe4,0xde,0xab,0xba,0x24,0x3e, 0x94,0x48,0x32,0x9f,0x81,0xc5,0xdd,0x3f,0xa0,0xa4,0x26,0x55,0xf9,0x69,0x28,0xd8, 0xc,0x4b,0xd2,0xb3,0x14,0x48,0x62,0x6d,0xf,0x1d,0x1c,0xf5,0x24,0x6e,0xb0,0x4b, 0xe3,0x48,0xd4,0x99,0x6,0xae,0x8f,0x7e,0x12,0x3d,0x10,0x5c,0x5f,0xb8,0x79,0x9a, 0xf,0x43,0xcc,0x98,0x4c,0xcd,0x3f,0xec,0x8a,0x24,0x7b,0xad,0x5e,0x71,0xdf,0x5f, 0x80,0x4f,0x1,0xaf,0x89,0xbe,0xf5,0xe0,0xb0,0xd8,0x78,0xb5,0x51,0x66,0xd1,0x21, 0x9a,0x40,0xba,0x96,0x8f,0x3e,0xa,0x11,0x35,0xd6,0xe2,0x69,0x78,0x86,0xf6,0xbb, 0xcb,0x42,0x93,0xb6,0xa,0x98,0xbe,0x46,0xdd,0xe9,0xab,0x1b,0x59,0x53,0x15,0x5b, 0xc0,0x44,0xc6,0xad,0x7e,0x7d,0x56,0xf,0x97,0x8d,0x40,0x8a,0xf3,0xb3,0x28,0xa3, 0x3e,0x4f,0x75,0xae,0x32,0x28,0x4a,0xc5,0xa4,0xb4,0xa8,0xc,0xf7,0x3b,0xf1,0x83, 0xc0,0x42,0x8d,0xa9,0xd,0x45,0x25,0xd3,0x12,0x71,0xc9,0x1c,0x44,0x1f,0x1b,0x55, 0xd8,0x4c,0xbe,0x98,0x20,0xa,0xa6,0xf2,0xef,0x79,0x48,0x10,0xf4,0x4b,0xc9,0xbc, 0x28,0x41,0x88,0x9c,0xb6,0xfc,0xeb,0x1a,0x93,0xc2,0xe4,0xfc,0x89,0xfa,0x42,0xb1, 0xc1,0x47,0x13,0x92,0x47,0x77,0x91,0x9,0xe4,0x1a,0x2d,0x53,0x17,0x48,0x47,0xb6, 0x91,0x46,0xcf,0x8f,0x3e,0x5a,0x38,0x5f,0x12,0xda,0x89,0x9a,0x49,0xc6,0xea,0x16, 0xc4,0x4b,0x2f,0xb9,0x37,0xbf,0x9d,0x44,0x63,0xda,0x85,0xf,0xc5,0xe9,0xc4,0x8a, 0x59,0x49,0x75,0xa5,0xa7,0xf,0x14,0x99,0x3e,0xf,0x91,0xc0,0xa1,0xdd,0x23,0x8d, 0x52,0x4e,0xdf,0x91,0x72,0xce,0xc6,0xea,0x19,0xbc,0x8a,0x13,0x20,0x54,0x2,0x33, 0x97,0x40,0x93,0xa5,0x24,0xa2,0xd2,0x42,0xe4,0x35,0xb1,0xd0,0xd,0x4f,0xa7,0x66, 0xef,0x47,0x71,0x84,0xd5,0x8,0x2,0xaa,0x7f,0xe5,0xa5,0x58,0x4a,0x52,0x40,0x5a, 0xa,0x4f,0x2e,0xb0,0x2b,0x96,0x6e,0xf2,0x34,0x2f,0xd5,0x7,0x23,0xb2,0xe4,0xdd, 0x9c,0x4e,0x4f,0x81,0x49,0xec,0x99,0xa5,0xd8,0x22,0x3a,0x79,0xd1,0x5e,0x9a,0x5e, 0x50,0x45,0xd3,0xb7,0x86,0xa7,0xa8,0x5f,0xbf,0x4b,0x7b,0x53,0xcb,0x16,0x67,0xb4, 0x25,0x4b,0xdc,0x8d,0xe,0x54,0xb1,0xb4,0x19,0x1a,0x5d,0xe,0x94,0x29,0x8f,0xe6, 0x30,0x48,0xb7,0xa8,0xce,0x81,0x79,0xcc,0xb8,0xa9,0x45,0x33,0x5e,0xd3,0xe2,0xb6, 0xb7,0x45,0x11,0xa1,0x28,0x11,0x8a,0x2f,0x67,0x58,0x11,0x3f,0x61,0x62,0x34,0x23, 0xcc,0x4e,0x3b,0x8f,0xca,0xcd,0x97,0x1f,0x90,0x8d,0x55,0x7,0x95,0x1c,0x6,0xb5, 0x78,0x4d,0x14,0x8c,0xa4,0xd2,0x10,0xd6,0x56,0x9b,0xcf,0xf9,0xb8,0x53,0xd9,0x1b, 0xc7,0x49,0x44,0x99,0x1f,0x90,0x7a,0xf6,0x8b,0x4e,0x45,0x55,0x4b,0x76,0x22,0x30, 0xe3,0x42,0x37,0xb8,0x98,0xf3,0x19,0x21,0x26,0x67,0xbd,0x5f,0xfb,0xa8,0xcf,0xc0, 0x90,0x4f,0xfe,0x98,0x9c,0xe2,0x4b,0xf3,0xf9,0x25,0x65,0xfa,0x9b,0x2,0xe1,0x84, 0x14,0x4b,0x82,0x8a,0x4,0x87,0xcb,0x22,0xb3,0x5e,0xb6,0xbb,0x9b,0xb5,0xcc,0x77, 0xc2,0x48,0x33,0xb2,0x53,0xee,0x68,0x8,0x73,0x20,0x33,0x52,0xb4,0xd5,0xfa,0xfb, 0x4b,0x46,0xcb,0xab,0x21,0x5,0xf6,0xff,0xf1,0x3a,0xc4,0x77,0x82,0x54,0xaf,0xe8, 0x96,0x44,0x5d,0xa4,0xfd,0x44,0x65,0x61,0x86,0x8a,0x16,0xf8,0xb3,0x4e,0x8e,0xaf, 0xeb,0x4f,0xea,0xba,0xac,0x58,0xe3,0x9e,0x3d,0x60,0xa4,0xe1,0x2d,0xc7,0x85,0xc9, 0x5c,0x42,0x3a,0x90,0x2c,0xfa,0xce,0x43,0xa,0xd1,0xf5,0xba,0x38,0x51,0x71,0xb3, 0xd1,0x4f,0x81,0x9d,0xbe,0x5,0x57,0x5f,0x6c,0xd,0x92,0xf4,0xa4,0x9b,0xcc,0xa4, 0x23,0x48,0x7f,0xbb,0x59,0x45,0xda,0xf1,0x78,0x5e,0xb2,0x24,0xa,0xc7,0xd1,0xf2, 0x41,0x48,0xb6,0x8d,0xe0,0x5d,0x15,0x18,0x67,0x46,0xaf,0x11,0xb5,0xa7,0x5b,0x45, 0xed,0x43,0xa2,0x90,0x97,0x29,0xdd,0x60,0x49,0x55,0xf8,0xe,0xb3,0x9f,0xef,0xad, 0xdf,0x42,0xee,0x8e,0x15,0x43,0x16,0x19,0xa8,0x19,0x5,0xc3,0x5d,0x87,0x30,0x13, 0xc3,0x40,0x85,0x95,0x79,0x92,0x38,0xf1,0xe8,0x3c,0xeb,0xf1,0x5f,0xf9,0x79,0x40, 0xa1,0x4e,0x2,0xb8,0x81,0xd,0x6a,0xc5,0x24,0x6d,0x33,0x40,0x62,0xab,0xb1,0xcf, 0x83,0x42,0x46,0x8d,0x4a,0x86,0x19,0x35,0xbb,0x7f,0x57,0xed,0x37,0x33,0xb1,0xa3, 0xac,0x4e,0xc9,0x87,0x71,0xcb,0x4,0xb7,0x60,0x0,0x25,0x6a,0x30,0xa6,0xde,0x2f, 0x50,0x4e,0x34,0x8e,0x80,0x9,0x7a,0x2b,0xcc,0xf6,0x2b,0xc4,0x8f,0x73,0x9f,0x13, 0xe,0x42,0xf4,0x98,0x97,0x42,0x41,0xcd,0x5c,0x53,0x10,0x5f,0x98,0xc3,0xbf,0xb2, 0x3,0x45,0xd4,0x91,0x48,0x49,0x45,0xee,0x91,0xa6,0x83,0x87,0x48,0xa4,0x28,0x4e, 0x4b,0x4b,0x81,0xa0,0x9b,0x8c,0x42,0x64,0xb6,0x4d,0x78,0xff,0xf8,0x79,0x49,0xff, 0xaa,0x4d,0xf9,0x98,0x1d,0x8f,0xea,0xa2,0xe6,0x4e,0x14,0xc1,0x8,0xf5,0x45,0x9a, 0xc5,0x4b,0xf8,0x8c,0x9b,0x36,0xfb,0x73,0x3a,0xab,0xa6,0x19,0x2c,0x6f,0xd8,0x71, 0x75,0x41,0xa7,0xad,0xf4,0xa5,0xcc,0x63,0x3e,0x11,0x30,0x8a,0xbf,0xfa,0x56,0x79, 0x73,0x43,0xbc,0x9f,0xc4,0x12,0x55,0xfb,0xe0,0x4a,0x49,0xfe,0x87,0x94,0x66,0xbf, 0xcc,0x4b,0x48,0xb2,0x1e,0x51,0xa2,0xbb,0xd5,0xb2,0x44,0x55,0xa0,0x51,0x73,0xd4, 0x30,0x42,0xd0,0x97,0xf0,0xe5,0xec,0x2a,0x4,0x68,0x3a,0xcc,0x14,0xa4,0x34,0xee, 0x1c,0x41,0xda,0x91,0x0,0xf9,0x20,0x56,0x7c,0xc2,0xe5,0xb8,0xe6,0xed,0xf6,0x9a, 0x7f,0x43,0x6c,0x87,0x56,0x9b,0x8d,0xe3,0x6e,0x2c,0xfa,0x30,0x41,0x3c,0x83,0x2, 0x47,0x49,0x97,0x8c,0xc7,0x78,0xf6,0xda,0xdc,0x7c,0x10,0xf4,0xde,0xa7,0xac,0x1, 0x1e,0x49,0x53,0xb5,0xa,0xce,0xba,0x8b,0x9e,0x37,0x5b,0xc7,0x2f,0xb5,0xb2,0x1, 0x1d,0x4f,0x18,0xb2,0x7e,0xa1,0xdb,0xe2,0xd2,0xb,0x44,0xb8,0x7d,0x7c,0xde,0xf8, 0xa8,0x46,0x90,0x8a,0x64,0xf4,0x3a,0x30,0xe1,0x77,0xeb,0xa3,0xad,0xa5,0x4,0xbe, 0xe9,0x49,0xa7,0x86,0xa8,0x84,0xdf,0xaa,0x87,0x81,0xea,0xaf,0xd6,0x82,0xb9,0x43, 0x6f,0x40,0xe2,0x9e,0x34,0x6e,0xec,0x72,0x3b,0x96,0x3,0x7f,0x18,0xf7,0x3e,0xde, 0xad,0x44,0x9d,0x87,0xb2,0x25,0x32,0x15,0x74,0xce,0x4b,0xd1,0xbf,0xa6,0x39,0x25, 0x6f,0x48,0x9c,0x8d,0xe5,0xc5,0x7b,0x3d,0xd6,0xa2,0x82,0x48,0x5,0x5a,0x7b,0x87, 0x22,0x49,0xf5,0x91,0xf6,0xa1,0x91,0x12,0x90,0x4e,0xbb,0x4a,0x68,0x8b,0x12,0xcd, 0x7f,0x48,0xb2,0xb5,0xdf,0xad,0xe3,0xda,0xea,0xc5,0xd4,0xae,0xc5,0xad,0x22,0xb3, 0xf3,0x4a,0xa7,0x91,0x28,0xba,0xd,0x27,0x91,0x85,0xa7,0x90,0xd1,0x0,0xa0,0x8a, 0x14,0x42,0x19,0xaa,0x9,0x1a,0xcc,0x88,0x59,0x9a,0x65,0x32,0x21,0xda,0x1d,0xad, 0x7b,0x42,0xb1,0xb2,0x76,0x23,0x19,0x8,0x20,0x90,0xb6,0xc1,0xa6,0x87,0x5d,0xb5, 0x9e,0x48,0x4e,0xa3,0x2e,0x36,0x3c,0xf0,0xe8,0xe6,0x28,0x80,0xe2,0x38,0xe3,0x6d, 0x95,0x49,0x48,0x99,0xed,0x79,0xf,0x25,0x79,0x23,0x50,0x60,0xc1,0x43,0x7e,0xc8, 0x16,0x4c,0x9a,0xa8,0xaa,0xfd,0x16,0xcd,0x1c,0x60,0xc1,0x75,0x67,0x49,0xcb,0x7c, 0x38,0x45,0xd9,0x97,0x22,0xdd,0xbd,0x56,0x50,0x8b,0xb,0x29,0x39,0xf6,0xc6,0x8e, 0x64,0x4c,0x9,0x95,0xb,0x63,0xe7,0xa7,0x18,0x4c,0x8,0x38,0x5,0x3e,0x93,0x3e, 0x4,0x4d,0xfb,0xbb,0x93,0x6c,0xd6,0xae,0x40,0x3b,0xd8,0x1d,0x84,0x9,0xa1,0x15, 0x90,0x42,0x91,0x9d,0x32,0xd8,0xdd,0x5,0x75,0x81,0x47,0xf9,0x62,0xda,0xe6,0x72, 0xf0,0x4e,0x15,0xb6,0x7f,0x59,0x55,0xe4,0x8e,0xf7,0x7a,0x3c,0x8f,0xd2,0x28,0x94, 0xba,0x46,0x8c,0xbf,0x15,0x44,0x41,0x6e,0xe4,0xf6,0xcb,0x7b,0xd9,0xbf,0x59,0x0, 0x12,0x4c,0x22,0xb4,0xb3,0xa,0xba,0x65,0x1d,0xb4,0x82,0x5c,0x95,0x83,0x87,0x70, 0xf1,0x49,0x6d,0x81,0x89,0x21,0x39,0x57,0x9a,0x81,0x45,0x4,0xe7,0x6b,0x78,0xa2, 0x59,0x48,0x21,0xa4,0x25,0xb8,0x13,0x24,0x82,0xf4,0x1b,0x4d,0x33,0x32,0x3d,0x41, 0xba,0x47,0xd8,0xb2,0x49,0xe2,0x6c,0x71,0xf8,0x7f,0x47,0x75,0xbd,0x26,0xd8,0x8b, 0xea,0x4b,0x93,0xb3,0xe,0x13,0xe2,0x4,0x5d,0x9f,0x2f,0xbf,0x7b,0x66,0x2c,0x8c, 0x66,0x48,0xf6,0x99,0x58,0x79,0x50,0x8c,0x87,0x66,0xcf,0xf5,0xd8,0x2a,0x24,0xe8, 0xfc,0x46,0x7a,0xbb,0xd9,0x45,0x14,0xf1,0x15,0xf8,0x37,0xae,0x2,0x9a,0xf5,0xc5, 0x74,0x42,0xd7,0xb7,0xc9,0x7e,0x2e,0x7,0x90,0x1a,0xf1,0xf6,0xd1,0x9a,0xc7,0x13, 0x8a,0x41,0x75,0x98,0xfa,0x56,0x87,0x43,0xeb,0xd3,0x29,0x45,0x1f,0xaa,0x78,0x5e, 0xc2,0x44,0x8c,0x8a,0x44,0x74,0x15,0xc4,0xa1,0x7c,0x3,0x36,0x20,0xd,0x8a,0x17, 0x77,0x47,0xa3,0xa7,0x51,0x6c,0xcb,0xba,0x23,0xef,0xfb,0x8b,0xd5,0x83,0x23,0xd7, 0x2c,0x4b,0xac,0x97,0xe1,0x7,0x4e,0x2e,0xf4,0xc8,0x15,0x1,0x8e,0x7f,0xfd,0xcc, 0xa7,0x49,0xc0,0xb9,0xd3,0xd4,0xd3,0x6c,0xde,0x4a,0xf1,0x3a,0x71,0x9e,0x68,0x4f, 0x38,0x48,0xba,0x90,0xfd,0x6f,0x38,0x7a,0x6c,0x65,0xc5,0x54,0x88,0x1d,0xa7,0x82, 0xf,0x40,0x20,0xbc,0x7f,0x13,0xfc,0xa0,0x70,0x71,0xdd,0x62,0xcf,0x89,0x64,0x10, 0x32,0x4d,0x4f,0xa5,0x59,0xbf,0x56,0x81,0xf2,0x1d,0x78,0x8e,0xb7,0x6,0x77,0xd7, 0xd1,0x4a,0x0,0x81,0xd1,0x51,0x96,0xa1,0x8a,0x99,0x4f,0xd,0x17,0x33,0x98,0x25, 0xa1,0x44,0x8c,0x9e,0xd,0x83,0xb0,0xc,0x23,0xcc,0xd7,0x7c,0xe3,0xc3,0xc7,0x47, 0x47,0x42,0x4e,0x88,0xc2,0x9c,0xb8,0x33,0x9c,0x60,0x36,0x9f,0xc9,0xda,0x4e,0xf9, 0xf0,0x40,0xb3,0xbe,0x78,0xa7,0xcc,0x8e,0x63,0xaa,0x1a,0x17,0x30,0x94,0xb9,0x2b, 0x67,0x40,0x42,0x9b,0x3e,0x2f,0x1b,0xa9,0x27,0x75,0x79,0x6f,0x21,0x68,0x2b,0x93, 0x43,0x47,0xf7,0x8c,0xca,0x13,0x68,0x57,0x8f,0xd5,0x1e,0x8b,0x66,0x6,0xc7,0x3a, 0x67,0x45,0xee,0xa1,0x93,0x8c,0xc8,0x52,0xd7,0x4,0x2,0xb,0x86,0x62,0x97,0xf, 0xc2,0x4d,0xe5,0xad,0x19,0x2b,0x61,0x1f,0x1d,0xfa,0x47,0xf7,0x1a,0x7b,0xbb,0xaf, 0x27,0x46,0x27,0x97,0x1f,0x85,0xb0,0xd2,0x5e,0x6c,0x86,0x7b,0x1b,0x22,0x23,0xc8, 0x7,0x41,0x92,0x8c,0x19,0xd0,0xf6,0x2d,0xd6,0x50,0x3e,0x6,0x50,0x8f,0xff,0x3a, 0xbe,0x4a,0xdd,0x82,0x2d,0xe3,0x8f,0xc2,0xc0,0xf6,0x45,0x68,0x7a,0x6,0x16,0xc6, 0x93,0x48,0xa6,0xa0,0x0,0xd4,0x9a,0x58,0xf9,0x5a,0x80,0x97,0xcf,0xc0,0x9b,0x3d, 0xf5,0x4f,0xf5,0x96,0x37,0xd,0x4d,0x5e,0xfc,0x2a,0x55,0x3a,0xf4,0x42,0x78,0xb4, 0x51,0x4b,0xef,0x80,0x5e,0xa,0x80,0xae,0x1e,0x51,0x58,0x46,0xbb,0x6f,0x29,0x32, 0x12,0x49,0x44,0x9f,0x15,0xe2,0x33,0xdd,0xf2,0xaf,0xc8,0xdd,0x4c,0x5d,0xd,0x29, 0xfb,0x41,0x77,0xa0,0xd7,0x19,0x90,0x5,0xc2,0x51,0xf,0xcc,0x27,0x1f,0x93,0x28, 0x1f,0x4a,0xa9,0x98,0x78,0xd1,0x93,0x81,0x3b,0x30,0xf2,0xf0,0x1,0x60,0x35,0x81, 0x12,0x4c,0x4a,0x8b,0xa6,0xc4,0xe9,0x35,0x53,0x80,0x16,0xd6,0x81,0xc,0x96,0x9, 0x58,0x4e,0xc3,0x9d,0x19,0xd,0x5f,0xf7,0xce,0x6d,0x86,0x7f,0xbf,0x31,0xa8,0xd3, 0x82,0x4d,0xad,0xb2,0x1f,0xd8,0x24,0x90,0x9b,0x36,0x31,0x14,0x8f,0x95,0x14,0xf3, 0xf3,0x40,0x7b,0xba,0x67,0x90,0xa0,0xde,0xfe,0xce,0xed,0x7d,0x31,0x66,0x92,0x3a, 0x67,0x45,0x69,0x8f,0x7b,0x30,0x4d,0x24,0x89,0x30,0xd5,0xf0,0x90,0x37,0x6e,0x97, 0xd8,0x4b,0xbf,0x90,0xa9,0xae,0x8a,0x64,0x30,0xb7,0xd8,0x8e,0xbd,0xb1,0x49,0x2f, 0xa2,0x48,0x3,0x83,0xa0,0x71,0x55,0x99,0x80,0xb0,0x26,0xd0,0x1f,0x21,0x22,0x5f, 0x3a,0x43,0x5b,0xbb,0x87,0x1,0x91,0x3c,0xbe,0xd2,0x96,0x56,0xf3,0x99,0xb5,0x8b, 0x5b,0x4c,0x14,0xac,0xc0,0xf8,0x5e,0xe6,0x8b,0x46,0xc9,0xed,0x6c,0x8c,0x9a,0xc4, 0xf3,0x45,0xc5,0x81,0x8,0x11,0x9,0x36,0x30,0xcd,0x72,0x4,0x7a,0xee,0xaf,0x67, 0x60,0x46,0xf3,0x9b,0xaf,0xbe,0xff,0xf,0xd1,0x66,0xb9,0xe1,0x18,0x41,0xcd,0xe4, 0x4f,0x42,0xf0,0x98,0x47,0xb7,0x6e,0x4f,0x11,0x20,0xad,0xfb,0x88,0x75,0x29,0xe8, 0x45,0x41,0xb7,0xb4,0x96,0xe3,0x39,0x3f,0xd,0x32,0x27,0xe1,0xf4,0x62,0xdc,0xc6, 0x8c,0x43,0x92,0x8a,0x2f,0xce,0x42,0x4d,0x45,0xf,0xce,0x6b,0xf7,0xca,0x6e,0xaf, 0xc0,0x49,0x95,0x98,0x8d,0x6c,0x57,0x47,0x51,0x0,0x5d,0xa3,0x28,0x46,0xbb,0xec, 0x86,0x4d,0x57,0x8a,0xce,0x6d,0xe2,0x47,0xdf,0x24,0x36,0xf5,0x2d,0x4a,0xb9,0x8b, 0xeb,0x41,0x23,0x9e,0xdb,0x50,0xde,0xcb,0xaf,0x25,0xef,0x15,0x8f,0xe9,0x6a,0x6c, 0xbc,0x40,0x9d,0x8c,0x9f,0xe1,0x8d,0x25,0xf1,0x83,0x35,0xd1,0x86,0x8,0x4d,0x99, 0x3c,0x45,0xb3,0xbf,0x70,0xd1,0x29,0xbe,0x6a,0x8c,0x45,0xb9,0xd4,0x45,0xf1,0xc8, 0x8e,0x46,0x10,0x8d,0x28,0xcd,0xb1,0xc0,0x21,0xd7,0x8b,0x3d,0x1e,0x24,0xe0,0x6, 0xa1,0x4f,0x32,0xa9,0x22,0x6f,0x3,0x99,0x22,0x5f,0xd2,0x65,0x5d,0x24,0xa0,0x27, 0x58,0x46,0xcf,0xa3,0xb7,0xa3,0x85,0xdd,0x85,0x9a,0xdc,0x67,0xdb,0x2,0x9f,0xd, 0x54,0x4f,0x74,0x8b,0xa7,0xb1,0x20,0x59,0xb9,0x10,0xe0,0xa7,0x5e,0xd7,0xd,0x2a, 0x32,0x45,0xdb,0x98,0x9b,0x6e,0x91,0x7d,0x65,0x77,0xe1,0x28,0x9c,0xc8,0x80,0xa7, 0x8d,0x42,0x60,0xab,0x45,0xa2,0x3e,0x3e,0xc8,0x2a,0x4a,0xa8,0x4b,0x41,0xc1,0xfc, 0x6b,0x4f,0x6b,0xae,0xd7,0x7f,0x1,0xce,0xf3,0x8e,0xcf,0x34,0x49,0x73,0x52,0xd8, 0xb4,0x4d,0xc9,0x83,0x94,0x7d,0x9c,0x71,0xff,0xcc,0xa9,0x16,0xce,0xeb,0x9a,0x27, 0x80,0x4c,0x71,0xb7,0x7d,0x32,0x60,0xad,0x3,0x90,0xfe,0x71,0xac,0x9,0x6d,0xd8, 0x6,0x4e,0x26,0x87,0x49,0x33,0x83,0x48,0x73,0xac,0x12,0x1e,0x7,0x64,0x6,0xbd, 0x7a,0x4b,0x6a,0x81,0x6c,0x14,0x9a,0x30,0xfd,0xb2,0x33,0x7,0x9b,0x3c,0xad,0xed, 0x48,0x4b,0x35,0xad,0x7e,0xdc,0xca,0x11,0x6d,0x20,0x6a,0x6f,0xbb,0xc9,0x5d,0xf5, 0xc1,0x47,0xe9,0x95,0x8e,0x49,0x85,0x91,0x37,0x95,0x7f,0x63,0x10,0xfb,0xc9,0x27, 0xd8,0x4a,0xdd,0x8d,0x2b,0x88,0xf,0xdf,0x5b,0xb2,0x1c,0xfe,0xf,0x25,0x24,0xf8, 0x4b,0x47,0x8b,0xbc,0xf4,0xae,0x9,0x6f,0xec,0xfc,0x33,0x74,0xac,0x5b,0xcc,0xdb, 0xad,0x4a,0xe,0xbd,0x4b,0xb2,0xb2,0xe8,0xdf,0x6e,0x9b,0x8b,0xcd,0x39,0xb9,0x9e, 0xc8,0x4d,0x8c,0x83,0xc9,0xa2,0x7a,0x80,0xcb,0x65,0x6c,0x2e,0x77,0x44,0x91,0x46, 0x35,0x42,0x34,0x83,0xde,0x18,0xff,0xba,0x94,0x44,0x6e,0x12,0x26,0xff,0xe2,0xd4, 0xb4,0x49,0x7b,0xab,0x91,0x16,0xff,0x7a,0x31,0xd1,0x46,0x40,0x80,0xc0,0x57,0x2, 0xe6,0x46,0x26,0x8b,0x1d,0x68,0x51,0x64,0xbb,0x44,0x1d,0xe8,0xe,0xd1,0xce,0xcb, 0x3e,0x4a,0x98,0xa3,0x55,0xa1,0x7,0xab,0x9d,0x48,0x35,0xdd,0x28,0xd0,0x6e,0xc, 0xd6,0x41,0x28,0xaa,0x12,0x67,0x7b,0xde,0x12,0x87,0xac,0x9c,0xcf,0x27,0x8a,0x7f, 0x2f,0x47,0x8c,0xb5,0x92,0x7f,0x8e,0xd8,0x39,0xc8,0xe4,0x17,0x86,0xb2,0x3e,0x63, 0x53,0x4d,0xb0,0xaf,0xf3,0xa7,0x63,0x9d,0xb3,0xc,0x1f,0x7e,0x71,0x56,0xcb,0xf3, 0x6b,0x4b,0x79,0xa9,0xa2,0xf2,0xdc,0xfb,0x10,0x5a,0xaf,0x7b,0xa3,0x88,0x8d,0xd7, 0x5c,0x49,0x7d,0xb4,0x6,0x4f,0x10,0xcb,0x41,0x92,0x8f,0x7,0x14,0xa2,0x62,0x5f, 0x57,0x4b,0x71,0xb1,0x7,0x4a,0x13,0x9a,0x1f,0x77,0x9a,0xf,0x6f,0xc7,0x54,0x4f, 0xe6,0x4a,0x3c,0xa3,0x25,0xf7,0xfa,0xc2,0xb6,0x25,0x2d,0xd7,0x49,0xd6,0x9b,0x80, 0x2f,0x43,0xe1,0x81,0x63,0x43,0xe3,0x15,0x32,0xf6,0x97,0x7f,0x8c,0xb0,0x58,0xb5, 0x78,0x4d,0x39,0x80,0x6,0xd5,0x52,0x35,0x27,0x5b,0x2f,0xea,0x61,0xdf,0x1a,0x3a, 0x3d,0x44,0xff,0xbe,0xed,0xf5,0x74,0x4a,0xe,0x99,0xa9,0x1c,0x5b,0x55,0x4d,0xd, 0x97,0x47,0xf1,0xbd,0x76,0x18,0x87,0x57,0x5a,0xd1,0x79,0x2f,0xae,0xd7,0x26,0xb6, 0xeb,0x44,0xd2,0x9d,0xce,0xb9,0x36,0x62,0x98,0x17,0x9b,0x46,0xc9,0xe0,0xd6,0x39, 0x9,0x4d,0xdd,0x94,0x13,0xce,0xdf,0xa1,0x2d,0xe4,0x43,0x9d,0xe,0xba,0x30,0xf, 0xe,0x4b,0x2d,0x96,0xa6,0x12,0x47,0x18,0xef,0x77,0xb7,0x55,0x99,0x52,0x87,0xbe, 0x7c,0x4a,0x67,0xba,0x19,0xd9,0xc3,0x11,0x5a,0xd5,0xad,0xa9,0xa6,0x63,0x14,0xc, 0x93,0x42,0x66,0xa3,0xa7,0x53,0xbe,0xd6,0x8f,0x1b,0xda,0x9a,0x19,0x9,0x6c,0xc0, 0x2b,0x42,0x2,0x9f,0x2,0x88,0xc3,0xbf,0xfd,0x4,0x1e,0xdc,0xc0,0xfa,0x88,0x3c, 0xb0,0x43,0xcd,0xb0,0xaf,0x35,0x42,0xc4,0xd4,0xb2,0x45,0xae,0x10,0x7b,0x6b,0xb, 0x90,0x4b,0x95,0x8a,0xa1,0x15,0x15,0xc3,0x17,0xd8,0x18,0xee,0xe,0x6b,0xba,0xa9, 0xec,0x4f,0xe6,0xb0,0xf6,0xf5,0x6,0xad,0xe6,0x3f,0xd9,0x1e,0xae,0xad,0x14,0xb9, 0x47,0x43,0xe2,0x86,0x5c,0x36,0xa6,0xaa,0xe9,0x1f,0x4d,0x2b,0x10,0x7c,0x3a,0x5c, 0x1e,0x48,0xad,0xba,0xdb,0x93,0x9c,0xc8,0x9,0xc1,0x5b,0xd4,0xfa,0xa3,0x1b,0xfd, 0xe,0x49,0x40,0x80,0xd9,0xc7,0x18,0x69,0xe,0xa2,0x59,0xb8,0x49,0x73,0x48,0xc5, 0x41,0x43,0x20,0xa5,0x9b,0x6e,0xef,0x70,0xe2,0x3a,0x8f,0xdb,0x25,0xb5,0x4b,0x5e, 0xa9,0x41,0x5d,0x89,0xa3,0xc5,0xb3,0x1b,0x46,0x2f,0x22,0xee,0x49,0x5a,0x58,0xc, 0xb2,0x4d,0x1e,0x9b,0x6b,0x18,0x55,0xb8,0x24,0xa0,0xfa,0x9c,0xde,0x67,0xe1,0x7e, 0xa1,0x49,0x6,0x83,0x2a,0x21,0x2e,0x71,0xba,0x9d,0x8c,0xb1,0x73,0xa3,0xdb,0x1, 0x67,0x45,0x95,0x93,0x8a,0xbe,0x40,0x92,0x3c,0xdc,0xaf,0xba,0xe1,0xd7,0x96,0xe3, 0x26,0x45,0x5d,0x87,0x95,0xea,0xac,0x6,0xd1,0x7f,0x87,0x37,0xc3,0xea,0xe2,0xc8, 0x2b,0x4f,0xc0,0x8d,0x8d,0x57,0xb7,0x3c,0x61,0xd3,0x9f,0x46,0x52,0x7d,0xe0,0xd7, 0xb7,0x42,0xfb,0x9f,0x82,0xf0,0x8f,0xd3,0xea,0xa2,0xaf,0xf5,0x79,0x9d,0x14,0x0, 0x71,0x40,0xe6,0x89,0xe5,0x52,0x5b,0x25,0xfb,0x94,0x8a,0x78,0xb3,0xb4,0x91,0x70, 0xce,0x4c,0xb9,0x84,0x91,0x58,0x2f,0xdd,0xeb,0x61,0xde,0x69,0xb4,0x58,0xf,0x7d, 0xdb,0x44,0x70,0xa3,0x3d,0xa1,0x85,0x6a,0x7f,0xde,0xf2,0x72,0xc9,0x69,0xb5,0x45, 0x5b,0x48,0x15,0xaf,0xe2,0xfe,0x1a,0x20,0xce,0xd7,0x1d,0xd2,0x8,0xb1,0xcd,0xeb, 0x88,0x49,0x36,0x80,0xf2,0x85,0x70,0xa3,0xe4,0x10,0xa1,0x7d,0x60,0xb1,0x78,0x79, 0x90,0x48,0xe8,0xb8,0x16,0xaf,0xf8,0x1,0xf9,0x18,0xb2,0x54,0x47,0x9d,0x10,0xed, 0xb9,0x41,0xc1,0x89,0xf2,0x60,0x42,0x36,0x19,0x5a,0xc0,0x9,0xf,0x8b,0xe2,0xc4, 0xb,0x42,0xa,0xba,0x62,0xe2,0x11,0x1,0xf8,0x7e,0x3,0xd7,0x71,0x55,0x4d,0xb, 0xfc,0x45,0x3c,0xa3,0x29,0xe6,0xfd,0xff,0x1b,0x3,0x13,0xa6,0xad,0x33,0x4d,0x51, 0x96,0x4a,0x52,0x9f,0x78,0x39,0x1c,0x75,0x6f,0x38,0x27,0xb0,0x2a,0xbc,0xc8,0x6e, 0x7b,0x44,0x11,0xb9,0xf8,0xf9,0xfb,0x4e,0xec,0x2a,0x2a,0x5d,0x2f,0x8e,0xd6,0x29, 0x29,0x4c,0xd7,0x8b,0xc8,0x4d,0x58,0xfb,0xd0,0x9d,0xa1,0xde,0x91,0x1a,0x9e,0xf6, 0x6d,0x4b,0x2f,0x97,0x7a,0x21,0x6e,0x8e,0x80,0xc6,0x11,0x3c,0x99,0xb8,0x14,0xfd, 0xc4,0x43,0x3b,0xbe,0x3c,0x4d,0x38,0xb8,0x4b,0x39,0x8d,0x26,0xc,0x81,0x8,0x38, 0xfb,0x48,0x72,0x89,0xdc,0x25,0xb3,0x42,0x54,0x4a,0xad,0x56,0xe5,0x84,0x1a,0xfa, 0xbc,0x4c,0x6d,0xad,0xa7,0x41,0xf8,0xb4,0x4c,0x5,0x4f,0xb9,0xdd,0x75,0xc4,0xa2, 0x83,0x42,0x38,0x8c,0x32,0x45,0x2,0x72,0xf,0x48,0x59,0x50,0x57,0xc8,0xce,0x5, 0x13,0x4a,0x4a,0xa7,0x79,0x4a,0xce,0x1c,0x7,0xa9,0xf4,0x3d,0x93,0x69,0xaa,0x85, 0xfd,0x45,0x19,0xaa,0xfd,0x48,0x27,0xd8,0x8a,0xdd,0xb,0xc7,0x3,0x46,0x5e,0x32, 0x1a,0x46,0x64,0xab,0xba,0x1c,0x7e,0x35,0x62,0xe7,0xd2,0x20,0x1c,0x1e,0xe9,0xaa, 0x36,0x4c,0xcc,0x81,0x8f,0xac,0x8c,0xaa,0x60,0x1a,0x8,0x3a,0x93,0x13,0x74,0xf5, 0xed,0x42,0x75,0xab,0x73,0xf8,0xda,0x4,0xa,0x67,0xdf,0xc7,0x5e,0x25,0x1e,0xb9, 0x34,0x42,0x61,0x99,0x7e,0x77,0x9f,0xb8,0xbb,0x80,0xd7,0x90,0xe,0xee,0x94,0x30, 0x81,0x4f,0x17,0xa6,0xa1,0x95,0xd5,0x94,0xc3,0x73,0xa,0x1b,0xeb,0x3,0x7b,0xa6, 0x59,0x43,0xb,0x92,0x76,0xf5,0xef,0x4c,0x23,0x78,0x1,0x54,0xd0,0x57,0x42,0xf0, 0x7c,0x4b,0x2f,0xae,0x2e,0x17,0x8a,0xa,0x52,0xa9,0x53,0xae,0xc4,0x85,0x6e,0xea, 0xb8,0x44,0x9b,0xba,0x35,0x4b,0x56,0x3,0x12,0x8f,0x43,0x1c,0x59,0x10,0xb9,0xeb, 0xe,0x46,0x3c,0x9d,0xb8,0xba,0xdd,0x34,0x19,0x70,0xef,0x6,0x90,0x6,0x90,0x5e, 0x67,0x46,0x59,0xb6,0x6f,0x58,0xb8,0x3a,0x31,0xa4,0xab,0xb2,0xdb,0x9f,0xe9,0x7d, 0xf7,0x41,0xc8,0x8d,0x39,0xa4,0xb8,0x99,0xa1,0x7c,0x5e,0xe1,0x40,0xb6,0xf2,0x64, 0xf7,0x43,0xf9,0xbf,0x93,0x7b,0x73,0xc1,0xc3,0x82,0x63,0x28,0x3f,0x31,0x3f,0xca, 0x64,0x42,0x27,0xb2,0xba,0xa7,0x18,0xbc,0x21,0xc,0x3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x28,0xfb,0x48,0x30, 0xbf,0x4d,0x4b,0x91,0xbf,0xda,0x61,0x99,0xb7,0x5d,0x40,0xe5,0x4e,0xd5,0x82,0x7f, 0x28,0x4e,0x2,0x88,0x19,0x61,0xd7,0x88,0x34,0x2b,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xab,0xba,0xe9,0x99,0x21, 0x97,0x43,0x52,0xaf,0x8b,0x3d,0x96,0xf7,0x22,0xb1,0xe7,0x6e,0xf5,0x5d,0xd3,0x53, 0x44,0x4c,0xf7,0xb2,0xb4,0x9e,0xf1,0x3f,0xd1,0x7b,0xbf,0x67,0xf,0x8d,0x82,0xd3, 0xa3,0x4b,0x0,0xa4,0x4f,0x66,0x31,0x11,0xd,0xe0,0x81,0x6b,0x71,0x66,0x10,0xee, 0x73,0x49,0xec,0x9c,0x4d,0x6b,0x5e,0x9e,0x38,0xee,0x10,0xfa,0x79,0xb5,0x9a,0xd2, 0x70,0x49,0xd0,0x96,0x16,0x82,0xa8,0x5f,0xc6,0xb9,0x96,0x1d,0xfc,0xe1,0x5a,0xf, 0x7e,0x47,0x55,0xb9,0xc2,0x51,0x15,0x98,0x33,0x94,0x70,0x17,0x33,0x76,0xea,0x3e, 0x42,0x4f,0x1c,0x81,0x2c,0xb4,0xa4,0x40,0x94,0xf1,0x88,0x2a,0x11,0x84,0xad,0x7f, 0xd1,0x4c,0x31,0x89,0x10,0xd,0x60,0x99,0xd5,0x62,0x5d,0x92,0xbd,0x38,0x9,0x16, 0x2,0x45,0x20,0xaf,0x58,0xd5,0xa4,0xfa,0x3,0x58,0x25,0xb0,0x6f,0xd3,0xae,0x3d, 0xfe,0x4b,0x9a,0xb2,0xdb,0xa5,0x2b,0x3c,0xa2,0xf3,0xab,0x53,0x26,0xa3,0xc8,0x4f, 0x23,0x4b,0x5d,0xb3,0x81,0xb7,0x5b,0x4,0xe1,0xbd,0x94,0x36,0x0,0x69,0x66,0x9e, 0xe0,0x4b,0x5f,0xba,0x61,0x23,0xbb,0xe,0x63,0xfd,0x47,0x2e,0x7f,0x37,0x90,0xaa, 0xd,0x42,0x2b,0x97,0xe3,0x64,0x57,0xa1,0x2e,0xda,0x9,0x3f,0x5d,0x85,0x60,0x30, 0xe4,0x4f,0xe9,0x80,0x26,0xff,0x58,0x9a,0x70,0x2a,0x16,0x1d,0xf6,0x65,0x1,0x33, 0xe0,0x41,0x9c,0xaf,0x36,0x1c,0xd,0xd4,0x27,0xa7,0xea,0x62,0xf9,0x6c,0x76,0xc0, 0x62,0x49,0x80,0xb1,0x40,0xe5,0xb6,0x73,0x3f,0x9f,0x43,0x5f,0x34,0xa6,0x63,0xe5, 0xe6,0x45,0xba,0x90,0x18,0xa3,0xeb,0xd2,0x31,0x1e,0x80,0xeb,0x27,0xbf,0xab,0xb3, 0x2,0x47,0xe0,0x88,0xae,0x7d,0x4e,0xeb,0xed,0x11,0x2b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0xe1,0xed,0xfd,0xf7, 0x94,0x4e,0x1,0xb2,0xb2,0x36,0xe2,0x4d,0xb0,0x2e,0x5d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6d,0x8e,0x98,0x91,0x2c, 0x5b,0x49,0x66,0x86,0x1a,0x11,0xbf,0xc6,0x1c,0x9d,0xec,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe3,0x66,0xc3,0xdc,0x51, 0xcb,0x4b,0xe5,0xae,0xd7,0x6e,0xcb,0x74,0xc7,0xcd,0x86,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x8c,0xeb,0x83,0xd2, 0xf1,0x4e,0xa7,0xa3,0xfa,0x3d,0xf7,0xc6,0x68,0x80,0xea,0x62,0xdf,0x5c,0x48,0xea, 0xae,0x41,0x8c,0x91,0x67,0xfc,0x9d,0x61,0xc4,0xce,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x58,0xac,0x7b,0xbf, 0x47,0x4a,0xd6,0xbc,0xe4,0x10,0xd9,0xf6,0x9e,0x43,0x3a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x93,0xa7,0x3,0xa1,0xdf, 0x22,0x48,0x1c,0xa4,0x7d,0xe3,0xe3,0x43,0x6f,0x92,0x6b,0x3f,0x41,0x5f,0x6f,0x2e, 0xba,0x45,0x5f,0xb0,0xa0,0x87,0x4e,0x77,0xbd,0x79,0xe3,0x35,0x11,0xb7,0x9b,0xb4, 0x74,0x49,0xbf,0xa9,0xa0,0xb8,0xa5,0xf2,0x9b,0x70,0xe4,0x14,0x69,0xcd,0xa4,0x25, 0xb3,0x45,0x4e,0x84,0x4a,0x48,0xe8,0x38,0xb2,0x63,0x5b,0xe4,0x7a,0x41,0xd2,0x70, 0x57,0x47,0xec,0x8d,0x52,0x2d,0x17,0xfe,0x74,0x56,0xbe,0x8,0x99,0xe2,0x8e,0xb3, 0x96,0x49,0x88,0xaf,0x6,0x30,0x37,0x39,0x1b,0x1b,0x20,0xfa,0xb9,0xbe,0x3b,0xc7, 0xe5,0x46,0xfa,0x92,0x95,0xad,0xb2,0x82,0x2b,0xb8,0xd6,0x8,0x46,0xf8,0x5f,0x2, 0xcf,0x49,0xd,0xa6,0x17,0xfd,0x34,0x65,0xab,0x2b,0x47,0xdd,0xbb,0xc3,0x2f,0x48, 0x3c,0x47,0x10,0x91,0x20,0xa8,0x13,0x15,0xde,0xa4,0x55,0x78,0x4c,0x61,0xcf,0x41, 0x1c,0x41,0x26,0xb9,0xac,0x4f,0x7f,0x1f,0x38,0x50,0x65,0x8f,0xda,0x11,0x65,0x25, 0x29,0x45,0xad,0xb9,0xf5,0xac,0xea,0xf,0x3d,0xdb,0xad,0x3a,0x27,0xf2,0x64,0x90, 0xeb,0x42,0x85,0x92,0x4f,0x3e,0xed,0xe5,0xc8,0xbc,0x85,0x78,0xb6,0x2d,0x17,0xfb, 0xd4,0x41,0x34,0x8c,0x4,0xca,0xc3,0x6f,0x78,0xff,0x69,0xd1,0x83,0xb4,0x21,0x90, 0xb3,0x43,0x35,0x81,0xbc,0x83,0x1,0x7c,0xd2,0x9a,0x58,0x3e,0xc,0xa,0xd4,0xba, 0xa0,0x4b,0x79,0x92,0xe7,0x55,0xb7,0x92,0x7b,0x30,0x71,0xb0,0xbe,0xc5,0xb2,0xc2, 0xd7,0x4f,0xbb,0xb6,0x28,0x45,0x1f,0x77,0xe6,0xce,0x7e,0xd7,0x29,0xed,0x85,0x62, 0xc0,0x47,0x22,0xa2,0x20,0xdf,0x15,0xad,0xbe,0x3e,0x6f,0x93,0xba,0x3f,0x6d,0x74, 0x37,0x47,0x73,0xae,0x67,0x79,0xbf,0x49,0xc,0xfa,0x53,0x8a,0x1d,0xb9,0x3c,0x8d, 0x83,0x49,0xe0,0xac,0x43,0xa0,0xe7,0xdb,0x5d,0xee,0xf0,0x9,0xb4,0xa9,0x61,0xb7, 0xbd,0x48,0x5f,0x9f,0x83,0x8e,0xd8,0xa2,0xd3,0xab,0xc5,0x4c,0xe0,0x4e,0xcf,0xec, 0x4f,0x4f,0x8e,0x9a,0x9e,0xbb,0xb8,0x64,0x4c,0x6,0x23,0xc,0x57,0xa1,0x7b,0x5, 0x2f,0x4c,0x35,0x92,0x55,0x2f,0xdb,0x1e,0xa3,0x63,0x45,0x55,0xcb,0x4b,0x1f,0x96, 0xa1,0x47,0xa1,0x97,0xe1,0x9c,0xeb,0x93,0x4b,0x97,0xb7,0xa0,0x12,0x9b,0x59,0xfe, 0x8c,0x4a,0xbc,0x99,0xd0,0x10,0x18,0xea,0xcd,0xdc,0x8c,0x5d,0x9a,0xa8,0x4f,0xd3, 0x38,0x4d,0x45,0xa4,0xf4,0xc6,0xd2,0xdb,0x30,0x6a,0x26,0xe,0xf4,0x55,0x14,0xb9, 0xfb,0x45,0x56,0x9d,0x37,0x27,0x97,0x58,0x7d,0x44,0xda,0x72,0x31,0xc2,0xc5,0xc5, 0x84,0x4c,0xe9,0x82,0x86,0xc3,0x48,0x57,0x18,0x63,0x78,0xc2,0xe6,0x21,0x99,0x33, 0xd7,0x4a,0x35,0x84,0x99,0x7f,0x71,0x57,0xc4,0x6f,0x7a,0x7,0xa7,0x3,0x53,0x29, 0xe9,0x4f,0x7c,0x86,0x9d,0xb,0x4,0x2d,0x23,0x5e,0x5b,0x14,0x74,0xab,0xfa,0x10, 0xac,0x4b,0xa1,0x9c,0xa7,0xf4,0x9d,0x29,0x82,0x7b,0x92,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x43,0xca,0x95,0x13,0x7a, 0x93,0x46,0x64,0xbc,0x85,0x97,0x77,0xc1,0x13,0xa3,0xb8,0x33,0x3f,0xe,0x92,0x25, 0xe5,0x44,0x74,0x81,0xb4,0x5b,0x36,0x5c,0xb0,0x31,0x9a,0x5,0x46,0x25,0x17,0x3d, 0xe0,0x45,0x2c,0xb7,0xba,0xb2,0x8a,0x85,0x6c,0x0,0x2b,0xb1,0x5a,0x44,0x74,0x40, 0xd0,0x41,0x74,0x9e,0xb8,0xda,0x5e,0x7b,0xff,0x4c,0xae,0x7c,0x30,0xd7,0xf7,0xa9, 0xd1,0x4c,0xbc,0x9a,0x65,0x4f,0x29,0xba,0x94,0x35,0x15,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,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,0x32,0x42,0xa8,0xfa, 0xf4,0x44,0xde,0xa4,0x86,0x9f,0x57,0x14,0x61,0x4c,0x15,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0xaa,0xb7,0xf,0xe2, 0xf5,0x48,0x66,0xae,0x92,0x9b,0xb9,0x86,0x49,0xc7,0x9d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x2d,0xd3,0xec,0x39, 0xa2,0x41,0xd8,0xb0,0x65,0x83,0x70,0x85,0x48,0xa,0xc3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x99,0x23,0x1,0x4f, 0x81,0x45,0x1d,0x9d,0x5f,0xd4,0x8a,0x3c,0xb1,0x3b,0xa7,0x88,0x25,0xf6,0xa5,0x51, 0xd,0x4a,0x85,0xb9,0xcc,0x72,0xd9,0x26,0x99,0xb2,0x81,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x1b,0xe,0x59,0xda, 0x7f,0x4b,0x3b,0x85,0x12,0xc4,0xb2,0x4e,0x56,0xb7,0xc5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9c,0x91,0xc8,0xb7,0xd2, 0xe9,0x4e,0x9e,0xa3,0x35,0xa0,0x18,0x60,0xc9,0x65,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc2,0x8e,0xf9,0x80,0x6e, 0x30,0x45,0x56,0xb7,0x86,0xba,0x93,0x8d,0x69,0x24,0x49,0x77,0xaa,0x3d,0x14,0x35, 0xe4,0x4a,0x60,0xa2,0x1d,0xd6,0x73,0x1c,0xea,0x40,0x3c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfb,0xca,0xe9,0x80,0x49, 0x74,0x4f,0xf1,0x8a,0xf0,0xe6,0xa4,0xd9,0x5d,0x8e,0xf0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x86,0xbd,0xb8,0x7d,0x73, 0x56,0x44,0x45,0xa6,0xc3,0x9b,0xd8,0xad,0xff,0x51,0xec,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x83,0x9c,0x14,0x5a, 0x10,0x4f,0x85,0xa3,0xe,0x37,0xcc,0x1e,0x52,0x4e,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4f,0x62,0xe1,0x6a,0xc7, 0xf5,0x4f,0xce,0x8c,0x2e,0xa9,0x90,0xfb,0x7,0x35,0x93,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5f,0xe5,0x27,0x6a,0x3a, 0xf6,0x4b,0x94,0xa4,0x72,0xbc,0xc5,0x85,0xe6,0xf8,0xf1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x7b,0x32,0x15,0x5, 0x19,0x47,0x90,0x9e,0x2e,0x83,0xd6,0x53,0x82,0x22,0xa0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x66,0x58,0x45,0x46,0x4b, 0xf,0x48,0x13,0xb5,0xea,0xca,0x98,0x50,0x1c,0xe6,0x4b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x96,0xc0,0x98,0x97, 0x17,0x40,0xd5,0x90,0x47,0x23,0x3f,0x16,0x30,0x93,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x2a,0x4,0x3b,0xf, 0x4c,0x45,0xf8,0xb6,0x20,0x20,0xd6,0x28,0x3d,0x72,0x90,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,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,0x5d,0x66,0x5d,0x28, 0x38,0x43,0x98,0xb5,0xcd,0x48,0xbf,0xb2,0x17,0x36,0xc7,0x96,0x4d,0xd9,0x4f,0x14, 0x35,0x41,0xfd,0xbf,0x61,0x2e,0xc2,0xc6,0x2a,0xf7,0x5e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x49,0x53,0xf9,0xbd,0x73, 0x39,0x41,0x8b,0x8e,0xdc,0xef,0x65,0x51,0x8f,0x30,0xf4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0xef,0x43,0x99,0x8, 0xf9,0x48,0x35,0xbf,0x9a,0x89,0xe7,0x20,0xee,0xbc,0xe9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,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,0x5c,0x38,0x69,0x5a, 0x5e,0x48,0xe5,0xa0,0x1,0xaa,0xac,0x2c,0x45,0xff,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,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,0x54,0xf4,0x45,0x6b, 0x6,0x41,0x9c,0x80,0x9a,0xde,0x82,0x98,0x1b,0x3b,0xb5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x8,0x3a,0x65,0x3, 0x52,0x49,0x79,0xad,0x24,0xe5,0x4,0x2d,0x49,0x93,0x4f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0xdd,0x3e,0x93,0x95, 0xa3,0x4f,0x73,0x9f,0xa9,0x11,0xf7,0xe0,0x1e,0x53,0x5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x65,0x69,0x8c,0x18,0x12, 0x17,0x47,0x99,0xa7,0xd5,0xcb,0xab,0x57,0xf1,0xae,0x9a,0x1e,0x17,0x8,0x18,0xc9, 0xfb,0x40,0x67,0x89,0xeb,0xe1,0x0,0xae,0xeb,0x6,0xd0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x17,0x1f,0xda,0xca, 0x6,0x40,0xe9,0xa0,0x81,0x37,0xf9,0x2,0x2,0x9d,0x27,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x5b,0x74,0xb4,0x97, 0x32,0x4b,0xe1,0x88,0x95,0xf7,0x5c,0x88,0x5e,0xa3,0x2f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd7,0x9d,0xda,0x8e,0xc6, 0x2c,0x44,0x39,0xb3,0x42,0x8,0x7e,0xc7,0xfe,0x6,0x41,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0xa5,0x55,0xe9,0x90, 0xfe,0x4a,0x30,0xbf,0xfb,0x21,0xde,0x9e,0x11,0xa2,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb1,0xb6,0x33,0xed,0x9f, 0x6c,0x45,0x22,0x89,0x1c,0x72,0x9f,0xed,0xbd,0x2e,0xad,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc4,0xf9,0x31,0x96,0xad, 0xd8,0x49,0xfa,0xae,0xd0,0x3b,0xbe,0xf,0x22,0xfc,0x5b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1b,0x5a,0x1b,0x5a,0x52, 0x57,0x4a,0x87,0x8e,0xdf,0x59,0xac,0x91,0x40,0xa0,0x30,0x5b,0x62,0x29,0x29,0xbf, 0xb1,0x4c,0x1e,0xa6,0x6c,0x5f,0xf2,0x9e,0xca,0x3a,0x25,0x2c,0xe7,0xf2,0x61,0x53, 0x1e,0x40,0xdf,0x88,0x6e,0xba,0x41,0x13,0x4,0xd1,0x0,0x4c,0x6f,0xa2,0xd8,0x94, 0xe6,0x49,0x30,0xb4,0x7c,0x87,0xae,0x40,0xf7,0xf,0xdf,0xd0,0x0,0x99,0xd7,0x9b, 0x82,0x44,0xf3,0xad,0xc1,0xa7,0x35,0x2,0x16,0x68,0xc1,0xf,0xfa,0x6d,0x42,0x4e, 0xfc,0x41,0xac,0xb4,0x82,0x90,0x24,0x8a,0x7d,0xae,0x57,0xf7,0x9f,0x9,0x2c,0xfe, 0x95,0x4e,0x70,0xa8,0xcf,0x5a,0x9d,0xab,0x1c,0x16,0x35,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb2,0x7a,0x7d,0x95,0x73, 0x6d,0x4d,0x48,0xbe,0xe4,0xb5,0xe5,0xaf,0x6e,0x20,0xd0,0x54,0xd6,0xd6,0xa7,0x6c, 0x71,0x40,0x6b,0xbc,0xd8,0x2a,0xb8,0xbf,0x4c,0x15,0xb9,0x92,0xf9,0x75,0xa0,0xe9, 0x1c,0x42,0x4a,0x95,0x8b,0x59,0x90,0x57,0xfb,0x79,0x91,0xe0,0xd9,0xac,0xde,0xb2, 0x5a,0x43,0x24,0x8b,0xbf,0xe4,0x6c,0x5a,0x9e,0x16,0xfa,0xfe,0xa9,0xf1,0xcb,0x6d, 0xe4,0x49,0xb2,0x87,0x9a,0x7e,0xf4,0xd0,0x1c,0x2a,0x2c,0xf4,0xb,0x4d,0x44,0xaa, 0x96,0x49,0xee,0xb9,0x11,0x93,0xbb,0x65,0xcb,0xb,0xa6,0x8f,0xb4,0xfd,0xda,0xdc, 0x3c,0x4f,0x7,0x88,0x65,0xd8,0x59,0x84,0xfa,0xc3,0x28,0xba,0xbd,0xf7,0x12,0x30, 0xbf,0x43,0xee,0xbd,0x8a,0x2a,0xb7,0x46,0xc8,0x2c,0x6c,0x91,0x27,0xa3,0x3e,0x6e, 0x27,0x4e,0x45,0x85,0xf9,0x3d,0x6a,0x44,0x41,0xde,0x79,0x4c,0x6e,0xe4,0xc7,0xf7, 0xfd,0x41,0x1e,0x84,0xa4,0x4e,0x55,0x99,0x5c,0xdc,0x11,0x35,0xed,0x3c,0xf0,0x2e, 0x7a,0x4b,0x8c,0xa7,0xd1,0x9e,0x45,0xf3,0x3e,0x84,0x4e,0xe1,0xf5,0x67,0xe9,0x94, 0xd7,0x4f,0xc1,0x89,0xf9,0xb5,0xce,0xb,0xfe,0x31,0x4e,0xcc,0x2d,0x24,0xbc,0x3c, 0xa,0x4d,0xc0,0x9e,0x9f,0x8b,0x8e,0x3c,0x7b,0x6f,0x1,0x2f,0x27,0x7b,0xf0,0xc7, 0x62,0x4d,0x4c,0x8f,0x2f,0x88,0x4c,0x74,0xc,0x6a,0x76,0xc,0x6f,0x1b,0xe0,0xfd, 0xbe,0x4b,0x2b,0x8f,0xa3,0x4e,0xf5,0xaf,0x33,0x32,0xba,0xe5,0x59,0xce,0xa4,0x44, 0x74,0x49,0x85,0x8c,0xf0,0xd4,0x28,0x7e,0x7b,0x85,0xfb,0x21,0x77,0x5f,0xfe,0x1f, 0x2e,0x47,0xe1,0xa1,0xcd,0x74,0x43,0x24,0x51,0xce,0xdf,0xaf,0x8e,0xfc,0x9e,0xef, 0x64,0x4a,0x3b,0x86,0xb1,0x7b,0xb9,0x63,0xce,0xed,0x28,0xda,0x33,0xd6,0x53,0xfc, 0xc5,0x48,0x28,0xb5,0xfa,0xfe,0xfe,0xa6,0x9e,0x33,0x60,0x63,0x35,0xe6,0x4c,0x13, 0x3c,0x46,0xc2,0x88,0x7c,0x8f,0x93,0x59,0x7c,0x82,0x77,0x50,0x89,0x7e,0x78,0x29, 0xcd,0x4c,0x5f,0xaa,0x64,0x6e,0x8d,0xdc,0x90,0x96,0xcb,0xb,0x88,0xcc,0x93,0x6a, 0xfb,0x4d,0xc6,0x8d,0xb1,0xf0,0x8a,0x8d,0xbd,0xdc,0xa6,0xf,0xea,0xbe,0x58,0x4, 0x13,0x4d,0x47,0x90,0x8b,0xb6,0x9a,0x54,0x30,0xf8,0xab,0x64,0x4c,0x78,0x32,0xc3, 0xb3,0x43,0x15,0x95,0x2a,0xe6,0x48,0x3f,0x5e,0x42,0x2c,0x9,0x47,0x25,0x51,0xad, 0x78,0x4c,0x1e,0xb5,0x2e,0xc,0xd0,0xd2,0x7e,0xa1,0xb3,0x58,0x6f,0x8c,0x62,0x23, 0xfa,0x47,0x75,0x89,0x7f,0x8a,0xfc,0xe8,0x64,0xa1,0x1f,0x51,0x25,0xcc,0xc5,0xdb, 0x1f,0x4f,0xd4,0xb8,0x35,0xa5,0x53,0x94,0x89,0x1f,0x5f,0xec,0x3f,0x1b,0x1c,0xaa, 0xb5,0x43,0xdc,0x87,0x7d,0x56,0x87,0x49,0x7d,0x26,0x12,0xc6,0xfc,0x69,0x2b,0x31, 0xf2,0x48,0xf,0x84,0x72,0xce,0xc5,0x4b,0xf8,0x7d,0xda,0x3d,0x57,0x56,0x2c,0xd2, 0x3c,0x48,0xd5,0x82,0x36,0xc5,0x42,0xac,0x1f,0xcb,0x74,0x77,0x28,0xe8,0x41,0x59, 0xab,0x4c,0x80,0xb0,0xb,0x24,0x37,0x53,0xd1,0x3a,0xf2,0xa5,0x4d,0x15,0xd4,0x70, 0x5b,0x4c,0x2b,0x89,0x19,0x60,0xde,0x2e,0x62,0x77,0xf4,0xf7,0x39,0xc6,0x3b,0x53, 0x54,0x4a,0x1,0x86,0x36,0x46,0x34,0xec,0x76,0x37,0xdc,0xcd,0xfb,0x1,0xc1,0x7d, 0x1f,0x4f,0xe4,0xa3,0xe7,0x7b,0xee,0x80,0xbe,0x65,0x73,0xd8,0x96,0x57,0x40,0x59, 0xd9,0x4e,0x8b,0xbd,0xa3,0xc3,0x91,0x1a,0x58,0x34,0x6f,0xfd,0xd6,0xea,0xbd,0xb, 0x32,0x4d,0x84,0xbd,0x15,0x2d,0x33,0x31,0x43,0xbd,0x1a,0x1e,0xdd,0xd2,0x3c,0x4e, 0x7f,0x42,0x64,0xba,0xf4,0xe8,0x93,0x41,0xa3,0x33,0x6c,0xe1,0x10,0xd1,0xb9,0x20, 0x42,0x4d,0x7e,0x80,0x54,0xdb,0xf7,0x38,0x61,0xfb,0xd3,0xae,0xf9,0xf5,0xb2,0xde, 0xcb,0x47,0xd6,0xab,0x29,0x1,0x89,0x40,0x18,0x23,0x78,0xb2,0xe9,0x23,0x9,0xce, 0xbf,0x42,0xdd,0x8d,0x99,0x6,0xb4,0x85,0xfd,0x54,0x56,0x1,0xce,0xcc,0x16,0x93, 0x3c,0x42,0xed,0xaa,0xa1,0x45,0xf2,0x30,0xf0,0xc8,0x40,0x99,0x2b,0x53,0x6b,0x9b, 0x6f,0x44,0x2e,0x85,0x82,0x95,0xf,0x51,0x45,0x21,0x3b,0x2c,0xea,0x57,0x35,0x3a, 0xc8,0x46,0x4c,0xa6,0xc5,0x78,0x2f,0x7c,0xe0,0xfa,0x27,0x73,0x8,0x4,0x98,0xd2, 0xd,0x4b,0x3,0xa3,0x7,0x12,0x32,0x6e,0x56,0xa1,0x48,0x8f,0x6a,0xd8,0xc8,0x4e, 0xd1,0x4c,0x63,0x8e,0x9f,0xec,0x8b,0x84,0xc2,0x9c,0x81,0xed,0xa7,0x74,0x39,0xc, 0xa6,0x43,0x53,0xa7,0xc9,0x17,0xe4,0x83,0xd6,0x31,0x94,0x82,0xb,0x6,0x9b,0x2, 0xdc,0x49,0xa7,0xa3,0xcc,0x2d,0x34,0x81,0xa5,0x2,0x68,0xd3,0xa3,0xf4,0x83,0x1a, 0xae,0x45,0x28,0xba,0xaf,0x1b,0xbf,0x4,0xcd,0x4e,0xc9,0x4b,0x8a,0x17,0x31,0x8a, 0x4d,0x4c,0x52,0x83,0x1a,0x13,0x40,0xfd,0x3,0xb8,0x4c,0xe0,0x45,0xfc,0xf9,0xb5, 0x91,0x48,0x70,0xab,0xf0,0xc1,0x4a,0x50,0x7d,0xc3,0xe9,0xad,0xc2,0xab,0xe,0xfb, 0x36,0x41,0x6d,0xa1,0x36,0xf,0x7e,0x91,0x4b,0xa4,0xec,0x7e,0xa2,0x71,0xd7,0x94, 0x63,0x4b,0x4d,0xa8,0x46,0x63,0x30,0xfa,0x53,0x72,0x75,0xa8,0x47,0x60,0x61,0xb, 0x1f,0x47,0x60,0x9a,0x59,0x1d,0x7b,0x0,0x89,0x27,0xd0,0xc8,0x59,0x2,0x65,0xb4, 0x57,0x4d,0x43,0xb8,0xe5,0x82,0xd9,0xd1,0xb9,0xf,0xeb,0x5e,0xa2,0x43,0x8d,0x54, 0x7b,0x44,0xa4,0x89,0x5f,0x61,0xb2,0x38,0x3f,0x57,0x21,0xcd,0xbb,0xeb,0x78,0xca, 0x12,0x4d,0x77,0x8d,0x67,0x99,0xcb,0x6d,0x11,0x10,0x54,0x92,0x37,0xfa,0x2c,0x99, 0xbd,0x46,0x98,0xa8,0x4a,0xc6,0x21,0xcf,0x13,0xd5,0xac,0xed,0x94,0x88,0xf,0x9b, 0x49,0x43,0x8d,0x80,0x70,0x49,0xec,0xa6,0x57,0xd1,0x78,0x9f,0x8f,0xae,0xee,0xef, 0x4e,0x42,0xeb,0xa7,0x7b,0x20,0xb1,0x46,0x41,0xaa,0x2c,0x28,0x5e,0x90,0x5a,0xd3, 0xb0,0x4a,0x55,0xb2,0x70,0xed,0x2d,0xa0,0x86,0xbf,0xe0,0x16,0x9e,0xd5,0x1f,0xc5, 0xa0,0x40,0x6b,0xa5,0xe0,0xb9,0xc6,0x9e,0x96,0xfa,0xc6,0xdb,0xb8,0x36,0xbb,0xc9, 0x43,0x42,0xf7,0xb4,0xa2,0x24,0xce,0x43,0x55,0xd6,0x10,0xa7,0x7d,0x4f,0x6c,0x50, 0xe,0x47,0x12,0xa5,0xf9,0x69,0x53,0xf1,0xdc,0x88,0xf6,0x1b,0x7b,0xbe,0xef,0x54, 0x5,0x4a,0xc4,0xa9,0x65,0x5d,0xf5,0x6b,0xa1,0x25,0x6c,0xef,0xb,0x5a,0xf0,0x63, 0x1e,0x4a,0x36,0x95,0xac,0xb,0xc5,0x4b,0x9e,0x65,0x6c,0x51,0x68,0xce,0x65,0xfe, 0xe9,0x46,0x62,0x86,0x52,0x44,0xe1,0x9f,0x52,0x55,0xde,0x31,0xcf,0x49,0xc8,0x17, 0x83,0x4e,0x71,0xb7,0xc2,0x3e,0x4d,0xdf,0xbb,0x8c,0x70,0x77,0x3,0xc,0x10,0xa4, 0xb6,0x49,0xcf,0x9c,0xd3,0x27,0x3a,0xe3,0x2,0xb1,0xf9,0xff,0x44,0xed,0x87,0x18, 0xb8,0x4c,0xe3,0xb5,0x78,0x35,0x83,0xa8,0x56,0x83,0x46,0x55,0xe,0x9c,0x92,0xfb, 0x48,0x47,0x17,0x9b,0xf1,0x64,0x52,0x45,0xbd,0x98,0x22,0xb8,0x8d,0xa5,0x6c,0x7c, 0xe3,0x40,0x1a,0xb5,0x48,0xd9,0x70,0xa6,0x51,0xdf,0x73,0x55,0xde,0x23,0x3,0x94, 0x8b,0x40,0x64,0xb3,0x68,0x66,0x16,0xf0,0xfb,0x61,0x1b,0x8e,0xb2,0xce,0x8d,0xba, 0x46,0x42,0x4c,0xa4,0xe5,0x4f,0x46,0x67,0x43,0x33,0xa8,0x12,0x2a,0xc2,0xdc,0x6b, 0x92,0x40,0xa9,0xbd,0x1e,0xe3,0x67,0x9f,0xbf,0x38,0x2,0x3c,0x70,0x54,0x18,0x28, 0x97,0x43,0x9f,0x80,0x63,0xd9,0xe7,0x7d,0x42,0x58,0x4d,0xac,0x47,0x44,0x87,0xee, 0x38,0x4f,0x3a,0x88,0xc1,0x51,0xd7,0xa2,0xb9,0x4d,0x1b,0x78,0xd5,0x95,0x36,0x2, 0x61,0x4d,0x9,0xb8,0xfc,0xdb,0x28,0xc3,0xc9,0xf1,0xe5,0xfc,0xba,0xc3,0x0,0x1, 0x42,0x42,0x54,0x94,0xab,0xbb,0xbe,0xa1,0xc1,0xc1,0x3f,0xa9,0x6e,0x2d,0x50,0x45, 0x62,0x4f,0x28,0x89,0x69,0x3c,0xb8,0x7e,0xfe,0x3d,0x3c,0x3d,0x9f,0x38,0xcc,0x9d, 0x5,0x4b,0xb0,0xa1,0xb6,0x12,0x25,0x8,0x6c,0xfe,0x2f,0x6b,0x9f,0x5e,0xff,0xdc, 0x71,0x4e,0x66,0x93,0xf1,0xfd,0x3d,0x14,0xb6,0x4b,0xd2,0x4d,0xe2,0xd4,0x96,0xba, 0x93,0x40,0xdd,0xaf,0x9d,0xf2,0x57,0x54,0x88,0x26,0x7,0xf4,0x13,0xbc,0xe0,0xf0, 0xaf,0x4e,0xef,0x9e,0xf,0x89,0xe2,0x96,0x95,0xf3,0x96,0x3b,0x91,0x1e,0x15,0x40, 0xc7,0x42,0xaa,0xb1,0x16,0xa6,0x40,0x76,0x71,0xcc,0xbc,0x4c,0x13,0xdb,0x1b,0xce, 0x65,0x49,0xcc,0x88,0x99,0xf1,0xe3,0x4b,0xb4,0xda,0xeb,0xfc,0x8,0xbe,0xc1,0x40, 0xb4,0x45,0x3a,0xa2,0x9,0x5c,0x9e,0x19,0x61,0x48,0xa6,0x9b,0x6f,0xf8,0xf9,0xff, 0xa,0x46,0xe8,0x87,0xd1,0xa3,0x2d,0x31,0x33,0xfc,0xfc,0xd0,0x6b,0xea,0x32,0x94, 0xee,0x47,0x8a,0xb8,0xf7,0x22,0x1d,0x39,0x4f,0x9d,0x52,0xd7,0x65,0x28,0x8d,0x8, 0x5f,0x46,0xef,0xbc,0x9b,0xa,0x70,0x7d,0xe,0x4a,0x36,0x3c,0x3b,0x83,0xca,0x13, 0x20,0x49,0x5a,0x91,0x8,0x39,0xb7,0x49,0x7f,0x9a,0x6e,0xec,0xd4,0xee,0xcc,0x7c, 0x5e,0x4b,0x5f,0xa0,0xb9,0x5d,0x29,0x2f,0x1d,0xeb,0x17,0x14,0xf5,0x54,0x15,0xb2, 0x3e,0x46,0xd8,0x89,0xbf,0x29,0x87,0x44,0x79,0x65,0xe6,0x16,0x5f,0x32,0x55,0x53, 0xbe,0x4f,0xb1,0x93,0x7f,0xf0,0x38,0xfa,0xd9,0x15,0xc1,0x9d,0x31,0x49,0xb3,0xed, 0xeb,0x43,0x9,0xa4,0xc9,0x77,0xaf,0x75,0x75,0x2d,0x46,0x41,0x70,0x2a,0x41,0x6a, 0x10,0x43,0x5b,0x93,0xec,0x24,0x56,0xeb,0xbd,0x7c,0xa8,0x87,0x54,0x31,0x2d,0x4b, 0xbb,0x43,0xfa,0xa9,0x5d,0x36,0x83,0x35,0xe4,0x17,0x81,0x4c,0x65,0x2f,0x63,0x42, 0x1a,0x4c,0x15,0xa7,0x60,0x38,0x41,0x6a,0xdb,0x1,0x32,0x12,0x52,0x91,0x1d,0x7c, 0xdc,0x44,0xb,0xb8,0x3e,0x17,0x45,0xbb,0x94,0xf6,0x5f,0x53,0xbb,0x88,0xfb,0xe9, 0xbe,0x48,0x4e,0xb4,0xcb,0x41,0x87,0x60,0xfa,0xea,0xb8,0x66,0xfb,0x51,0xa7,0xd8, 0x4,0x4b,0x65,0x9c,0x53,0xd7,0xf0,0x5c,0x11,0x8f,0x48,0xbc,0x69,0xa6,0xf8,0x5e, 0xc1,0x42,0x72,0xa6,0x6,0xeb,0x3d,0x9a,0x6f,0x6c,0x60,0xdf,0x21,0x73,0xb3,0x4, 0x32,0x4d,0x28,0xbc,0x75,0x8c,0x27,0xb6,0x6a,0x92,0x11,0x95,0xf5,0x2d,0x7a,0x2b, 0xee,0x4a,0x4b,0xab,0x21,0x41,0x6f,0x8c,0x6d,0xfb,0x5b,0x98,0x58,0x7b,0x7a,0x52, 0x29,0x4b,0x0,0x89,0xd7,0x4d,0x39,0xd7,0xd5,0x31,0xe9,0x64,0xc6,0x89,0xa2,0xe0, 0x59,0x49,0x5f,0x9b,0x6c,0xc,0x87,0x4d,0xc1,0x43,0xfe,0x4c,0x1d,0x6a,0x1d,0x9e, 0x2e,0x43,0x75,0x93,0x14,0xbc,0x31,0xe7,0xc3,0xb3,0xe0,0x50,0xed,0x9e,0xa2,0x47, 0x8d,0x4a,0xc6,0xa3,0x81,0xa6,0x5e,0xca,0x84,0x94,0xc,0x2c,0xcf,0x14,0xc9,0xe9, 0x76,0x42,0x2d,0xb2,0xc,0xf0,0x1d,0x57,0x25,0xb9,0xa6,0x24,0xd0,0xf1,0x85,0x57, 0x80,0x44,0x45,0xac,0x62,0x7d,0xe3,0xce,0x61,0x97,0xa4,0x68,0xcb,0xec,0x4d,0x3a, 0x1b,0x43,0xbe,0xaf,0x79,0x29,0x2f,0xc4,0xa7,0xfe,0x34,0xa3,0x88,0xe3,0xf2,0x95, 0x1,0x40,0xab,0xa4,0x16,0xa8,0xd3,0x73,0xbd,0xd1,0x70,0xaf,0x94,0x7b,0x42,0x5f, 0xf1,0x40,0x67,0x9a,0x5,0x6,0x12,0xcd,0x51,0x72,0x4,0xa4,0xe9,0x99,0xf4,0x83, 0xf4,0x4e,0x7f,0x8f,0x9d,0x83,0x39,0x4d,0x87,0xf5,0xd8,0x5,0x10,0xaf,0x83,0x77, 0x7d,0x49,0xd7,0x92,0xea,0x43,0x38,0x65,0x6a,0xc,0x7c,0x2,0x40,0xc3,0xa5,0x8a, 0x62,0x48,0x9f,0x9b,0x91,0xb2,0x72,0xc4,0xac,0xb7,0xf9,0xbe,0x13,0x1c,0xe5,0x65, 0xea,0x41,0x72,0x9d,0xda,0x31,0x7,0x5f,0x35,0xf8,0x6f,0x27,0x7c,0xda,0x4b,0x36, 0x9e,0x44,0x2f,0xb2,0x65,0x68,0x9c,0x9e,0xca,0xab,0xa9,0xe9,0xcc,0xb7,0xb8,0x97, 0x7,0x47,0x29,0x99,0x73,0xa6,0xcb,0xf6,0xc9,0xf0,0x7e,0xf8,0x3b,0x45,0x6,0x82, 0x14,0x48,0x9c,0x98,0xb4,0x53,0xe6,0x8e,0x78,0x59,0x84,0x2e,0x49,0xf,0x7f,0x6, 0x48,0x46,0x97,0x9a,0x55,0xae,0x9e,0x3a,0xc4,0x5f,0x40,0xba,0xca,0x54,0x2,0x3c, 0x9,0x49,0x38,0xb5,0xd7,0x18,0x47,0xfb,0xb7,0x46,0x41,0x56,0x60,0xb0,0xf1,0xcc, 0x56,0x49,0xc4,0xb8,0xe8,0xe2,0x1f,0xd0,0xac,0xdc,0xb7,0xcc,0x51,0xa3,0xb1,0xe4, 0x83,0x4f,0xc1,0x8c,0x9,0x33,0xfc,0x33,0x4c,0xaf,0x51,0x96,0x89,0xf7,0x59,0x1f, 0xce,0x40,0x55,0xa1,0xb5,0xcf,0xe4,0xe1,0xd9,0xad,0x57,0x5c,0x46,0x67,0xf9,0xea, 0x6e,0x42,0xa3,0x8e,0x4d,0x49,0x5b,0xf5,0x8b,0x17,0xd2,0xa4,0x9b,0x52,0x35,0xda, 0x88,0x41,0x56,0x96,0xc,0x74,0x3a,0xce,0x92,0x36,0x27,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa2,0x94,0x55,0x47,0x4, 0xdb,0x4b,0xb3,0xb0,0xe5,0xd4,0x56,0x1c,0xf2,0xb6,0x15,0x46,0xad,0x45,0xcf,0xf4, 0x76,0x48,0x68,0xb2,0x18,0x29,0x99,0x67,0x8a,0x5,0xd4,0xcf,0x55,0x45,0xf7,0x1c, 0x7,0x46,0x3c,0x92,0x17,0x7,0x36,0x16,0xe0,0xda,0x30,0x82,0x32,0x3c,0x95,0x32, 0xbe,0x48,0x2b,0xbb,0x10,0x5e,0xd5,0x17,0x2b,0x12,0xb2,0x3,0xfa,0x9a,0x47,0x8b, 0xeb,0x4a,0xb4,0x8e,0xed,0x76,0x2a,0x59,0x82,0xc4,0xf1,0xcc,0xfd,0x74,0x5,0x91, 0xb9,0x43,0xa,0x94,0x20,0x73,0x3,0xab,0xfa,0xe6,0x9d,0xdd,0xeb,0x62,0xb1,0xe6, 0xf6,0x46,0xb8,0xae,0x1c,0x93,0x79,0xfd,0x9b,0xb7,0xbc,0xc6,0xbb,0xb2,0x1a,0x69, 0x81,0x48,0xd9,0x86,0xc9,0xf3,0xbb,0xfa,0xb2,0xbd,0xf6,0xad,0xa3,0xab,0x14,0x17, 0xf5,0x43,0xb3,0xb4,0x8b,0x38,0x96,0x9c,0xf1,0x26,0xbd,0x41,0x2f,0x28,0x92,0xb, 0xec,0x4f,0x9d,0x89,0x81,0xee,0x9a,0x3c,0x28,0xa7,0xf4,0x3,0xad,0x57,0x4a,0xd, 0x68,0x40,0x2,0xb5,0x2f,0x6e,0x41,0xb0,0xbb,0x4a,0xca,0x7c,0xef,0x2,0x9c,0xf4, 0x35,0x43,0xf1,0xb5,0x3f,0xae,0xad,0x9e,0xf4,0xa,0xb2,0x80,0x30,0xe1,0xdc,0x73, 0x64,0x49,0xc6,0x84,0xdd,0x1f,0x37,0x79,0x90,0xf2,0x9a,0x83,0x3e,0xb8,0x75,0x12, 0xbe,0x49,0x16,0x93,0xc4,0x36,0x53,0x82,0x9e,0x14,0xa4,0xe7,0x3,0x6d,0xdb,0xde, 0xce,0x40,0x45,0x91,0x1b,0x2c,0x83,0xbd,0x2,0x47,0x73,0x4b,0xf8,0xab,0xc6,0x6c, 0xcd,0x4a,0x8b,0xb5,0xa6,0x74,0x2a,0xc0,0x76,0xca,0x4c,0xa7,0xbf,0x31,0xf9,0x45, 0x57,0x4f,0xb2,0x8f,0x9a,0xcd,0x9e,0x14,0x42,0xc,0xdd,0x7,0x1,0xde,0xa,0x40, 0x1c,0x41,0x9c,0xa8,0x43,0x2e,0xbf,0xb7,0x6e,0xfc,0x2b,0x1,0x39,0xe5,0xcd,0x60, 0x41,0x4e,0x63,0xa9,0x24,0x7,0x10,0x87,0x73,0x2,0xfc,0xa2,0xeb,0xb0,0x19,0xbb, 0x37,0x45,0xd1,0x85,0x4b,0x4d,0x86,0xe3,0x16,0xd1,0x4e,0xc5,0x48,0x14,0xd1,0x9b, 0xab,0x41,0x8d,0xab,0xf2,0xf,0x24,0x56,0x0,0x31,0x1c,0xa2,0x12,0xc,0x76,0xbe, 0x5f,0x4c,0xb0,0x9b,0x62,0xb3,0x7f,0xea,0x8f,0xba,0x43,0x3b,0x45,0x17,0x25,0xc7, 0xcf,0x4b,0xf6,0xa8,0xf3,0xbe,0x8a,0xa7,0xa3,0x4e,0x40,0x9f,0xa6,0xcf,0x2a,0xc3, 0x6b,0x46,0x48,0xb5,0xff,0x3,0x7f,0xd9,0x5d,0xef,0xe,0xf3,0xeb,0x12,0x6a,0x65, 0x26,0x4b,0xc0,0xb0,0xdc,0xd8,0xf6,0x75,0xa7,0x84,0x98,0x37,0x1,0x51,0xe,0x7f, 0x12,0x4a,0x1a,0x8d,0xb6,0x2a,0x9f,0x63,0xf3,0x65,0xf1,0x38,0x52,0x9f,0xf0,0xed, 0x92,0x43,0xfb,0xb4,0xbc,0x60,0xeb,0x88,0x1d,0x12,0x54,0xe,0xa6,0x9f,0x11,0x8b, 0x1b,0x4d,0x6,0xb7,0xf5,0xd4,0x12,0xfe,0xda,0x2f,0xa8,0xa6,0x2,0x51,0x1f,0x3e, 0xd7,0x4c,0xf,0xa6,0x99,0xbc,0x54,0xd7,0x4d,0x6b,0x8b,0xd6,0xec,0xe3,0x83,0xd7, 0x87,0x4d,0x5e,0x9a,0x2,0xcf,0x30,0x78,0x28,0x88,0x6f,0x40,0xaf,0xd3,0xef,0xa0, 0xa9,0x4f,0x6,0xb5,0x85,0x96,0x9a,0x4f,0x12,0xff,0x42,0x3e,0x88,0x80,0x38,0x2, 0xd0,0x48,0xd8,0xb5,0x2e,0x3e,0x42,0x9d,0x73,0x77,0xc3,0xef,0x1d,0xf7,0xb7,0x2, 0x48,0x4f,0x8c,0xbc,0x71,0xf9,0x33,0x8d,0x96,0xe6,0xc4,0x7f,0x46,0x4c,0x4c,0x26, 0xab,0x46,0xc4,0xb6,0x11,0x6b,0x63,0xb2,0xa0,0xe6,0x52,0xcc,0xa3,0x24,0xc3,0xff, 0x2d,0x4d,0x73,0xb0,0x4b,0x3a,0xf8,0x5f,0xd3,0xc5,0xd8,0x50,0x64,0xf2,0x9e,0x31, 0x37,0x4e,0xfd,0xb1,0x95,0x9f,0xe,0xdc,0xfe,0xf0,0x71,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xcb,0x7,0xbd,0xb1,0xb3, 0x9b,0x4e,0x5b,0x8e,0xbf,0x1,0x98,0x80,0x54,0xd,0x66,0x4b,0xe,0x45,0xa2,0xe, 0x42,0x49,0x32,0x83,0x92,0x8b,0x28,0x10,0x5,0x9d,0xa1,0xe8,0x4d,0x34,0x6f,0xdf, 0x50,0x4d,0xb4,0xad,0xe1,0x93,0x53,0x74,0xb7,0xd6,0x4b,0xca,0x74,0x61,0xe,0x93, 0x7,0x48,0x3a,0x87,0x6d,0xb7,0xd8,0xb2,0x97,0x2e,0x38,0xf0,0x3d,0x1b,0x23,0x90, 0x50,0x45,0x6,0x84,0x7e,0x78,0x66,0xf,0xca,0xbe,0xf0,0x41,0x26,0x81,0xee,0x10, 0x49,0x47,0x78,0x81,0x22,0x1e,0xa9,0x1,0x30,0x31,0x98,0xfd,0xeb,0xa,0x34,0x9b, 0xa3,0x48,0xdd,0x9c,0x7f,0xd8,0x1d,0x46,0x73,0x8e,0xba,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xba,0x58,0x43,0x64,0xa2, 0x4c,0x43,0x65,0x9c,0x9,0x1f,0x65,0xf4,0xb7,0x4b,0x73,0x6f,0xc1,0xb9,0xbf,0xe4, 0x3,0x4c,0x95,0xa2,0xdc,0x5b,0xa8,0x2,0xb7,0xf0,0xa6,0x46,0x1a,0x8a,0xb6,0xd8, 0x30,0x4f,0x42,0xa8,0xfd,0xd3,0x31,0x41,0x9c,0x5d,0x10,0x48,0x61,0xcd,0xde,0x25, 0x9c,0x4d,0xd9,0xb7,0xaa,0x52,0x83,0x32,0xd4,0xb1,0x8a,0x2f,0x88,0xaf,0xe3,0xdb, 0xd8,0x43,0xa,0x9b,0x31,0xe2,0xcc,0x8f,0xe0,0x39,0x6a,0x52,0xf4,0xb,0x78,0x48, 0xa4,0x4d,0x5f,0x9a,0x82,0x22,0x93,0xd7,0x19,0xfe,0xca,0xf,0xf0,0x3a,0x9,0x1b, 0x40,0x4e,0x40,0xb7,0xf3,0x56,0x5b,0x39,0x73,0xe7,0x98,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0xd2,0x46,0x6c,0xe9, 0xd7,0x4f,0x2b,0x87,0xd1,0x6d,0x3a,0xcb,0xd6,0xa0,0x7f,0x9f,0xed,0xd4,0x7d,0x86, 0xe5,0x46,0x79,0xa3,0x96,0x67,0x5a,0xad,0x92,0x78,0x50,0xfe,0x64,0xb1,0xac,0x18, 0x99,0x4a,0xf8,0x8f,0x3f,0x8e,0x73,0xfb,0x9d,0x34,0x5b,0xd3,0xa2,0x96,0xbe,0xbd, 0xe,0x44,0x36,0xb9,0x12,0x4d,0x16,0xef,0x4,0x5,0xb8,0x4c,0x78,0xd8,0x18,0x3d, 0x32,0x48,0x5a,0x97,0x76,0xab,0x4c,0x14,0x84,0xa,0xfd,0xa6,0xed,0x2b,0xa3,0x24, 0x76,0x43,0x2b,0xbf,0xb6,0x14,0x7f,0x7b,0x4a,0xca,0xd0,0x26,0x11,0xa,0x68,0xa9, 0xb7,0x45,0x50,0x92,0xb8,0x9f,0xf,0xa5,0x7a,0x5b,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf9,0xc9,0xdb,0xf0,0xe4, 0x3,0x45,0x2f,0x9c,0x18,0x89,0xc9,0x11,0x82,0x5a,0xe,0xe1,0x70,0xb4,0xe8,0x6a, 0x61,0x4d,0xa1,0x9d,0xba,0xf9,0xed,0xc5,0xe1,0xeb,0x99,0xa3,0xa6,0x65,0xeb,0x5a, 0xe6,0x4d,0xae,0x80,0x54,0xe7,0xa7,0xda,0xb6,0xba,0xc0,0x22,0xc7,0x8c,0x15,0x58, 0x92,0x4f,0xe4,0x9c,0x41,0xec,0x96,0x1f,0x12,0x54,0x1f,0xc6,0x58,0xa3,0xa8,0x24, 0x2,0x40,0x14,0x8b,0x88,0xc2,0x29,0xbe,0x2d,0xc3,0x36,0xef,0x41,0xee,0x10,0x6f, 0xc5,0x4c,0xd0,0x96,0xf6,0xaf,0x8,0x18,0x5,0x56,0x41,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0xf9,0x25,0x86,0xd3, 0xd3,0x4e,0x99,0xa9,0xc2,0x4a,0x96,0x74,0xcf,0x96,0xd6,0x34,0x55,0x2c,0x2b,0xc5, 0xc8,0x44,0xca,0xa7,0xa8,0xf2,0xeb,0xa5,0x67,0x34,0x5e,0x9a,0x9,0xd4,0x1b,0x3e, 0x98,0x43,0x82,0x81,0xf3,0xe4,0x5b,0x7e,0x3a,0xe8,0x8f,0x4,0x89,0xd1,0x68,0x0, 0xac,0x46,0x15,0x8b,0x3a,0x6a,0xbf,0x5d,0x52,0x73,0x8b,0xd2,0x96,0xed,0x61,0x6d, 0xbf,0x4d,0x60,0x81,0x8c,0x36,0x60,0xe5,0xa4,0xc7,0xbd,0x5c,0xbd,0xf2,0x4a,0xe5, 0xf,0x48,0x93,0x8e,0xfc,0x64,0xfe,0x7e,0x9b,0xa0,0xf3,0xe2,0x10,0xe3,0x5a,0x25, 0xa4,0x40,0xa5,0x8f,0x64,0x73,0xb6,0x52,0xfe,0x46,0xbd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0xa6,0xa2,0x19,0x12, 0x10,0x4a,0x8e,0xb4,0x7f,0xc2,0x25,0xec,0x32,0x1f,0x61,0x61,0xc5,0xe0,0xc5,0x4f, 0x5b,0x49,0xb4,0x97,0x2b,0x5,0x6e,0x7,0xd9,0xcb,0xc1,0x35,0x23,0x3a,0x82,0x79, 0x61,0x42,0xe5,0xae,0x4f,0xe1,0x4,0xf1,0x1e,0xb2,0x60,0xd1,0x6,0x6d,0x70,0xa1, 0x23,0x46,0x9e,0xa4,0xe6,0xcf,0x68,0x6,0x9f,0xa0,0x26,0xf3,0xaf,0x3b,0x80,0xda, 0x50,0x4d,0x3b,0x89,0x68,0xa4,0x97,0x6c,0x3,0x6b,0xec,0xd3,0x41,0xa6,0x58,0x3a, 0x68,0x41,0x12,0xa7,0xc4,0x52,0xe1,0xdd,0xea,0xf3,0x2a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x50,0xfa,0xfc,0x9a,0xec, 0xa0,0x4e,0x38,0xb4,0xd2,0x9a,0xf6,0x9,0x3a,0x6e,0xdd,0xa4,0xcc,0xf0,0x85,0x37, 0x80,0x43,0xd9,0x80,0x6f,0xbb,0x1e,0x35,0x72,0xc6,0xe8,0x58,0x84,0xae,0xa8,0x8, 0xe1,0x4c,0x63,0xac,0xca,0x8f,0x38,0x7e,0x2f,0x6,0x44,0xd5,0xfc,0xe3,0x14,0x77, 0x7c,0x47,0x53,0x86,0x9e,0x87,0xb0,0xec,0x3,0xc4,0xde,0xa4,0xc3,0xae,0x17,0xb6, 0x70,0x47,0xbf,0xb2,0x3b,0x38,0x29,0x18,0xc6,0xce,0xcd,0xab,0x15,0x4e,0xb,0x84, 0xd0,0x4e,0x53,0x9e,0x44,0xc9,0xee,0x34,0x52,0xe3,0xa7,0x9b,0x3d,0x82,0x76,0xf6, 0x19,0x44,0x14,0xb7,0x8b,0x71,0xd3,0xba,0xee,0xcf,0x31,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xec,0xb,0xb6,0x30,0xea, 0xc7,0x4d,0xc5,0x9a,0xb8,0xa6,0xf6,0xdc,0xe4,0xe,0xa0,0xa8,0xa1,0x6,0x1a,0x2f, 0x61,0x4d,0x61,0xaf,0x22,0x5e,0xab,0x98,0x37,0xf,0xdb,0x3e,0xc2,0xc6,0xba,0x1c, 0x43,0x44,0x52,0x9b,0xfc,0x62,0xbf,0x3c,0xe5,0xbc,0x74,0x1,0x2d,0x32,0xec,0xc2, 0xf4,0x4d,0xa1,0xb0,0xbe,0x3,0xbe,0x38,0x34,0x3c,0x51,0x73,0xba,0xde,0x2f,0x7a, 0x43,0x4e,0x21,0x98,0x38,0x88,0x36,0x8b,0x62,0xe3,0xde,0x3b,0x80,0xa,0x97,0xb5, 0x1b,0x4b,0x18,0xb2,0x28,0xb3,0x4c,0x18,0x83,0xec,0xa0,0x18,0x50,0x30,0xcb,0x2a, 0x52,0x49,0xed,0xa5,0x7c,0x6a,0xaf,0xe,0x85,0xfd,0x7d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4c,0xa6,0x2e,0x40,0x9c, 0xbd,0x42,0x4,0xa8,0x13,0x8f,0x54,0x6e,0x2,0xee,0x8a,0x46,0xa,0x3d,0x4a,0xfc, 0x7b,0x4a,0xbb,0xab,0xf8,0x14,0xe7,0xed,0x18,0x70,0x98,0xf4,0x2a,0xba,0x34,0xfc, 0x5e,0x4c,0xc8,0x8f,0xfd,0xee,0xba,0x60,0x98,0x9,0x4d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2e,0xaa,0xdf,0x6c,0xc4, 0xe5,0x4d,0x68,0xa9,0x87,0xbc,0xf9,0x47,0xcf,0xc8,0x4d,0x64,0xa3,0x94,0x3b,0x66, 0x9c,0x48,0x29,0x8a,0x56,0xc9,0xb4,0xa1,0x7a,0xbe,0xa6,0x96,0xd4,0x8c,0xe2,0x5e, 0x17,0x47,0xd9,0xa3,0x6d,0x99,0xc8,0x7c,0x90,0x57,0x88,0x8e,0xfa,0x69,0xf0,0xad, 0x17,0x46,0xe,0xbe,0xb8,0xac,0xd1,0x66,0x5c,0x3a,0x66,0x1,0xdd,0x21,0x66,0xb3, 0x53,0x46,0xab,0xb1,0x11,0x75,0x58,0xde,0x57,0xbc,0xe3,0x4a,0xcd,0x54,0x80,0x9a, 0xde,0x45,0x9,0xab,0x88,0x6a,0xce,0xe9,0x57,0xc3,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0xa,0x45,0x14,0x3, 0xe3,0x41,0x8c,0xab,0x78,0xf8,0x30,0xd1,0x92,0xb,0xce,0xd9,0x37,0x7c,0x36,0x86, 0x67,0x4f,0x60,0x93,0x60,0x37,0x8f,0x84,0xe0,0x9f,0xa8,0x1,0x9d,0x49,0xcf,0x39, 0x54,0x4d,0x78,0xac,0x3f,0x4f,0xb6,0xfd,0x2,0xc0,0x40,0x3a,0x4,0xef,0xe0,0x36, 0x79,0x4d,0xac,0xad,0xf6,0x83,0x7d,0x5e,0xdc,0xb2,0x3d,0xc4,0x5,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0,0x3e,0x9e, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4a,0x43,0x29,0x5e,0x88,0xa8,0xbb,0x3a,0x0, 0xd0,0x8f,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b, 0x1b,0x0,0x1d,0x8c,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21,0x43,0x29,0x5e,0xd7, 0x2e,0x60,0x5,0x0,0x8,0x88,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29, 0x5e,0xa7,0x8b,0xd6,0x9,0x0,0x88,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b, 0x43,0x29,0x5e,0x3c,0xe7,0xae,0x35,0x0,0xdc,0xba,0xbe,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x8f,0x22,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x36,0x8c,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x50,0x74, 0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0, 0x8e,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x30,0x44,0x29,0x5e,0x52,0x46,0x5d, 0x31,0x80,0xed,0xa7,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x42,0x29,0x5e,0x6, 0x8f,0xa9,0x14,0x0,0x84,0xac,0xa2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0x42,0x29, 0x5e,0x10,0xab,0x9f,0x1c,0x0,0x6d,0xb3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14, 0x43,0x29,0x5e,0x94,0x3e,0xef,0x22,0x0,0xbe,0x82,0xe8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0x34,0x12,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0xa,0xb8,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0xea,0x60, 0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0, 0x79,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94, 0xc,0x0,0x5b,0x9c,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0xf1,0x25,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29, 0x5e,0xcc,0x2c,0xc8,0x12,0x0,0xf1,0xaf,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4, 0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x79,0x8a,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xfa,0x97,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3,0x43,0x29,0x5e,0x6f,0x5f,0xb6,0x37,0x0,0xa4,0x23,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xbe,0x42,0x29,0x5e,0xe3,0x67,0x9f,0x1e,0x0,0x94,0x7c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0x42,0x29,0x5e,0xb5,0x58,0x4b,0x27,0x0, 0xb5,0xf0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70, 0x15,0x0,0xf,0x0,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc,0x43,0x29,0x5e,0x78, 0xab,0x5b,0x23,0x0,0xc9,0xf0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29, 0x5e,0xe9,0xdb,0x2,0x3,0x0,0xf1,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0x35,0x26,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe1,0x42,0x29,0x5e,0x83,0xa6,0x29,0x15,0x0,0x71,0x1b,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5f,0x42,0x29,0x5e,0x2a,0xb5,0xc9,0x25,0x0,0xaa,0x9a,0xd1,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0xb8,0x1f, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0, 0x61,0x2,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2, 0x11,0x0,0x6f,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3, 0xd7,0xbc,0x4,0x0,0x79,0x14,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe1,0x42,0x29, 0x5e,0x83,0xa6,0x29,0x15,0x0,0x21,0xf9,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9, 0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x87,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x9c,0x42,0x29,0x5e,0x8f,0xe0,0x38,0x26,0x0,0xa4,0x25,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xc0,0xc0,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x33,0x1e, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0, 0x46,0x33,0xbd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51, 0x8,0x0,0x11,0x2f,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb, 0xaf,0x1e,0x2c,0x0,0xe1,0xf2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29, 0x5e,0xde,0x78,0xde,0x32,0x0,0xab,0xf4,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0x32,0xb,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xff,0xb0,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0xa5,0x83,0xf2,0x34,0x0,0x88,0xa6,0xdf,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x65,0x15, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0x43,0x29,0x5e,0xae,0x59,0x1d,0x11,0x0, 0xf6,0x68,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94, 0xc,0x0,0x21,0xde,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13, 0xb7,0x6a,0x36,0x0,0x44,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29, 0x5e,0x2,0xdf,0xdb,0x29,0x0,0x86,0xfd,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea, 0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x69,0x67,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x85,0x2a,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0,0xe0,0x92,0xdf,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xf4,0x35, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0, 0xc2,0x72,0xdf,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70, 0x15,0x0,0x4f,0x44,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c, 0x70,0x12,0x39,0x0,0x46,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29, 0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xbd,0xc,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b, 0x0,0x29,0x5e,0x67,0xc7,0xfe,0x29,0x0,0x44,0x1a,0xa5,0x5,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a,0x36,0x0,0x77,0x26,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0x44,0x5e,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x3d,0x42,0x29,0x5e,0xa,0xfb,0xa7,0x39,0x0,0x52,0xce, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0x43,0x29,0x5e,0xae,0x59,0x1d,0x11,0x0, 0xce,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x87,0x4c,0x4e,0x5e,0xe6,0xbb,0x2f, 0x32,0x0,0x5f,0x7f,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0xff,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29, 0x5e,0x50,0xb6,0x15,0x21,0x0,0x6d,0x4f,0xde,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32, 0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0xd6,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xff,0x41,0x29,0x5e,0xa0,0xc3,0x37,0xb,0x0,0x9d,0x8a,0xb1,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xc4,0x5,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x2e,0x43,0x29,0x5e,0xee,0x24,0xbc,0x8,0x0,0xf9,0x72, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0, 0xf3,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b, 0x1b,0x0,0x8c,0x26,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae, 0x6e,0x8a,0x2e,0x0,0xbd,0xc,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29, 0x5e,0xe0,0xc1,0x39,0x32,0x0,0xf0,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x47,0xd9,0xf4,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0,0x44,0x1a,0xa5,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0,0x38,0x22,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x66,0x1c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88,0xd8,0x6,0x9,0x0, 0x1,0xd7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0x42,0x29,0x5e,0x13,0x8d,0x8f, 0xe,0x0,0x84,0x66,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa2,0x42,0x29,0x5e,0xb4, 0x9b,0x65,0x12,0x0,0xc0,0xdc,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29, 0x5e,0x50,0xb6,0x15,0x21,0x0,0x5b,0xbb,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb4, 0xff,0x28,0x5e,0xfd,0x5a,0x32,0x38,0x0,0x44,0x1a,0xa5,0x7,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x42,0x42,0x29,0x5e,0xc6,0x4b,0x35,0x0,0x0,0x16,0xf,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x51,0x48,0x29,0x5e,0xa4,0xb9,0xbc,0xe,0x80,0x65,0x9b,0x75,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29,0x5e,0x75,0xd1,0x5,0x0,0x0,0x37,0x9, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0x42,0x29,0x5e,0xf4,0x92,0x89,0x38,0x0, 0x94,0x5d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0x42,0x29,0x5e,0x79,0xdd,0xc6, 0x2b,0x0,0x75,0x1e,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae, 0x6e,0x8a,0x2e,0x0,0xf6,0x29,0xf0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0x42,0x29, 0x5e,0xb2,0x95,0x22,0x6,0x0,0xce,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x40, 0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0xcd,0x25,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7,0x0,0x29,0x5e,0x21,0x20,0x11,0xb,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xc7,0x76,0x73,0x7,0x0,0xc0,0xbc,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0,0xdd,0x98, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0, 0x83,0x5d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c, 0x10,0x0,0x1,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0x4e,0x13,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29, 0x5e,0x6c,0x31,0x84,0xc,0x0,0x59,0xb7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe, 0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x2c,0xf6,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x46,0x42,0x29,0x5e,0x2c,0xb3,0xda,0x1,0x0,0x95,0x24,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x58,0x42,0x29,0x5e,0xa1,0x76,0x6c,0x2c,0x0,0xe0,0xd1,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0,0xff,0x6f, 0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0, 0x7e,0x75,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b, 0x2e,0x0,0x9d,0x1a,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee, 0x8,0xdd,0x2c,0x0,0x6c,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29, 0x5e,0xee,0x8,0xdd,0x2c,0x0,0x73,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x48,0x5e,0xe9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x13,0x43,0x29,0x5e,0xd6,0xae,0x40,0x1a,0x0,0x4f,0xb3,0xa4,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a,0x36,0x0,0x29,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e,0x2c,0x0,0xaf,0xde, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5f,0x42,0x29,0x5e,0x2a,0xb5,0xc9,0x25,0x0, 0x37,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x42,0x29,0x5e,0x53,0xe8,0x59, 0x25,0x0,0x35,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50, 0xb6,0x15,0x21,0x0,0x8b,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29, 0x5e,0x41,0xd,0x6b,0x2e,0x0,0x30,0x12,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb7, 0x42,0x29,0x5e,0xdb,0x4e,0xfc,0x7,0x0,0x40,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x8e,0x25,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x33,0x43,0x29,0x5e,0x1f,0x8a,0x61,0xd,0x0,0x25,0x27,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0x74,0x2d, 0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0, 0x12,0x12,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c, 0x32,0x0,0x36,0x75,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd, 0x27,0x94,0xc,0x0,0x13,0x2a,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29, 0x5e,0xe,0xc5,0x8d,0x29,0x0,0x9b,0x6d,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x53, 0x0,0x29,0x5e,0xc6,0xb3,0x70,0x3a,0x0,0x66,0x2a,0xa6,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x81,0x18,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x63,0x0,0x29,0x5e,0xa,0xc8,0x89,0x14,0x0,0x44,0x1a,0xa5,0x3, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xeb,0x42,0x29,0x5e,0x35,0x75,0x60,0x2d,0x0,0x7e,0x6a, 0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd7,0x42,0x29,0x5e,0xad,0x63,0xd5,0x3,0x0, 0x54,0x28,0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb,0x68,0xd7, 0x1f,0x0,0x89,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x76,0x42,0x29,0x5e,0x2d, 0xe0,0x26,0x1e,0x0,0x1,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29, 0x5e,0xe0,0xc1,0x39,0x32,0x0,0x3c,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55, 0x42,0x29,0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x14,0x1f,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb7,0x42,0x29,0x5e,0xdb,0x4e,0xfc,0x7,0x0,0xcc,0x27,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd7,0x42,0x29,0x5e,0xad,0x63,0xd5,0x3,0x0,0x2a,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x98,0x30, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x42,0x29,0x5e,0xf,0xc3,0x22,0x2f,0x0, 0x96,0x8,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf, 0x24,0x0,0x34,0x71,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88, 0xd8,0x6,0x9,0x0,0x5e,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x42,0x29, 0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x64,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0, 0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0x43,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7c,0xff,0x28,0x5e,0x64,0xcc,0x8b,0x15,0x0,0x23,0xe6,0xa0,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x45,0x43,0x29,0x5e,0x7d,0x33,0x1d,0x35,0x0,0x53,0x1,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x39,0xfc, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0x42,0x29,0x5e,0x42,0x18,0xd0,0xc,0x0, 0x9f,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5e,0xff,0x28,0x5e,0xc5,0xf5,0x46, 0x13,0x0,0x57,0x4a,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0x43,0x29,0x5e,0xbc, 0x6a,0xae,0x3a,0x0,0xd2,0xee,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2e,0xff,0x28, 0x5e,0x30,0x87,0xf9,0x8,0x0,0x6,0xcc,0x9a,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x48, 0xff,0x28,0x5e,0x7e,0xfd,0x20,0xe,0x0,0x68,0x53,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0x88,0x1b,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf,0x24,0x0,0x7c,0x10,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x40,0x43,0x29,0x5e,0xcf,0x44,0xd5,0x31,0x0,0x9b,0x1, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xfe,0x28,0x5e,0x3e,0x9a,0x4a,0x8,0x0, 0xf4,0x14,0x95,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x57,0xff,0x28,0x5e,0x96,0x9f,0x53, 0x38,0x0,0xec,0xed,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29,0x5e,0xdf, 0xf,0xa1,0x1e,0x0,0x99,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0xff,0x28, 0x5e,0x66,0x2c,0x3f,0x36,0x0,0x5,0x9d,0x9e,0x5,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4, 0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x63,0xa7,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0x4e,0x4,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x18,0xb,0xf1,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x55,0x42,0x29,0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x50,0x32, 0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe6,0x42,0x29,0x5e,0xa0,0xcd,0xba,0x1a,0x0, 0xf5,0x3,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a, 0x2e,0x0,0xbf,0x15,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29,0x5e,0x75, 0xd1,0x5,0x0,0x0,0x1e,0x27,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x43,0x29, 0x5e,0xb7,0x88,0x56,0x33,0x0,0x3,0x3,0xa8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2b, 0x56,0x29,0x5e,0x7f,0xef,0xa4,0xa,0x0,0x56,0x5d,0xae,0x9,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8d,0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0,0x40,0x23,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0x68,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0x8f,0xf, 0xa2,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x49,0x0,0x29,0x5e,0xa0,0x96,0x55,0x29,0x0, 0xf1,0x62,0xc6,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15, 0x21,0x0,0x3a,0x26,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7, 0xe0,0x11,0x25,0x0,0x9c,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29, 0x5e,0xda,0x6a,0xb2,0x11,0x0,0x36,0x46,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96, 0xff,0x28,0x5e,0x5e,0x48,0x65,0x6,0x0,0xb4,0xbc,0x9f,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x67,0x26,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0xc0,0x3,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xc7,0x76,0x73,0x7,0x0,0x30,0xac, 0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x43,0x29,0x5e,0x1e,0x30,0x8b,0x8,0x0, 0xf2,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf5,0x4c,0x4e,0x5e,0x3d,0x94,0x78, 0x4,0x0,0xbb,0x80,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf, 0x85,0x2,0x9,0x0,0x65,0xec,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3f,0x0,0x29, 0x5e,0x1,0xd,0xf,0x21,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd6, 0x56,0x29,0x5e,0x20,0xe2,0x7d,0x1b,0x0,0x3b,0xe9,0xc2,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xdf,0x6,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4c,0xff,0x28,0x5e,0x5,0xd7,0x5f,0x36,0x0,0xb4,0x5f,0xa1,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x28,0x61, 0xbd,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0, 0xa9,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x43,0x29,0x5e,0x97,0x3e,0xf8, 0x29,0x0,0x59,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0xff,0x28,0x5e,0xc8, 0x2d,0xf2,0x3,0x0,0xe0,0x4b,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29, 0x5e,0x18,0x44,0x4c,0x32,0x0,0x65,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3,0x42,0x29,0x5e,0x93,0x4,0x98,0xc,0x0,0x32,0x98,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x25,0x62,0xe9,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xa1,0x2a, 0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0, 0xde,0x35,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf, 0x24,0x0,0xb4,0xee,0xa7,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x42,0x29,0x5e,0x6e, 0x44,0x43,0x2d,0x0,0xe0,0x6,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4f,0xff,0x28, 0x5e,0xde,0xb1,0xbb,0x30,0x0,0x11,0x4b,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27, 0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0x3f,0xc0,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0xa3,0xd7,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x9a,0x5b,0xc2,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0x53,0x71, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0, 0xe0,0x70,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xae,0x4c,0x4e,0x5e,0x82,0xae,0xbd, 0x2,0x0,0x9c,0x79,0xc2,0x19,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0xd3,0x43,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x5,0x97, 0x5d,0x6f,0xfb,0xb0,0x13,0xc0,0x4a,0xb1,0x11,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x82, 0x0,0x29,0x5e,0x21,0x89,0x40,0x0,0x0,0x44,0x1a,0xa5,0x4,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x98,0x42,0x29,0x5e,0x24,0xf8,0x10,0x4,0x0,0xa0,0x1c,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd5,0x42,0x29,0x5e,0x84,0xad,0xe8,0x36,0x0,0x1f,0x30,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0xa,0x62, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0, 0x87,0x4,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f, 0x1b,0x0,0xef,0xda,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x35,0x0,0x29,0x5e,0x7, 0x48,0x0,0x11,0x0,0x44,0x1a,0xa5,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29, 0x5e,0xde,0x78,0xde,0x32,0x0,0x75,0x76,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4, 0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x8,0xa5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5d,0x42,0x29,0x5e,0x60,0xe3,0xd7,0x36,0x0,0x2e,0xa7,0xc9,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0x5c,0x15,0xf0,0xa, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x25,0xaa, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x42,0x29,0x5e,0x6,0x8f,0xa9,0x14,0x0, 0x3e,0x97,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69,0x5c,0xad, 0x33,0x0,0xcf,0x50,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x31,0xff,0x28,0x5e,0xd5, 0x8f,0xba,0x26,0x0,0x95,0xdc,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xeb,0x57,0x29, 0x5e,0x4e,0x90,0xfc,0x26,0x0,0x21,0xb3,0xc1,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x52, 0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0x5d,0xa,0xa1,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0,0xdf,0xf,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0,0xfb,0xa9,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xbe,0x42,0x29,0x5e,0xe3,0x67,0x9f,0x1e,0x0,0xc9,0x8b, 0xde,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0, 0x36,0xa2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92, 0x16,0x0,0x60,0x5d,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0xe2,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x43,0x29, 0x5e,0x3c,0xe7,0xae,0x35,0x0,0xff,0x10,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe3, 0xff,0x28,0x5e,0xcb,0x90,0x4e,0xe,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x3b,0xab,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xb1,0xdc,0xdd,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x71,0x2, 0xf0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3d,0xff,0x28,0x5e,0x8b,0xed,0x99,0x36,0x0, 0x6e,0xef,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb, 0x3,0x0,0x26,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x7e,0x93,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29, 0x5e,0xc0,0x10,0x91,0xd,0x0,0xd8,0x63,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c, 0xff,0x28,0x5e,0x64,0xcc,0x8b,0x15,0x0,0x73,0xdc,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x42,0x29,0x5e,0x88,0xd8,0x6,0x9,0x0,0xe2,0xa0,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69,0x5c,0xad,0x33,0x0,0x1b,0xd,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x7,0x0,0x29,0x5e,0x21,0x20,0x11,0xb,0x0,0x44,0x1a, 0xa5,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0, 0x37,0x91,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0xff,0x28,0x5e,0x71,0xc5,0xa9, 0x28,0x0,0xf4,0x14,0x95,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0x66,0x4a,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29, 0x5e,0xb,0xaf,0x1e,0x2c,0x0,0xf8,0x4e,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x90, 0x51,0x29,0x5e,0x26,0x63,0x59,0x1c,0x0,0xf9,0x3f,0x75,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4e,0x42,0x29,0x5e,0x1a,0xc,0x1c,0x1e,0x0,0xb8,0xc,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x27,0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0,0x19,0x91,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xf7,0x26, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0, 0xf8,0xae,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe2,0x0,0x29,0x5e,0x89,0xd3,0xf9, 0x2e,0x0,0x2b,0xb8,0x58,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78, 0x51,0x1f,0x1b,0x0,0xe7,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29, 0x5e,0xda,0x6a,0xb2,0x11,0x0,0xa1,0xf,0xa8,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe, 0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0x45,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5f,0x42,0x29,0x5e,0x2a,0xb5,0xc9,0x25,0x0,0x80,0x2c,0xe9,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x27,0x2a,0xf0,0xe, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0x92,0x1, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0x43,0x29,0x5e,0xd4,0xa0,0x3c,0x13,0x0, 0x89,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0xc4,0xe7,0xef,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69, 0x5c,0xad,0x33,0x0,0x42,0x86,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0xa2,0x2a, 0x5e,0xbe,0x8c,0xc6,0xc,0x0,0xe4,0x75,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x19, 0x43,0x29,0x5e,0x1,0x61,0x10,0x25,0x0,0xce,0x25,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x84,0x1a,0xe8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xd6,0x60,0xe9,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdf,0xdb,0xb2,0x5d,0x13,0x1,0x5b,0x2f,0x0,0xce,0x36, 0x9f,0x22,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0, 0x3,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96,0xff,0x28,0x5e,0x5e,0x48,0x65, 0x6,0x0,0xfd,0x39,0xa0,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c, 0x70,0x12,0x39,0x0,0x91,0x67,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd7,0x42,0x29, 0x5e,0xad,0x63,0xd5,0x3,0x0,0x36,0xb1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9, 0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x85,0x2f,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0x4f,0x3a,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e,0xb,0x0,0xc1,0x29,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf5,0x42,0x29,0x5e,0x51,0x94,0xcb,0x31,0x0,0x94,0x37, 0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x42,0x29,0x5e,0x40,0xc,0xb6,0xb,0x0, 0x32,0xaf,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf1,0x42,0x29,0x5e,0x2b,0x23,0xf5, 0x31,0x0,0x55,0x97,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x1a,0x85,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0x43,0x29, 0x5e,0xf,0x89,0xed,0x11,0x0,0x84,0xbd,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba, 0x0,0x29,0x5e,0x97,0x53,0x1c,0xc,0x0,0x44,0x1a,0xa5,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0xb7,0x86,0xdd,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x4c,0x86,0xef,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x7e,0xf0, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0, 0x9f,0x46,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c, 0x10,0x0,0x41,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78, 0x51,0x1f,0x1b,0x0,0x5e,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0xff,0x28, 0x5e,0x64,0xcc,0x8b,0x15,0x0,0x7a,0xc5,0x9e,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x57, 0xff,0x28,0x5e,0x96,0x9f,0x53,0x38,0x0,0x7a,0xe3,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0xfa,0x4f,0xa1,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe2,0x42,0x29,0x5e,0x26,0xa2,0x30,0x1e,0x0,0x88,0x11,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x30,0x43,0x29,0x5e,0xc0,0x42,0x65,0x1a,0x0,0xf4,0xc2, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x46,0xff,0x28,0x5e,0x26,0x8e,0xf6,0x20,0x0, 0x32,0x39,0xa1,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2, 0x9,0x0,0xa,0xee,0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x43,0x29,0x5e,0xbf, 0x1d,0x28,0x1a,0x0,0x6,0xf9,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xda,0x42,0x29, 0x5e,0xf,0x31,0x84,0x1d,0x0,0x3f,0xf6,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3f, 0x0,0x29,0x5e,0x1,0xd,0xf,0x21,0x0,0x92,0x4c,0xa1,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd3,0xff,0x28,0x5e,0x88,0xd,0xd4,0x32,0x0,0x39,0xe6,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0x89,0x1d,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0x18,0xc0, 0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0, 0x79,0x48,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x43,0x29,0x5e,0x97,0x3e,0xf8, 0x29,0x0,0x24,0xb,0xaa,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf7,0xff,0x28,0x5e,0x67, 0x4a,0x9d,0x2e,0x0,0x8c,0x18,0xa2,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29, 0x5e,0xc0,0x10,0x91,0xd,0x0,0x95,0xc1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1f, 0x43,0x29,0x5e,0xa9,0xa7,0xd7,0x32,0x0,0xd0,0xf,0xa8,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x25,0xff,0x28,0x5e,0xe3,0x3e,0x43,0x3a,0x0,0xfc,0xda,0xa1,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf,0x24,0x0,0x5a,0xf,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x32,0xba, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0, 0x6e,0x14,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11, 0x25,0x0,0xe4,0x13,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0x43,0x29,0x5e,0xd4, 0xa0,0x3c,0x13,0x0,0x12,0x3,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29, 0x5e,0xde,0x78,0xde,0x32,0x0,0x66,0x4,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x9e,0x87,0xc2,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x22,0x42,0x29,0x5e,0xc8,0xe7,0x5e,0x8,0x0,0x41,0x6f,0xb2,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0x64,0x33,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1d,0x67,0x39,0x5e,0x17,0x2e,0xf5,0x25,0x0,0xe,0x21, 0x74,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x76,0xbb,0xb2,0x5d,0x33,0x8c,0x1b,0x11,0x0, 0x5c,0x42,0x97,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0xad,0x44,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa2,0x42,0x29,0x5e,0xb4, 0x9b,0x65,0x12,0x0,0x66,0x15,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29, 0x5e,0xe9,0xdb,0x2,0x3,0x0,0x5f,0xea,0xf4,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x11, 0x43,0x29,0x5e,0x9,0x18,0x99,0x2b,0x0,0x3e,0xdc,0xdf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6b,0x1,0x29,0x5e,0xdd,0x3c,0xeb,0x1b,0x0,0xb5,0x32,0xa8,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x45,0x43,0x29,0x5e,0x7d,0x33,0x1d,0x35,0x0,0x5c,0xa7,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0xca,0x88, 0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0, 0x7f,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba,0xff,0x28,0x5e,0xa9,0xa0,0x1c, 0x5,0x0,0xfd,0x55,0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18, 0x63,0x66,0x29,0x0,0x1a,0x2b,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x42,0x29, 0x5e,0xfb,0x68,0xd7,0x1f,0x0,0x90,0xb,0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c, 0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0xdc,0x2b,0xe9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x46,0x43,0x29,0x5e,0xf1,0xe,0xbb,0x20,0x0,0xb9,0x67,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x2d,0x24,0xa1,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x9a,0x1d, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x43,0x29,0x5e,0x69,0x5c,0xad,0x33,0x0, 0x39,0x13,0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29,0x5e,0x2,0xdf,0xdb, 0x29,0x0,0x31,0x3d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x15,0x43,0x29,0x5e,0x15, 0xcf,0x52,0x2c,0x0,0xc8,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29, 0x5e,0xb0,0x9a,0x51,0x8,0x0,0xe8,0xf2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98, 0x42,0x29,0x5e,0x24,0xf8,0x10,0x4,0x0,0xde,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x25,0xe6,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x46,0x43,0x29,0x5e,0xf1,0xe,0xbb,0x20,0x0,0xa5,0x11,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x96,0xff,0x28,0x5e,0x5e,0x48,0x65,0x6,0x0,0xe9,0x14, 0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0, 0x3,0x5a,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11, 0x25,0x0,0xa5,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd3,0x42,0x29,0x5e,0x75, 0xdd,0x37,0x3,0x0,0xee,0xe,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x48,0x29, 0x5e,0xa9,0xc0,0x6b,0x3b,0x80,0xac,0x62,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea, 0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0xac,0x98,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7c,0x0,0x29,0x5e,0x1c,0xfc,0x5f,0x34,0x0,0xa7,0xdb,0xa0,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3f,0x42,0x29,0x5e,0xc2,0x59,0xc8,0x6,0x0,0x64,0xae,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0x3,0xdb, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0xff,0x28,0x5e,0xc,0xdc,0xa6,0x27,0x0, 0x2a,0xe6,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x42,0x29,0x5e,0x41,0x9,0x12, 0x26,0x0,0xe2,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x4e,0x29,0x5e,0x38, 0x15,0x54,0x1,0x80,0xbb,0x9a,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29, 0x5e,0xe8,0x1e,0xdb,0x3,0x0,0x25,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5, 0x0,0x29,0x5e,0x6c,0xe6,0x5a,0x2e,0x0,0x86,0xe6,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x54,0x43,0x29,0x5e,0x1e,0x30,0x8b,0x8,0x0,0x6b,0x1,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x44,0xab,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2,0x3,0x33,0xb,0x0,0xd7,0xf2, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x87,0x0,0x29,0x5e,0xa,0xe0,0x4f,0x8,0x0, 0x44,0x1a,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc, 0x1e,0x0,0x54,0x5,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf, 0x85,0x2,0x9,0x0,0x33,0x5a,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0xff,0x28, 0x5e,0x64,0xcc,0x8b,0x15,0x0,0xc5,0xdb,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe4, 0x41,0x29,0x5e,0x2b,0x3c,0x1b,0xd,0x0,0xf5,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe4,0x42,0x29,0x5e,0x6c,0xfa,0xc2,0x2e,0x0,0x23,0xb7,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8,0x42,0x29,0x5e,0x64,0x4,0x42,0x16,0x0,0xf5,0xb2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc2,0x42,0x29,0x5e,0xbd,0x70,0x8d,0x1f,0x0,0xb0,0xb2, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0xa5,0x83,0xf2,0x34,0x0, 0xad,0xb1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3e,0x43,0x29,0x5e,0x20,0xb3,0x83, 0x24,0x0,0x1,0xa2,0xa8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0x9e,0xb1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x84,0x3a, 0x5e,0x7b,0x10,0x51,0x4,0x0,0xe7,0x6d,0xbd,0x5,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b, 0x0,0x29,0x5e,0x1,0x7c,0xbd,0x25,0x0,0x6,0x37,0xd5,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x29,0x1,0x29,0x5e,0x5,0x98,0x8c,0x24,0x0,0xf7,0x63,0xd5,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf1,0x0,0x29,0x5e,0x8c,0x99,0xca,0x37,0x0,0xb7,0x57,0xd9,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xe9,0xb0, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0, 0x41,0x76,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x89,0x1,0x29,0x5e,0x3a,0x7,0xe9, 0x26,0x0,0x30,0xc2,0xd5,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb, 0x68,0xd7,0x1f,0x0,0x20,0x9b,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x3,0x29, 0x5e,0xa1,0xea,0xa7,0x1b,0x0,0x62,0x4d,0xd9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c, 0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0xc3,0x5c,0xe9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x21,0x43,0x29,0x5e,0xd7,0x2e,0x60,0x5,0x0,0xaa,0xe0,0xd1,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xa0,0xb0,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xfd,0x1,0x29,0x5e,0x71,0xc3,0x67,0x36,0x0,0xf7,0x43, 0xdb,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf,0x1,0x29,0x5e,0x22,0xea,0x51,0x26,0x0, 0x9f,0x62,0xd5,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e, 0x2c,0x0,0x2,0xff,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x34,0x42,0x29,0x5e,0x20, 0xda,0x82,0x35,0x0,0x91,0xa1,0xb2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x66,0x1,0x29, 0x5e,0x72,0x50,0x73,0x13,0x0,0xbf,0xe1,0xad,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62, 0x52,0x29,0x5e,0xe9,0xdb,0x2,0x3,0x0,0xd5,0xde,0xfc,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3a,0x2,0x29,0x5e,0xd5,0xe5,0xbc,0x7,0x0,0x27,0xbe,0xa9,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a,0x36,0x0,0x56,0xac,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x66,0x1,0x29,0x5e,0x72,0x50,0x73,0x13,0x0,0xa1,0xed, 0x5b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbc,0x42,0x29,0x5e,0x3a,0x57,0xf1,0xd,0x0, 0x22,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xda,0x42,0x29,0x5e,0xf,0x31,0x84, 0x1d,0x0,0x73,0x1b,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab, 0x7e,0x4,0x23,0x80,0xd6,0xba,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29, 0x5e,0xc0,0xaa,0x1,0x7,0x0,0x21,0x8a,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e, 0x42,0x29,0x5e,0x10,0xab,0x9f,0x1c,0x0,0x4a,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0xd6,0xa6,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0xc0,0xd9,0x55,0x10,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0xa0,0x2e,0xe6, 0x1d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6,0x42,0x29,0x5e,0xc4,0xfa,0x1b,0x3a,0x0, 0xa5,0x3a,0xd2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde, 0x32,0x0,0x76,0xad,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x42,0x29,0x5e,0xf, 0xc3,0x22,0x2f,0x0,0x24,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9, 0x5d,0xab,0x7e,0x4,0x23,0x60,0x7,0xf1,0x1b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e, 0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0x20,0xa1,0x2f,0x14,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4,0x23,0xa0,0x81,0xeb,0x14,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfd,0x55,0x29,0x5e,0xc2,0xb,0x45,0x22,0x0,0xa5,0xa1,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf7,0x41,0x29,0x5e,0x41,0xaa,0x8a,0x8,0x0,0xb1,0xd0, 0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9a,0x56,0x29,0x5e,0x11,0xc6,0xf4,0x11,0x0, 0xaf,0xaa,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xff,0x44,0x29,0x5e,0x48,0xcc,0x8d, 0x31,0x0,0x25,0xad,0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3,0x42,0x29,0x5e,0x93, 0x4,0x98,0xc,0x0,0x39,0x39,0xb0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1c,0x41,0x29, 0x5e,0x10,0x12,0x74,0x1c,0x0,0x7a,0xf5,0x4f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0x18,0xa0,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x16,0x0,0x29,0x5e,0xc0,0x3e,0x9d,0x22,0x0,0xb3,0xa6,0x93,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0xf6,0xb,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29,0x5e,0xdf,0xf,0xa1,0x1e,0x0,0x8c,0x26, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc,0x0,0x29,0x5e,0x3a,0x4a,0xb0,0x13,0x80, 0xe9,0xd3,0x5e,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0xa,0xe9,0x5d,0xab,0x7e,0x4, 0x23,0x20,0x2d,0x93,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0, 0xc1,0x39,0x32,0x0,0xd5,0xde,0xb0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29, 0x5e,0xa5,0x83,0xf2,0x34,0x0,0xf4,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x72,0x1b,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdd,0x42,0x29,0x5e,0x6,0x8f,0xa9,0x14,0x0,0xb7,0x69,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc9,0xff,0x28,0x5e,0xba,0x12,0xe5,0x21,0x0,0xfb,0x55,0x5e,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x8b,0xab, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0, 0x8,0x91,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc9,0xff,0x28,0x5e,0xba,0x12,0xe5, 0x21,0x0,0xcf,0xd4,0x5c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18, 0x44,0x4c,0x32,0x0,0x76,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee, 0x5d,0x53,0x4b,0x61,0x28,0x20,0xaa,0xfe,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54, 0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x20,0x24,0x26,0x7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0x8a,0x5e,0xe9,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x40,0x95,0x9d,0x26,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x93,0x18,0xfa,0x5d,0x1b,0x60,0x25,0x1b,0x0,0xe2,0x86, 0x62,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2,0x3,0x0, 0xa3,0x82,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a, 0x2e,0x0,0xde,0x8f,0xef,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53, 0x4b,0x61,0x28,0x40,0x5f,0x70,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29, 0x5e,0xe9,0xdb,0x2,0x3,0x0,0x6a,0xac,0xfc,0xd,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54, 0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xa0,0xf6,0xf3,0x10,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x2c,0x42,0x29,0x5e,0x15,0x4b,0x99,0x16,0x0,0x5f,0xfa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xe0,0x67,0x12,0x16,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x8,0x62,0xa1, 0x5,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xa0, 0xa4,0x2b,0x18,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x42,0x29,0x5e,0x54,0x85,0xee, 0x21,0x0,0xd7,0xd,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53, 0x4b,0x61,0x28,0xc0,0x58,0x38,0x15,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee, 0x5d,0x53,0x4b,0x61,0x28,0x80,0xc4,0xf6,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b, 0xff,0x28,0x5e,0xc3,0xa0,0x16,0xe,0x0,0xf5,0x31,0x5c,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x7e,0x42,0x29,0x5e,0x10,0xab,0x9f,0x1c,0x0,0x34,0x76,0xe8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0xf,0x28,0xe9,0xc, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xed,0xff,0x28,0x5e,0xeb,0x2f,0x15,0x1e,0x80,0x9a,0xab, 0x58,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0x60, 0xef,0x7e,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61, 0x28,0x40,0x9b,0xf1,0x27,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2, 0x3,0x33,0xb,0x0,0x16,0x35,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x43,0x29, 0x5e,0xbf,0x1d,0x28,0x1a,0x0,0x3,0xaf,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x5a,0x7f,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x9b,0x26,0xee,0x5d,0xa8,0xa7,0x16,0x9,0xd0,0x4f,0x51,0x7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x17,0x42,0x29,0x5e,0xbb,0xea,0xb0,0x31,0x0,0xab,0xef,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xdd,0xa3, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x12,0xee,0x5d,0x53,0x4b,0x61,0x28,0xe0, 0xcd,0xdd,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e, 0x36,0x80,0xba,0x11,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb, 0x80,0x1e,0x36,0x40,0xe2,0xf9,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc2,0x42,0x29, 0x5e,0xbd,0x70,0x8d,0x1f,0x0,0xac,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc, 0x42,0x29,0x5e,0x7e,0x26,0x9a,0x37,0x0,0x15,0xfb,0xde,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x7c,0x10,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xba,0x41,0x29,0x5e,0x3a,0x65,0x13,0x13,0x0,0x58,0xcf,0xb2,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x40,0x41,0x9, 0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x15,0x43,0x29,0x5e,0x15,0xcf,0x52,0x2c,0x0, 0x9c,0x8e,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc2,0x42,0x29,0x5e,0xbd,0x70,0x8d, 0x1f,0x0,0xde,0xa1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb, 0x80,0x1e,0x36,0x80,0x9f,0xea,0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14,0x43,0x29, 0x5e,0x94,0x3e,0xef,0x22,0x0,0x9e,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0xdc,0x9,0x5e,0x6,0xe0,0x97,0x30,0x0,0xd1,0x31,0x87,0x3a,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x86,0x42,0x29,0x5e,0x23,0xc7,0xe6,0x36,0x0,0x61,0x1d,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x20,0x4,0xf6,0x10,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xa0,0x7,0x35, 0x17,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0, 0xfd,0x1b,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94, 0xc,0x0,0xa2,0x1d,0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c, 0x12,0xd6,0x30,0x80,0x4,0x49,0x5e,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x93,0x18,0xfa, 0x5d,0x1b,0x60,0x25,0x1b,0x80,0xe1,0xea,0x60,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21, 0x43,0x29,0x5e,0xd7,0x2e,0x60,0x5,0x0,0xff,0x3,0xf0,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf1,0x42,0x29,0x5e,0x2b,0x23,0xf5,0x31,0x0,0xbe,0xb2,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x80,0xb1,0x7,0x3f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x91,0x1d, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x43,0x29,0x5e,0x3c,0xe7,0xae,0x35,0x0, 0x84,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6, 0x30,0x0,0xcf,0x47,0x3a,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62, 0x1,0x33,0x39,0x0,0x46,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0xa2,0x2a, 0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x85,0x7b,0xc5,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x0,0xdb,0xa2,0x64,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xc0,0xab,0x27,0x16,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0xe,0x13,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0,0x43,0x27, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x0, 0x6e,0x5b,0x4c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70, 0x15,0x0,0x82,0xbb,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c, 0x12,0xd6,0x30,0x80,0xe4,0x73,0x66,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0x42,0x29, 0x5e,0xb2,0x95,0x22,0x6,0x0,0xe7,0x55,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x80,0xfc,0x98,0x64,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xe0,0xb6,0xbe,0x18,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0x3,0xff,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4d,0x42,0x29,0x5e,0xd7,0x30,0x1b,0x16,0x0,0x5d,0x88, 0xa8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x42,0x29,0x5e,0x3b,0xbd,0x9c,0x2b,0x0, 0x70,0xa2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7, 0x1f,0xe0,0x3a,0xdf,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0x5,0xa7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa, 0x5d,0x40,0x20,0x69,0x19,0x0,0x73,0x3f,0x50,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0xc0,0xa0,0xe4,0x39,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0xa0,0x37,0xc,0x14,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xc0,0x7,0xfc,0x10,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x14,0x43,0x29,0x5e,0x94,0x3e,0xef,0x22,0x0,0x4c,0x1d, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0, 0x14,0xb2,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40,0x20,0x69, 0x19,0x80,0xed,0x26,0x7c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96, 0x33,0x32,0x2f,0x0,0xb0,0x51,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e, 0x5e,0x1c,0x12,0xd6,0x30,0x0,0x65,0x9d,0x45,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x76, 0x42,0x29,0x5e,0x2d,0xe0,0x26,0x1e,0x0,0x10,0x81,0xa9,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x40,0x13,0x11,0x3d,0x2c,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x56,0x42,0x29,0x5e,0x38,0xb5,0x2,0x1b,0x0,0x50,0x29,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa4,0x55,0x29,0x5e,0x1e,0xac,0x5d,0x2c,0x80,0x86,0x5d, 0x75,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x40, 0x2e,0xf8,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6, 0x30,0xb0,0x51,0x2c,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41, 0xd,0x6b,0x2e,0x0,0x78,0xa2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98,0x42,0x29, 0x5e,0x24,0xf8,0x10,0x4,0x0,0x59,0xcb,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3, 0x42,0x29,0x5e,0x93,0x4,0x98,0xc,0x0,0xa5,0xd4,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x60,0x42,0x29,0x5e,0x6,0xbc,0xe1,0x2d,0x0,0xfa,0xe0,0xaf,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0xe0,0x14,0x74,0x1a,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0xac,0x48, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x80, 0xff,0xd9,0x48,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b, 0x2e,0x0,0xd4,0x1a,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x78,0x2f,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29, 0x5e,0xb,0xaf,0x1e,0x2c,0x0,0x65,0xbb,0xab,0x4,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf, 0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x50,0xe8,0x62,0x6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe5,0x42,0x29,0x5e,0xeb,0xc6,0x70,0x15,0x0,0x2c,0x7c,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0xa0,0x2,0xcc,0x12,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb7,0x42,0x29,0x5e,0xdb,0x4e,0xfc,0x7,0x0,0x56,0x54, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x0, 0x87,0xb8,0x45,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29,0x5e,0xa7,0x8b,0xd6, 0x9,0x0,0x3a,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84, 0x84,0xe3,0x16,0x0,0xf2,0x18,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb, 0x5d,0x71,0xd3,0xe7,0x1f,0xc0,0xf6,0x39,0x21,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0xc0,0x60,0xb9,0x3b,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0xe5,0x36,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc0,0x55,0x29,0x5e,0x70,0x93,0xa,0x11,0x0,0x26,0x6a,0xa3,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0,0xc8,0xaa, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80, 0xcf,0xf,0x6b,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a, 0x1a,0x0,0xd6,0x95,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78, 0x51,0x1f,0x1b,0x0,0xf4,0x78,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0x42,0x29, 0x5e,0x10,0xab,0x9f,0x1c,0x0,0xac,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22, 0x43,0x29,0x5e,0x97,0x3e,0xf8,0x29,0x0,0x2e,0x74,0xae,0x4,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0x83,0xb5,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0x81,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd,0x27,0x94,0xc,0x0,0x7d,0x1c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85,0x43,0x6a,0x1b,0x0, 0x7e,0xad,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e, 0x36,0x60,0x74,0x5b,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d,0x42,0x29,0x5e,0xee, 0x8,0xdd,0x2c,0x0,0x78,0xa6,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x80,0xca,0xed,0x3c,0x8,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf, 0x41,0x29,0x5e,0xf1,0x50,0x5a,0x3,0x0,0xc2,0xec,0xcf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0,0x41,0xe2,0xf4,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x22,0x43,0x29,0x5e,0x97,0x3e,0xf8,0x29,0x0,0x13,0xaa,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x40,0xab, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0, 0xc3,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2, 0x3,0x0,0xb2,0x60,0xfe,0x8,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62, 0x1,0x33,0x39,0x0,0x6e,0xf9,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0x42,0x29, 0x5e,0x1b,0xd1,0x1f,0x16,0x0,0x25,0xad,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0xe9,0xf4,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2,0x3,0x0,0xda,0x43,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0,0x9e,0x1c,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0x3,0x59, 0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0, 0x58,0x4f,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x63,0x42,0x29,0x5e,0x3c,0x4,0xf2, 0x2,0x0,0x3c,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0x94,0x6e,0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x31,0x42,0x29, 0x5e,0x23,0xce,0x11,0x1d,0x0,0x58,0xfe,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x40,0x67,0xd0,0x16,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x9a,0x28,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x78,0x31,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0xe4,0x9a, 0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x80, 0x81,0xb0,0x24,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d, 0x6,0x80,0x29,0xea,0x47,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0xd7,0x89,0xe0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3f,0x42,0x29, 0x5e,0xc2,0x59,0xc8,0x6,0x0,0xa0,0xf9,0xc1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x47,0x95,0xf0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e,0x2c,0x0,0xd,0x15,0xe9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb,0x68,0xd7,0x1f,0x0,0x2d,0x2e,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0x37,0x13, 0xf1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0xb1,0x27,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0x64,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3, 0x48,0x77,0x18,0x0,0x20,0x44,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29, 0x5e,0xdf,0xf,0xa1,0x1e,0x0,0x39,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91, 0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x80,0x71,0xbb,0x42,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xa0,0xfd,0x4,0x1f,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0,0xc7,0x2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0xa0,0xd4,0x5d, 0x13,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0, 0x7d,0xda,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x57,0x29,0x5e,0x47,0x25,0x2c, 0x21,0x0,0xb9,0xb6,0xdf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6,0x42,0x29,0x5e,0xc4, 0xfa,0x1b,0x3a,0x0,0x62,0x72,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc,0x42,0x29, 0x5e,0xb2,0x95,0x22,0x6,0x0,0xbb,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x80,0x47,0x11,0x40,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x84,0x84,0x25,0x5e,0x5a,0x2b,0xec,0xd,0x40,0x1d,0x88,0x1f,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x13,0x43,0x29,0x5e,0xd6,0xae,0x40,0x1a,0x0,0x14,0x1e,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xf7,0x3e, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0, 0x92,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x43,0x29,0x5e,0x3c,0xe7,0xae, 0x35,0x0,0x99,0xc6,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd, 0x3,0x14,0x3b,0x0,0xb8,0x39,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29, 0x5e,0x18,0x63,0x66,0x29,0x0,0xb2,0x37,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9, 0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x34,0x1e,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x13,0x43,0x29,0x5e,0xd6,0xae,0x40,0x1a,0x0,0x5f,0xf,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd4,0xb4,0xf4,0x5d,0x14,0x8c,0xc2,0x28,0x0,0xea,0x73,0x98,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40,0x20,0x69,0x19,0x0,0xe3,0xa1, 0x48,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x42,0x29,0x5e,0x54,0x85,0xee,0x21,0x0, 0x2b,0x1e,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32, 0x2f,0x0,0xcb,0x22,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0xde,0x28,0xf0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x75,0xef, 0x5d,0xdb,0x80,0x1e,0x36,0x40,0xa2,0x99,0x1e,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc1, 0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x43,0xb6,0xd1,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf8,0x42,0x29,0x5e,0xea,0x1c,0xeb,0x6,0x0,0x87,0x1d,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6c,0x42,0x29,0x5e,0x73,0x39,0x14,0xe,0x0,0xad,0xe5,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0xe0,0xa2,0x21, 0xa,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0, 0xa6,0x11,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb, 0x3,0x0,0x61,0x1c,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96, 0x33,0x32,0x2f,0x0,0x1,0x1f,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98,0x42,0x29, 0x5e,0x24,0xf8,0x10,0x4,0x0,0x4,0x20,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50, 0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xd5,0x60,0xe9,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0x65,0x1d,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xea,0x35,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc5,0x42,0x29,0x5e,0xb3,0x23,0xf3,0x37,0x0,0x6e,0x14, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0, 0x5d,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd5,0x42,0x29,0x5e,0x84,0xad,0xe8, 0x36,0x0,0x9c,0x28,0xf0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0x4c,0x31,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29, 0x5e,0xa7,0x8b,0xd6,0x9,0x0,0xa3,0x21,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0xe3,0xae,0xdf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xb8,0xb1,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7,0x88,0x56,0x33,0x0,0x2c,0x2a,0xf0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x76,0x42,0x29,0x5e,0x2d,0xe0,0x26,0x1e,0x80,0x57,0x79, 0x79,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0, 0xed,0x58,0xa1,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdc,0x42,0x29,0x5e,0xc,0x6,0x26, 0xc,0x0,0xac,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0xe1,0x2e,0x5e,0xaf, 0xeb,0x36,0x3,0x0,0x73,0xa1,0x70,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0x43,0x29, 0x5e,0xae,0x59,0x1d,0x11,0x0,0x9d,0xfc,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x71, 0xff,0x28,0x5e,0xd5,0x23,0x49,0x3a,0x0,0xca,0x35,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5c,0x42,0x29,0x5e,0x4e,0xaa,0x21,0x2e,0x0,0x36,0xb0,0x86,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x33,0xff,0x28,0x5e,0x8a,0xde,0xab,0x18,0x80,0xe9,0xec,0x5a,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0x79,0xee, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf,0x43,0x29,0x5e,0xbf,0x1d,0x28,0x1a,0x0, 0x91,0xf6,0xd1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3,0xa0,0x16, 0xe,0x0,0x9d,0x5e,0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14,0x43,0x29,0x5e,0x94, 0x3e,0xef,0x22,0x0,0x62,0x1,0xa8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96,0xfe,0x28, 0x5e,0x2b,0x43,0x22,0x2c,0x0,0xdb,0xae,0x58,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x80,0xfb,0x9d,0x63,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x0,0xe4,0xe8,0x6a,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92,0x16,0x0,0xae,0x50,0xa1,0x7, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7,0x1f,0x20,0xb3,0x82, 0x8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x80, 0x54,0xc3,0x5e,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85,0x43,0x6a, 0x1b,0x0,0x8a,0x81,0xa8,0x9,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc, 0x2c,0xc8,0x12,0x0,0x4b,0x15,0xf0,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x41,0x29, 0x5e,0x4a,0x90,0xdd,0x14,0x0,0x80,0x39,0x93,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x0,0xa9,0xe3,0x4b,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0x40,0xbe,0xe6,0x21,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0xa0,0xd1,0x47,0x7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80,0xd8,0x1d, 0x49,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3,0xa0,0x16,0xe,0x0, 0xc,0xdb,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7, 0x1f,0x0,0xe2,0xe1,0x4b,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40, 0x20,0x69,0x19,0x80,0x30,0xcd,0x43,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x0,0x7,0x8a,0x42,0xc,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x95,0xf3,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0,0x47,0xf5,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0x3d,0xc6,0xc8,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0xfb,0x4a, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0, 0xc4,0x21,0xbf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45, 0x30,0x0,0x19,0xbb,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x48,0xff,0x28,0x5e,0x7e, 0xfd,0x20,0xe,0x0,0x99,0xe,0xa8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe7,0x42,0x29, 0x5e,0x8c,0xc3,0xe5,0x22,0x0,0xff,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbe, 0x42,0x29,0x5e,0xe3,0x67,0x9f,0x1e,0x0,0xa1,0x71,0xa0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf8,0x42,0x29,0x5e,0xea,0x1c,0xeb,0x6,0x0,0x2f,0x2,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4c,0xff,0x28,0x5e,0x5,0xd7,0x5f,0x36,0x0,0x69,0x92,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xd,0x5c, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0, 0xb0,0x2b,0x93,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf,0x42,0x29,0x5e,0x6,0x2,0xdb, 0x25,0x0,0x78,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa,0x43,0x29,0x5e,0xf, 0x89,0xed,0x11,0x0,0x48,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x80,0x1a,0xf8,0x47,0xf,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0xa0,0xbb,0xb,0xe,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf7,0xff,0x28,0x5e,0x67,0x4a,0x9d,0x2e,0x0,0x85,0xf4,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc7,0x42,0x29,0x5e,0xfb,0x8c,0x21,0x25,0x0,0x63,0x3e,0xaa,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0x8c,0xe4, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2b,0x43,0x29,0x5e,0x5a,0xe2,0xd7,0xf,0x0, 0xea,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb,0x5d,0x71,0xd3,0xe7, 0x1f,0x0,0xc4,0xe6,0x42,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0xff,0x28,0x5e,0x72, 0x4b,0xf2,0x1e,0x80,0x74,0x2b,0x7f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28, 0x5e,0x92,0xb1,0x45,0x30,0x0,0x7a,0xee,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x5,0xee,0xa0,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf,0x75,0xef,0x5d,0xdb,0x80,0x1e,0x36,0xe0,0xe8,0xf9,0x10,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x80,0xf9,0x4d,0x7c,0x4, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x44,0x43,0x29,0x5e,0x7e,0x65,0x6,0x2d,0x0,0xd6,0xf, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xec,0x42,0x29,0x5e,0xb1,0xd5,0x72,0x36,0x0, 0xec,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45, 0x30,0x0,0x5f,0xcf,0x9b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf, 0x85,0x2,0x9,0x0,0x61,0xde,0x9f,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e, 0x5e,0x1c,0x12,0xd6,0x30,0x0,0x4a,0x81,0x45,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0xe0,0xfc,0xa0,0x1a,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0x67,0x53,0xa1,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x39,0x43,0x29,0x5e,0xed,0xa7,0xe0,0x1b,0x0,0x83,0x26,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0xc0,0x9, 0xe0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0xff,0x28,0x5e,0x6b,0xfe,0x7b,0x16,0x0, 0xf1,0xf3,0xa0,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc, 0x1e,0x0,0xd0,0xa3,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe4,0x42,0x29,0x5e,0x6c, 0xfa,0xc2,0x2e,0x0,0x92,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa, 0x5d,0x40,0x20,0x69,0x19,0x80,0xd0,0xea,0x4b,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x60,0xff,0x5,0x1a,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0xde,0xeb,0xef,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x3a,0x56,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xcc,0x76, 0xb2,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x43,0x29,0x5e,0xf0,0xd5,0xd6,0x7,0x0, 0x40,0xf9,0x79,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2f,0x43,0x29,0x5e,0xaa,0x2a,0x47, 0x11,0x0,0x95,0xf0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85, 0x43,0x6a,0x1b,0x0,0xaf,0x64,0xc1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x33,0xff,0x28, 0x5e,0x8a,0xde,0xab,0x18,0x0,0x89,0x4c,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x11, 0x0,0x29,0x5e,0xa0,0x94,0x1e,0x1b,0x0,0x3b,0x5b,0xd3,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0x38,0x45,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc9,0xff,0x28,0x5e,0xba,0x12,0xe5,0x21,0x0,0xe9,0x79,0x66,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c,0x12,0xd6,0x30,0x40,0xc,0x11, 0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0, 0xd6,0xee,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xc7,0x76,0x73, 0x7,0x0,0xcc,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x38,0xff,0x28,0x5e,0xc, 0xdc,0xa6,0x27,0x0,0x95,0x4f,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0xff,0x28, 0x5e,0x72,0x4b,0xf2,0x1e,0x80,0x86,0x85,0x7b,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86, 0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x6b,0x3,0x5f,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x1f,0x5d,0xa1,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x44,0x43,0x29,0x5e,0x7e,0x65,0x6,0x2d,0x0,0xaa,0xf0,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0xa8,0xdb, 0xa0,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28,0x5e,0x4c,0x64,0x91,0x18,0x0, 0xed,0x58,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84, 0xc,0x0,0xcc,0x80,0xd3,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x49,0x43,0x29,0x5e,0x10, 0xc3,0xe,0x36,0x0,0x80,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xda,0x42,0x29, 0x5e,0xf,0x31,0x84,0x1d,0x0,0x1,0x3,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b, 0x43,0x29,0x5e,0x43,0x5b,0xec,0x2b,0x0,0xfa,0xf1,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2,0x9,0x0,0x32,0x5e,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4,0xff,0x28,0x5e,0x86,0x63,0xef,0xd,0x80,0x65,0xc6,0x61,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8b,0xff,0x28,0x5e,0x13,0xee,0x3e,0x32,0x0,0x8a,0x93, 0x9f,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28,0x5e,0x4c,0x64,0x91,0x18,0x0, 0x42,0x3a,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d, 0x6,0x80,0x7b,0xd4,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0xd3,0x1e,0x5e,0x1c, 0x12,0xd6,0x30,0xc0,0xbe,0x58,0x7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28, 0x5e,0x4c,0x64,0x91,0x18,0x0,0x28,0xe7,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0xc2,0x76,0xc7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0xc9,0xf0,0xa7,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd7,0x42,0x29,0x5e,0xad,0x63,0xd5,0x3,0x0,0xea,0x3,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x73,0x42,0x29,0x5e,0xa5,0x8a,0xf,0x28,0x0,0xc9,0xd9, 0x9e,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0, 0x1f,0x5f,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2,0x3,0x33, 0xb,0x0,0x9a,0xcb,0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x59,0xff,0x28,0x5e,0xaa, 0x7c,0x5,0x6,0x0,0xd5,0x8a,0x95,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4c,0xff,0x28, 0x5e,0x5,0xd7,0x5f,0x36,0x0,0x86,0x52,0x9d,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81, 0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xcb,0x8e,0x9f,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xce,0xff,0x28,0x5e,0xad,0x3e,0x52,0x2a,0x0,0xbd,0xc2,0x7f,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x68,0xff,0x28,0x5e,0xd6,0x4b,0x67,0x2e,0x0,0x64,0xdf,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x15,0xca, 0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0, 0x79,0x1,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc5,0x42,0x29,0x5e,0xb3,0x23,0xf3, 0x37,0x0,0xb7,0x92,0xe5,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xa2,0x2a,0x5e,0x38, 0x82,0xb,0x12,0x0,0x4a,0xa7,0xc3,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5e,0xff,0x28, 0x5e,0xc5,0xf5,0x46,0x13,0x0,0x52,0xee,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c, 0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0,0x99,0x4b,0xa0,0x3,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88,0x27,0x0,0x11,0x4b,0xa0,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0xb9,0xcb,0x89,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0x9c,0x91, 0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xff,0x28,0x5e,0x1f,0xc3,0xe8,0x38,0x0, 0x30,0xe6,0xc8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x45,0x43,0x29,0x5e,0x7d,0x33,0x1d, 0x35,0x0,0xe6,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x80,0xdb,0x30,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdd,0x62,0xfb, 0x5d,0x71,0xd3,0xe7,0x1f,0x80,0x65,0xe9,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x0,0x4a,0xd9,0x42,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x33,0xff,0x28,0x5e,0x8a,0xde,0xab,0x18,0x0,0x70,0x86,0xa0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x46,0x42,0x29,0x5e,0x2c,0xb3,0xda,0x1,0x0,0x13,0xa5,0xaf,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0,0xcc,0xc6, 0x82,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x43,0x29,0x5e,0xa2,0x46,0x66,0x22,0x0, 0xd2,0xf,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0x52,0x29,0x5e,0xe9,0xdb,0x2, 0x3,0x0,0x68,0xbd,0xf4,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3, 0xa0,0x16,0xe,0x0,0x45,0xe6,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29, 0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x6b,0xc8,0xbc,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x96, 0xff,0x28,0x5e,0x5e,0x48,0x65,0x6,0x0,0xe4,0xf3,0xa0,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x0,0x49,0xf9,0xa,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x39,0xff,0x28,0x5e,0x7f,0x13,0xc7,0x2f,0x0,0xee,0x5a,0xa1,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x57,0xff,0x28,0x5e,0x96,0x9f,0x53,0x38,0x0,0xd5,0xbb, 0x8b,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0x3,0x48,0x77,0x18,0x0, 0x30,0x13,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x47,0x0,0x29,0x5e,0xee,0x4a,0xf5, 0x23,0x0,0x72,0xe1,0x59,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0x0,0x29,0x5e,0x6c, 0xe6,0x5a,0x2e,0x0,0x8a,0x1,0x56,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28, 0x5e,0x2,0xc2,0xfc,0x1e,0x0,0x9f,0x73,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef, 0xfe,0x28,0x5e,0x10,0x4f,0x32,0x10,0x80,0x89,0x1,0x7f,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0xa1,0x1,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xba,0xff,0x28,0x5e,0xa9,0xa0,0x1c,0x5,0x80,0x9e,0x35,0x6f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28,0x5e,0x4c,0x64,0x91,0x18,0x0,0xfa,0x14, 0xa1,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5d,0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0, 0xb4,0x86,0xc3,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x48,0xff,0x28,0x5e,0x7e,0xfd,0x20, 0xe,0x0,0x15,0x36,0xa1,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2,0x0,0x29,0x5e,0x16, 0x89,0x56,0x3,0x0,0xb2,0x52,0x7c,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd3,0x42,0x29, 0x5e,0x75,0xdd,0x37,0x3,0x0,0x6a,0x93,0x86,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x46, 0x43,0x29,0x5e,0xf1,0xe,0xbb,0x20,0x0,0xfc,0x10,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0xd6,0xf,0xa8,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8c,0xff,0x28,0x5e,0x64,0x8f,0x5f,0x3a,0x0,0x1c,0x3a,0xa0,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1,0x42,0x29,0x5e,0x28,0x74,0xe5,0x1b,0x0,0x4e,0x85, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0x1e,0x7b,0x13,0x11,0x0, 0x6,0x86,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x42,0x29,0x5e,0x15,0x4b,0x99, 0x16,0x0,0x8,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0x42,0x29,0x5e,0x30, 0x11,0x35,0x16,0x0,0xb8,0xdc,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd9,0x41,0x29, 0x5e,0xb3,0x7c,0x9a,0x35,0x0,0xcc,0xdd,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1, 0x42,0x29,0x5e,0x28,0x74,0xe5,0x1b,0x0,0x80,0x68,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd4,0x41,0x29,0x5e,0x59,0x1a,0xc2,0x2b,0x0,0x6c,0x17,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1f,0x42,0x29,0x5e,0x52,0xc6,0x6d,0x10,0x0,0xcd,0xdd,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x30,0x42,0x29,0x5e,0xbb,0xf0,0xf7,0x30,0x0,0x42,0x8d, 0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12,0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0, 0x9,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2,0x42,0x29,0x5e,0xce,0xdb,0x80, 0x24,0x0,0x9,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb4,0x41,0x29,0x5e,0x56, 0xbb,0x2b,0x2,0x0,0x8,0x65,0xae,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x90,0xff,0x28, 0x5e,0x69,0xf0,0xf7,0x39,0x0,0xc9,0x50,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe2, 0x41,0x29,0x5e,0xfa,0x32,0x7,0x1c,0x0,0xd,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1f,0x42,0x29,0x5e,0x52,0xc6,0x6d,0x10,0x0,0xff,0xdd,0xaf,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x32,0x42,0x29,0x5e,0x53,0xe8,0x59,0x25,0x0,0x68,0xd8,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92,0x16,0x0,0xc9,0x50, 0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0, 0x27,0xc6,0xae,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a, 0x13,0x0,0x1c,0x61,0xaa,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0xff,0x28,0x5e,0x64, 0xcc,0x8b,0x15,0x0,0xe6,0x40,0xa6,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe3,0x41,0x29, 0x5e,0x5b,0xbc,0x4f,0x24,0x0,0xf5,0xdd,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81, 0xff,0x28,0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xb8,0x50,0xa5,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe1,0x41,0x29,0x5e,0xa5,0x7e,0xe3,0x13,0x0,0xaa,0xdc,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x9,0xda,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf,0xe1,0xd3,0x1e,0x0,0x9a,0x3b, 0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x42,0x29,0x5e,0x38,0xec,0x99,0x2f,0x0, 0xc5,0xdd,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28,0x5e,0x2,0xc2,0xfc, 0x1e,0x0,0xb1,0x50,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86,0xff,0x28,0x5e,0x9, 0xa7,0x88,0x27,0x0,0x48,0x3a,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x42,0x29, 0x5e,0x15,0x4b,0x99,0x16,0x0,0xc6,0xdd,0xaf,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x14, 0x42,0x29,0x5e,0xeb,0x7c,0x70,0x38,0x0,0x54,0x68,0xae,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45,0x30,0x0,0x51,0x3a,0xa5,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5f,0x42,0x29,0x5e,0x23,0xc4,0x8,0x4,0x0,0xcb,0xdd,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf3,0x41,0x29,0x5e,0x81,0xfd,0x61,0x2a,0x0,0x45,0xad, 0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc,0x42,0x29,0x5e,0x7e,0x26,0x9a,0x37,0x0, 0x63,0x8e,0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28,0x5e,0x92,0xb1,0x45, 0x30,0x0,0xbd,0x50,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xcf,0x41,0x29,0x5e,0xf7, 0x63,0xce,0x20,0x0,0x9,0xda,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29, 0x5e,0x2,0xdf,0xdb,0x29,0x0,0x57,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6, 0x42,0x29,0x5e,0xc4,0xfa,0x1b,0x3a,0x0,0x44,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x6d,0xf3,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfc,0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x6d,0xf3,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29,0x5e,0x2,0xdf,0xdb,0x29,0x0,0x45,0xf5, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf2,0x42,0x29,0x5e,0xfb,0xf,0xaa,0x3a,0x0, 0x45,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf1,0x42,0x29,0x5e,0x2b,0x23,0xf5, 0x31,0x0,0x6c,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x0,0x43,0x29,0x5e,0x5e, 0xc9,0x34,0x6,0x0,0x6c,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf2,0x42,0x29, 0x5e,0xfb,0xf,0xaa,0x3a,0x0,0x6f,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef, 0x42,0x29,0x5e,0xe2,0xce,0x4e,0xb,0x0,0x59,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x6d,0xf3,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x44,0xf5,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x76,0xb1,0x42,0x5e,0x48,0x37,0x46,0x1b,0x0,0x9b,0xea, 0xc2,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x42,0x29,0x5e,0xea,0x1c,0xeb,0x6,0x0, 0x6c,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0x4d,0x7c,0x6e, 0xf,0x0,0x6f,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d, 0x4c,0x53,0x16,0x0,0x9b,0x4e,0xb8,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xff,0x28, 0x5e,0xd3,0xba,0x9e,0x3a,0x0,0x47,0x62,0x8f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf2, 0x42,0x29,0x5e,0xfb,0xf,0xaa,0x3a,0x0,0x4e,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0xe7,0x5e,0xc2,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfa,0x42,0x29,0x5e,0x22,0xeb,0xc3,0x38,0x0,0x74,0xf3,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x58,0xa, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf5,0x42,0x29,0x5e,0x51,0x94,0xcb,0x31,0x0, 0x70,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3,0x43,0x29,0x5e,0x6f,0x5f,0xb6, 0x37,0x0,0x8b,0xf3,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x0,0x43,0x29,0x5e,0x5e, 0xc9,0x34,0x6,0x0,0x50,0xc5,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29, 0x5e,0xc0,0x10,0x91,0xd,0x0,0x8c,0xf3,0xa7,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfc, 0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x48,0xf5,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x30,0x43,0x29,0x5e,0xc0,0x42,0x65,0x1a,0x0,0x6f,0xf3,0xa7,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x12,0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0,0x42,0xdd,0xac,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4,0x42,0x29,0x5e,0xc6,0x56,0xc1,0x14,0x0,0x16,0xd6, 0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2,0x9,0x0, 0xc8,0x30,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xed,0x41,0x29,0x5e,0x6a,0xa,0x3b, 0x37,0x0,0xe3,0x6,0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xeb,0x41,0x29,0x5e,0xbe, 0x97,0x35,0x27,0x0,0xd9,0xd9,0xaf,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6c,0xff,0x28, 0x5e,0x92,0xb1,0x45,0x30,0x0,0xc5,0x30,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5d, 0xff,0x28,0x5e,0x6b,0x14,0x3e,0x9,0x0,0xe9,0x30,0xa5,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1,0x42,0x29,0x5e,0x28,0x74,0xe5,0x1b,0x0,0x4c,0xd6,0xaf,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4d,0xff,0x28,0x5e,0xc0,0x1f,0x5,0x1c,0x0,0xc1,0x30,0xa5,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x47,0x42,0x29,0x5e,0xc7,0xab,0x3,0x8,0x0,0xd1,0x15, 0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xce,0xff,0x28,0x5e,0xad,0x3e,0x52,0x2a,0x0, 0x19,0x48,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x86,0xff,0x28,0x5e,0x9,0xa7,0x88, 0x27,0x0,0x51,0x41,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x42,0x29,0x5e,0x40, 0xc,0xb6,0xb,0x0,0xaa,0x7c,0xa9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26, 0x5e,0x1c,0xc7,0xdf,0x4,0x0,0x35,0xe5,0x10,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0xc0,0x4e,0x29,0x32,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x90,0xff,0x28,0x5e,0x69,0xf0,0xf7,0x39,0x0,0x89,0x45,0xa6,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x0,0x55,0xe1,0x42,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xaa,0xff,0x28,0x5e,0x86,0x11,0xd0,0x27,0x0,0xb4,0x30, 0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x80, 0xa3,0xb,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0xff,0x28,0x5e,0x86,0x11,0xd0, 0x27,0x0,0x3b,0xdd,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x17,0xfa,0x5d,0x40, 0x20,0x69,0x19,0xc0,0xb2,0x8,0x3d,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x43,0x29, 0x5e,0x97,0x3e,0xf8,0x29,0x0,0xe0,0x6,0xb1,0xb,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0xff,0x28,0x5e,0x86,0x11,0xd0,0x27,0x0,0xc7,0x30,0xa5,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x77,0xff,0x28,0x5e,0xf,0x85,0x2,0x9,0x0,0xc0,0x3a,0xa6,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe8,0x41,0x29,0x5e,0x53,0x6,0xe1,0x2e,0x0,0x6a,0xd8,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xa0,0xff,0x28,0x5e,0xc,0x1b,0x92,0x16,0x0,0xae,0x30, 0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x41,0x29,0x5e,0x5c,0x7d,0x8c,0x28,0x0, 0xe,0xdb,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7, 0x19,0x48,0x26,0x4f,0x7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8b,0xff,0x28,0x5e,0x13, 0xee,0x3e,0x32,0x0,0x54,0x31,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29, 0x5e,0x75,0xd1,0x5,0x0,0x0,0xe5,0xa2,0xfc,0xf,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80,0x17,0x21,0x14,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x80,0x29,0xda,0x42,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x5e,0x41,0x29,0x5e,0x7a,0x2b,0x45,0x1a,0x0,0x3e,0xd6,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x0,0x4e,0x30, 0x32,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25,0x5e,0x28,0xfe,0x2d,0x6,0x80, 0x5f,0x4e,0x25,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0xd3,0x26,0x5e,0x1c,0xc7,0xdf, 0x4,0xe0,0x5c,0xab,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x80,0x18,0xab,0x32,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x84,0x25, 0x5e,0x28,0xfe,0x2d,0x6,0x80,0xff,0xea,0x42,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc4, 0xff,0x28,0x5e,0xc,0xb5,0x7f,0x1a,0x80,0x6,0xbd,0x5c,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0xda,0x60,0xa6,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xdd,0x41,0x29,0x5e,0xb,0x3e,0xd5,0x12,0x0,0xb9,0xf1,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xfe,0x41,0x29,0x5e,0x1b,0x1d,0x93,0x4,0x0,0x0,0x90, 0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5e,0x56,0x29,0x5e,0x33,0xa,0x88,0x33,0x80, 0x27,0x3,0x7b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xee,0x41,0x29,0x5e,0xa4,0xf6,0x95, 0x20,0x0,0xc6,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7, 0x3d,0x5d,0x14,0xc0,0xf2,0x8e,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x67,0xff,0x28, 0x5e,0x80,0x3e,0x6e,0x25,0x0,0x11,0xe1,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x40,0x19,0xfd,0x1a,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x40,0x8a,0x49,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x40,0x3b,0xa7,0x3f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x52,0xff,0x28,0x5e,0x42,0x6d,0xd0,0x29,0x0,0xa,0x48, 0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc0,0x41,0x29,0x5e,0x8f,0x83,0x20,0x6,0x0, 0xb2,0xdb,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x42,0x29,0x5e,0x64,0x4,0x42, 0x16,0x0,0x66,0xae,0xb1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xce,0xff,0x28,0x5e,0xad, 0x3e,0x52,0x2a,0x0,0xf1,0x68,0xa5,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c, 0x5e,0xa7,0x3d,0x5d,0x14,0x0,0xf2,0x1d,0x1f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24, 0xd3,0x26,0x5e,0x1c,0xc7,0xdf,0x4,0x0,0xbf,0xf5,0x47,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x20,0xb8,0x36,0xd,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0,0xad,0xdb,0xaf,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x68,0x42,0x29,0x5e,0x98,0xe1,0x6e,0xd,0x0,0x26,0xe7, 0xaf,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0xb7,0xe1,0xb0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f, 0x7,0x0,0x6f,0xea,0x39,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7, 0x3d,0x5d,0x14,0xc0,0xc,0x64,0x1d,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb, 0x5d,0x6e,0xb9,0x8f,0x7,0xe0,0xd0,0x21,0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8, 0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x80,0x9c,0x88,0x17,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x80,0xd8,0xe8,0x46,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x40,0x15,0xcf,0x1a,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0x80,0x6c,0xdf, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x0, 0x2,0xb9,0x41,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe7,0x6c,0x2c,0x5e,0xf8,0x76,0x94, 0xe,0x0,0x6e,0x6f,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x20,0x1c,0xed,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb, 0x5d,0x6e,0xb9,0x8f,0x7,0xd0,0xbb,0x1d,0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8, 0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x40,0x36,0x29,0x1c,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x0,0x7d,0xc9,0x16,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0xa0,0xde,0x52,0x12,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0xc0,0xc5,0x2, 0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x60, 0xc8,0x2b,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa, 0xe,0x0,0x93,0x81,0xa2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d, 0xb0,0xa7,0x19,0x0,0x6c,0xe3,0x4d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28, 0x5e,0x25,0xde,0xa,0xe,0x40,0xc6,0x36,0x29,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe8, 0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x0,0x49,0xa8,0x15,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x80,0x5a,0x23,0x1c,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4b,0x92,0x1c,0x5e,0x2d,0xb0,0xa7,0x19,0xc0,0x48,0x40,0x28,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0xb5,0xdf, 0x42,0x7,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80, 0x98,0xe3,0x4b,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x90,0xff,0x28,0x5e,0x69,0xf0,0xf7, 0x39,0x0,0x11,0x48,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e, 0xb9,0x8f,0x7,0x0,0xc8,0x26,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x62,0xff,0x28, 0x5e,0x4c,0x64,0x91,0x18,0x0,0x14,0x68,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc8, 0x41,0x29,0x5e,0x5d,0x99,0xcf,0x24,0x0,0x58,0xdc,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x67,0xff,0x28,0x5e,0x80,0x3e,0x6e,0x25,0x0,0xe,0x48,0xa5,0x3,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe7,0x41,0x29,0x5e,0xd1,0xcf,0x49,0x26,0x0,0xb0,0xdb,0xaf,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x9b,0xff,0x28,0x5e,0xc3,0xa0,0x16,0xe,0x0,0x56,0x69, 0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0, 0x1b,0x1f,0xb0,0x4,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1c,0x42,0x29,0x5e,0x27,0x42,0x6e, 0x17,0x0,0xb3,0xdb,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa5,0xff,0x28,0x5e,0xcf, 0xe1,0xd3,0x1e,0x0,0x56,0x69,0xa5,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x81,0xff,0x28, 0x5e,0x2,0xc2,0xfc,0x1e,0x0,0xe,0x68,0xa5,0x3,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xdf, 0x57,0x2c,0x5e,0xa,0x2d,0x9f,0x11,0x0,0x48,0xa3,0x15,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf3,0x40,0x29,0x5e,0xd1,0x55,0xc2,0x34,0x0,0xb8,0xe1,0xb0,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0xd4,0xe9,0x43,0x12, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x90,0xec, 0x80,0x9,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4a,0xff,0x28,0x5e,0xd8,0x29,0x6d,0x21,0x0, 0xe4,0x6b,0xa0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x91,0x41,0x29,0x5e,0xce,0x76,0xe6, 0x28,0x0,0x6a,0xae,0x56,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x54,0x42,0x29,0x5e,0x2a, 0xe3,0xeb,0x2c,0x0,0x15,0xd6,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb0,0x41,0x29, 0x5e,0x7c,0xce,0x30,0x0,0x0,0x5d,0xdc,0xb0,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba, 0xff,0x28,0x5e,0xa9,0xa0,0x1c,0x5,0x0,0xe,0xb7,0x93,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x70,0xc4,0x2a,0x5e,0x8c,0xd2,0xee,0x18,0x80,0xff,0x4c,0x6b,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xff,0x41,0x29,0x5e,0xa0,0xc3,0x37,0xb,0x0,0xb2,0xa4,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb1,0x41,0x29,0x5e,0x31,0x60,0xb0,0x2d,0x0,0x2e,0x84, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x82,0x0,0x29,0x5e,0x21,0x89,0x40,0x0,0x0, 0xdd,0xf0,0xe6,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe1,0x41,0x29,0x5e,0xa5,0x7e,0xe3, 0x13,0x0,0x97,0xb9,0xab,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x63,0x0,0x29,0x5e,0xa, 0xc8,0x89,0x14,0x0,0x83,0xcc,0xbd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x41,0x29, 0x5e,0x7b,0xb1,0x4d,0x3,0x0,0x2d,0x84,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfb, 0x41,0x29,0x5e,0xb3,0x2,0x4e,0x17,0x0,0x6,0x86,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd9,0x41,0x29,0x5e,0xb3,0x7c,0x9a,0x35,0x0,0x6c,0xd8,0xb0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe7,0x6c,0x2c,0x5e,0xf8,0x76,0x94,0xe,0x0,0x48,0xbe,0x23,0x9, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x0,0x42,0x29,0x5e,0x96,0xaf,0x5b,0x13,0x0,0x49,0x84, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x0, 0xbd,0xea,0x4f,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0, 0x29,0x0,0x8d,0x5,0x21,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25, 0xde,0xa,0xe,0x0,0x79,0x99,0x6f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x41,0x29, 0x5e,0x10,0xb0,0x7f,0x27,0x0,0xd,0xdb,0xb0,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb, 0x42,0x29,0x5e,0x38,0xec,0x99,0x2f,0x0,0x2f,0x84,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0x32,0xb7,0x4a,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd9,0x41,0x29,0x5e,0x5b,0xa8,0xcc,0x10,0x0,0xc,0xdb,0xb0,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf,0x42,0x29,0x5e,0x4,0xd,0xd9,0x30,0x0,0xad,0x84, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x42,0x29,0x5e,0xc6,0x56,0xc1,0x14,0x0, 0x4f,0x85,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0x41,0x29,0x5e,0xe8,0x79,0x8e, 0x2a,0x0,0x9c,0xd4,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xab,0x41,0x29,0x5e,0xfe, 0xe8,0x29,0x1d,0x0,0x35,0xd7,0xaf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29, 0x5e,0x88,0xd8,0x6,0x9,0x0,0xf4,0xb2,0xa8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f, 0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x60,0x8e,0xa7,0x1f,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd,0x42,0x29,0x5e,0x7d,0xfe,0x9f,0x20,0x0,0x49,0xd7,0xb0,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf6,0x41,0x29,0x5e,0x29,0x9a,0x4d,0x0,0x0,0xd9,0xa2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd2,0x41,0x29,0x5e,0xee,0xc1,0x20,0x3a,0x0,0xee,0x86, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xed,0x67,0x2c,0x5e,0xd,0x23,0xca,0x20,0x0, 0xca,0x2,0x99,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91, 0xd,0x0,0x8,0x2e,0xf9,0xe,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf7,0x41,0x29,0x5e,0x41, 0xaa,0x8a,0x8,0x0,0xed,0x86,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x41,0x29, 0x5e,0x5c,0x7d,0x8c,0x28,0x0,0x25,0x87,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa, 0x42,0x29,0x5e,0xb5,0x58,0x4b,0x27,0x0,0xdc,0xdc,0xb0,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0xb0,0x8a,0xa8,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x60,0xe1,0xc1,0x16,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x0,0xf6,0x37, 0x18,0x9,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x42,0x29,0x5e,0xca,0x31,0xe0,0x28,0x0, 0x11,0x16,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x50,0xe2,0x4d,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0xdf,0xf5,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x80,0x84,0xd1,0x76,0x4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1, 0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80,0x51,0xe1,0x6a,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x49,0x92,0x5f,0x6,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0x89,0x1c,0x52,0x4, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0xdf,0xf5, 0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x0, 0x18,0xd6,0x96,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b,0x5e,0x2c,0x5e,0xd8,0x2,0xf, 0x16,0x40,0x7b,0x6d,0x15,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e, 0xb9,0x8f,0x7,0x40,0xea,0x28,0x16,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28, 0x5e,0x25,0xde,0xa,0xe,0x80,0x91,0xea,0x4b,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3, 0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0xbf,0x54,0x6b,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x60,0x40,0x83,0x8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x50,0x23,0x30,0xd,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x60,0xe0,0xb0, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80, 0xe8,0x8e,0x2c,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a, 0x13,0x80,0xf8,0x6,0x43,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f, 0xbf,0x0,0x29,0x80,0x4c,0xa9,0x7e,0xb,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb, 0x5d,0x6e,0xb9,0x8f,0x7,0x30,0xd7,0x16,0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0x68,0x2c,0x5e,0xf1,0x3a,0x83,0x20,0xe0,0x9c,0x5c,0x1b,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd9,0xe2,0x2e,0x5e,0x2d,0x5d,0x92,0xb,0xe0,0xdf,0x15,0x10,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x4e,0x92,0x20,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0xca,0xb0, 0x64,0x5,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x0, 0x1e,0xe4,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x80,0x78,0xb6,0x68,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0x92,0xd0,0x82,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x0,0x69,0xa7,0x82,0x8,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1b, 0x57,0x2c,0x5e,0x1d,0x41,0x74,0x27,0x40,0x6d,0xfb,0x10,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0x69,0xa7,0x82,0x8,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0xc0,0xbe,0xa6,0x3f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0xce,0x20, 0x4d,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0, 0x1c,0x7,0x13,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c, 0x8,0x0,0x78,0xe7,0x4c,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0x7d,0xdc,0x4c,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x0,0xd3,0x97,0x5b,0x9,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x1e,0x19,0x4d,0x2,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0xf9,0x32,0x4f,0x3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x4c,0xd5,0x85,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x5f,0x2f, 0x14,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0, 0x5c,0xec,0x4c,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x40,0xf9,0xbf,0xf,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x80,0x1e,0x19,0x4d,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x80,0xfb,0x86,0x4e,0x1,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x0,0xe3,0xc4,0x83,0x1,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0,0xb5,0xb2,0x19,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0x33,0xe3,0x43,0x3, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe8,0x6c,0x2c,0x5e,0xa7,0x3d,0x5d,0x14,0x80,0xb1,0xbf, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x90, 0x9d,0x37,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa, 0xe,0x0,0xe1,0xe3,0xa2,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54, 0x8f,0x15,0x5,0x30,0xd7,0xe2,0xd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8, 0x5d,0xd3,0x4d,0xc9,0x18,0x40,0x68,0xc9,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f, 0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x0,0xe4,0xf9,0x42,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe7,0x6c,0x2c,0x5e,0xf8,0x76,0x94,0xe,0x60,0x71,0xba,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0xa0,0x4a,0xe,0x1b,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0x10,0xcb,0x3, 0xe,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x93,0x18,0xfa,0x5d,0x1b,0x60,0x25,0x1b,0x0, 0xcd,0xa1,0x52,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa, 0xe,0x80,0x97,0x91,0x6f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54, 0x8f,0x15,0x5,0x0,0xbf,0xeb,0x7a,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a, 0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x82,0xbb,0x3b,0xd,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3, 0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x0,0xb4,0xa3,0x64,0x2,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaf,0x61,0x2c,0x5e,0x4,0x50,0x7a,0xf,0x0,0x41,0x7e,0x99,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xad,0x2c,0xfb,0x5d,0x6e,0xb9,0x8f,0x7,0xa0,0x70,0x18,0x16,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0x31,0x8d, 0xa6,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0, 0x78,0xf3,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x80,0x0,0xca,0x7d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb, 0xe8,0x6a,0x13,0x20,0xe8,0x86,0x8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20, 0x5e,0x9f,0xbf,0x0,0x29,0x0,0x7d,0xf8,0x42,0x7,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8, 0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x0,0x19,0xa2,0x8,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0xfb,0xde,0x6c,0xb,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0,0xf1,0x31,0x7b,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x48,0x56,0x29,0x5e,0x91,0xdc,0x30,0x33,0x0,0x2f,0x17, 0x76,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x40, 0x31,0xbf,0x24,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9, 0x18,0x40,0x6e,0xd3,0x24,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25, 0xde,0xa,0xe,0x0,0xc6,0xe2,0x4b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x0,0x78,0xe7,0x4c,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8, 0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0,0xd6,0x8c,0x66,0x6,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x40,0x6c,0xe0,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x80,0x1b,0x9b,0x20,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x0,0xc9,0x1e, 0x14,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80, 0x81,0x59,0x6d,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c, 0x8,0x0,0x2a,0xca,0x82,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1, 0xb9,0x3c,0x8,0x0,0x69,0xc,0x9d,0xd,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0x1d,0xac, 0x57,0xb1,0xb9,0x3c,0x8,0x80,0x65,0xa9,0x72,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa, 0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x23,0xe,0x4d,0x7,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x1e,0x19,0x4d,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xaa,0x1d,0xac,0x57,0xb1,0xb9,0x3c,0x8,0x80,0x23,0xe,0x4d,0x8, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x90,0x44, 0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xad,0xa4,0x50,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0xc0,0x95,0x95,0x3d,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0xba,0xba,0x84,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xe9,0xb5,0xa9,0x9,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0xf1,0x6a,0x51,0x0,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba, 0x84,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xdc,0xca,0x85,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x80,0xf1,0x6a,0x51,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb, 0xe8,0x6a,0x13,0x40,0x57,0xe1,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x5,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0x40,0xd8,0xab,0x28,0x5, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xc0,0xc8,0xac, 0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xba,0xba,0x84,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0xdc,0xca,0x85,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0xdc,0xca,0x85,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba,0x84,0xc,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x1e,0x14,0x84,0x9,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x6,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x4, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6, 0x4f,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0x7d,0x3f,0x86,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0xf0,0x67,0x6d,0x4,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x3,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x1,0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x0,0xb1,0xf1,0x5a,0x2,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0xa, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba, 0x84,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0, 0x7e,0xfd,0x7d,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x2f,0xe6,0x4f,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb, 0xe8,0x6a,0x13,0x80,0x90,0xc6,0x3b,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20, 0x5e,0x9f,0xbf,0x0,0x29,0x0,0x0,0xb,0x48,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0xc,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x5, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x1e,0x14, 0x84,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xba,0xba,0x84,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9, 0x18,0x60,0xbf,0x86,0x8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x80,0x17,0xaa,0x75,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1,0x5,0x28, 0x5e,0x25,0xde,0xa,0xe,0x0,0x1d,0x83,0x58,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x44,0x2a,0x9f,0x8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0xb,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xdc,0xca, 0x85,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xdc,0xca,0x85,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x0,0x2f,0xe6,0x4f,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd9,0xe2,0x2e,0x5e,0x2d, 0x5d,0x92,0xb,0x80,0x2e,0x34,0x46,0x6,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba,0x84,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f,0x86,0x12,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0x9d,0x92,0x5f,0x1, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xba,0xba, 0x84,0xc,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf3,0x41,0x29,0x5e,0x81,0xfd,0x61,0x2a,0x0, 0xc,0xbc,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9, 0x1b,0x80,0x8d,0x11,0x52,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x80,0xf1,0x6a,0x51,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x8,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xfa,0xfd,0x86,0x3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x80,0x8d,0x11,0x52,0x0, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0x7d,0x3f, 0x86,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0, 0xaf,0x21,0x53,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20,0x5e,0x9f,0xbf,0x0, 0x29,0x40,0x40,0xec,0x2c,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20, 0xa8,0xf9,0x1b,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x1d,0xac, 0x57,0x20,0xa8,0xf9,0x1b,0x0,0x9c,0xd2,0x84,0x9,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8, 0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xaf,0x21,0x53,0x0,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xc0,0x8e,0xdd,0x12,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xb8,0x1d,0xac,0x57,0x20,0xa8,0xf9,0x1b,0x0,0xfa,0xfd,0x86,0x9, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0xd3,0x46, 0x46,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80, 0x8d,0x11,0x52,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0xf1,0x6a,0x51,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0xaf,0x21,0x53,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x0,0x7d,0x3f,0x86,0x4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1, 0x5,0x28,0x5e,0x25,0xde,0xa,0xe,0x80,0xa0,0x4b,0x6f,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0xc0,0xaf,0x72,0x39,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xaf,0x21,0x53,0xb, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11, 0x52,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x21,0xac,0x57,0xce,0xa8,0x72, 0x39,0x0,0xba,0xba,0x84,0x9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0x2f,0xe6,0x4f,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0xa,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3, 0x5e,0x20,0x5e,0x9f,0xbf,0x0,0x29,0xe0,0x6c,0xdf,0x12,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x80,0xe8,0xa3,0x5f,0x8,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0xb,0xd0,0x52,0xb, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11, 0x52,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0xdc,0xca,0x85,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0x8d,0x11,0x52,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3, 0x4d,0xc9,0x18,0xe0,0x70,0xb3,0x1f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x0,0xc6,0x6b,0x9e,0x9,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0x2f,0xe6,0x4f,0x6,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0x67,0x74,0xaa,0x3,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0xb,0xd0,0x52,0x8, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xec,0x20,0xac,0x57,0xc,0x63,0x18,0x35,0x0,0x7d,0x3f, 0x86,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80, 0xb2,0x95,0x5d,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x80,0x9,0x32,0x62,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86, 0x6c,0x3e,0x24,0x80,0xa9,0x3a,0x5d,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5f,0xee,0xc7, 0x57,0x69,0x39,0x62,0x33,0x40,0x6e,0x62,0x38,0x1,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d, 0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0x1,0x57,0x37,0x0,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0xc0,0xcd,0xbb,0x1f,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x68,0xee,0xc7,0x57,0x63,0xff,0xd5,0x6,0x80,0xb2,0x95,0x5d,0x2, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0x2c,0xe2, 0x38,0x8,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x65,0xee,0xc7,0x57,0xb4,0xa,0xf7,0x34,0x80, 0x76,0x7f,0x5c,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e, 0x24,0x80,0xde,0x98,0x37,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86, 0x6c,0x3e,0x24,0x0,0x84,0x1,0x5d,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7, 0x57,0x86,0x6c,0x3e,0x24,0x0,0x52,0xb8,0x5d,0xa,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d, 0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0x1,0x57,0x37,0x5,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80,0xf8,0x67,0x26,0x0,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x40,0x6e,0x62,0x38,0x7, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0xc0,0x4c,0x52, 0x37,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x80, 0xa9,0x3a,0x5d,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x61,0xee,0xc7,0x57,0xb0,0x67,0xd3, 0x5,0x80,0xb2,0x95,0x5d,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x63,0xee,0xc7,0x57,0xd8, 0x66,0x0,0x26,0x40,0x6e,0x62,0x38,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6d,0xee,0xc7, 0x57,0x86,0x6c,0x3e,0x24,0x40,0x6e,0x62,0x38,0x2,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8, 0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x20,0x32,0x96,0x8,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x6d,0xee,0xc7,0x57,0x86,0x6c,0x3e,0x24,0x0,0xd3,0x6e,0x38,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0x49,0x32,0x67,0x2, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6a,0xee,0xc7,0x57,0x62,0x54,0xe7,0xf,0x80,0x7b,0x74, 0x5c,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0xaf,0x21,0x53,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0xf1,0x6a,0x51,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0xfa,0xfd,0x86,0xb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb3,0x5e,0x20, 0x5e,0x9f,0xbf,0x0,0x29,0x80,0x26,0xa0,0x52,0x1,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xfa,0xfd,0x86,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xf6,0x69,0x4e,0x2,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xfa,0xfd,0x86,0x3, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x95,0x7e, 0x5e,0x3,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x33,0xf3,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0, 0xfa,0xfd,0x86,0xb,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48, 0x1f,0xc0,0x2d,0x31,0x3a,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42, 0x3e,0x48,0x1f,0x80,0x29,0x8,0x3b,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7, 0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x4,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x4,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x80,0x29,0x8,0x3b,0x4,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0xa0,0x89,0xb8,0x12,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x20,0x98,0xcd, 0x1f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0, 0x45,0xdf,0xa2,0x18,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48, 0x1f,0x80,0x95,0x7e,0x5e,0x7,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42, 0x3e,0x48,0x1f,0x80,0x95,0x7e,0x5e,0x2,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7, 0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x0,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0xf8,0xe7,0x77,0x2,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x0,0xc2,0xcc,0x62,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0xc0,0x2d,0x31,0x3a,0x1, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x80,0xdf,0x0, 0x70,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0xc4,0x2a,0x5e,0xdb,0xe8,0x6a,0x13,0x0, 0xa1,0x1,0x43,0x8,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48, 0x1f,0x0,0x3e,0xf9,0x5d,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42, 0x3e,0x48,0x1f,0x0,0x3e,0xf9,0x5d,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e, 0x5e,0x54,0x8f,0x15,0x5,0xa0,0x69,0x80,0x17,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0, 0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0x3e,0xf9,0x5d,0x3,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0x3e,0xf9,0x5d,0x1,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0x1e,0x14,0x84,0x9, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0xef,0xc7,0x57,0x42,0x3e,0x48,0x1f,0x0,0x1c,0xe9, 0x5c,0x6,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80, 0x8d,0x11,0x52,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x0,0x7d,0x3f,0x86,0x9,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3, 0x4d,0xc9,0x18,0xe0,0x31,0xa5,0x1f,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x0,0x7d,0x3f,0x86,0x3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x6,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x0,0x17,0xa4,0x1f,0x1,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x3, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0xca,0xe0, 0x62,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80, 0x8d,0x11,0x52,0xa,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2, 0x1e,0x80,0x8d,0x11,0x52,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3, 0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55, 0xa7,0xb2,0x1e,0x0,0x7d,0x3f,0x86,0x1,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac, 0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x3,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xc6, 0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0x1,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11,0x52,0xc,0x0,0x0, 0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x0,0xba,0xba,0x84,0x7, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xc6,0x1d,0xac,0x57,0x55,0xa7,0xb2,0x1e,0x80,0x8d,0x11, 0x52,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xe0, 0xe6,0xdb,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15, 0x5,0x40,0x4b,0x38,0x11,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3, 0x4d,0xc9,0x18,0xc0,0x2e,0xdf,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd8,0xe2,0x2e, 0x5e,0x54,0x8f,0x15,0x5,0x80,0x25,0x47,0x46,0x13,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8, 0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0x60,0x56,0x2d,0x14,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd8,0xe2,0x2e,0x5e,0x54,0x8f,0x15,0x5,0x80,0x82,0x8c,0x63,0x4,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8,0x95,0xf8,0x5d,0xd3,0x4d,0xc9,0x18,0xa0,0x17,0xd3,0x1f,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x36,0x8d,0xa1,0x57,0x8c,0xc8,0x1c,0x32,0x0,0xcd,0xcc, 0x4c,0x4,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x8d,0xa1,0x57,0x14,0x5a,0xdc,0x28,0x0, 0x5c,0x8f,0x82,0x5,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0xb1,0x42,0x5e,0xd5,0x17,0x82, 0x7,0x0,0x3c,0x92,0xc1,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba,0x42,0x29,0x5e,0x25, 0xdf,0xce,0x1f,0x0,0xbc,0x60,0xb2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xaa,0xae,0x42, 0x5e,0xec,0x6e,0x8f,0x20,0x0,0x93,0xe3,0xc2,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0x8d,0xb5,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf8,0x41,0x29,0x5e,0xa5,0x83,0xf2,0x34,0x0,0xa6,0xff,0xf0,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x47,0xb1,0x42,0x5e,0xb9,0x93,0xaf,0x1,0x0,0xb0,0xe3,0xc2,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xee,0x41,0x29,0x5e,0xa4,0xf6,0x95,0x20,0x0,0x13,0xb3, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29,0x5e,0x1e,0x7b,0x13,0x11,0x0, 0x88,0xb5,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x22,0x42,0x29,0x5e,0xc8,0xe7,0x5e, 0x8,0x0,0xb0,0xb2,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8c,0x6c,0x45,0x5e,0xa3, 0xfa,0x59,0x14,0x0,0xb0,0x18,0x76,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf8,0x41,0x29, 0x5e,0xa5,0x83,0xf2,0x34,0x0,0x3f,0xb7,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xee, 0x41,0x29,0x5e,0xa4,0xf6,0x95,0x20,0x0,0xdc,0xb1,0xa8,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x22,0x42,0x29,0x5e,0xc8,0xe7,0x5e,0x8,0x0,0x23,0xb7,0xa8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x17,0x42,0x29,0x5e,0xbb,0xea,0xb0,0x31,0x0,0xf6,0xb2,0xa8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf0,0x42,0x29,0x5e,0x2,0xdf,0xdb,0x29,0x0,0x67,0x1d, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0xb2,0x3,0x33,0xb,0x0, 0x24,0xb6,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e, 0xb,0x0,0x9a,0xcb,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0, 0xc1,0x39,0x32,0x0,0x23,0x1e,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29, 0x5e,0x6c,0x31,0x84,0xc,0x0,0x38,0x63,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c, 0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x87,0xe9,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0x6a,0x22,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x84,0x1c,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0,0x9a,0x28, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd,0x42,0x29,0x5e,0x7d,0xfe,0x9f,0x20,0x0, 0xcf,0x13,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3b,0x42,0x29,0x5e,0xb,0xaf,0x1e, 0x2c,0x0,0x92,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xa2,0x2a,0x5e,0x38, 0x82,0xb,0x12,0x0,0x80,0x88,0xc3,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7a,0x1f,0x2, 0x5e,0x9,0xbe,0x29,0x25,0x40,0x87,0xfe,0x19,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27, 0x43,0x29,0x5e,0x8f,0x5c,0x1a,0xd,0x0,0xe9,0x87,0xee,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x2f,0x22,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xbb,0x42,0x29,0x5e,0xf5,0x27,0x97,0x24,0x0,0xd6,0xf6,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf5,0x42,0x29,0x5e,0x51,0x94,0xcb,0x31,0x0,0x17,0x1e, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0x85,0x23,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33, 0x39,0x0,0x9b,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa1,0x42,0x29,0x5e,0x3b, 0xbd,0x9c,0x2b,0x0,0x1d,0xfd,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x42,0x29, 0x5e,0x41,0x9,0x12,0x26,0x0,0xe4,0xf6,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea, 0x57,0x29,0x5e,0x47,0x25,0x2c,0x21,0x0,0x8d,0xb6,0xee,0x1,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0xa2,0x2a,0x5e,0xbe,0x8c,0xc6,0xc,0x0,0x29,0x89,0xc1,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d,0xf9,0x1c,0x10,0x0,0x40,0xc3,0xc1,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x39,0x43,0x29,0x5e,0xed,0xa7,0xe0,0x1b,0x0,0xcf,0x1d, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7c,0x55,0x29,0x5e,0x95,0x82,0x6a,0x18,0x0, 0xaf,0x87,0x8f,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29,0x5e,0xcc,0x2c,0xc8, 0x12,0x0,0x7a,0x9e,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0xa0,0xca,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29, 0x5e,0x7,0xe0,0x11,0x25,0x0,0x62,0x28,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c, 0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0,0xee,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x1d,0xf6,0xa6,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x23,0xf8,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x79,0x1f,0x2,0x5e,0xa9,0x19,0xb8,0x20,0x0,0x4d,0x76, 0x4b,0x3,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0, 0x28,0xf8,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x42,0x29,0x5e,0x6,0xbc,0xe1, 0x2d,0x0,0x34,0x58,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x42,0x29,0x5e,0xe9, 0x27,0x60,0x0,0x0,0x4a,0xf5,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29, 0x5e,0x1,0x96,0xcf,0x24,0x0,0xc9,0xfc,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe, 0x42,0x29,0x5e,0x9c,0x70,0x12,0x39,0x0,0x4a,0xfb,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0xee,0xd1,0xdc,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xfd,0x42,0x29,0x5e,0x13,0x8d,0x8f,0xe,0x0,0x7d,0x75,0xdd,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xdb,0x42,0x29,0x5e,0xe8,0x1e,0xdb,0x3,0x0,0x34,0x22, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0, 0x3f,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39, 0x32,0x0,0xea,0xa,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd,0x42,0x29,0x5e,0x7d, 0xfe,0x9f,0x20,0x0,0x95,0xb5,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29, 0x5e,0x7d,0x4c,0x53,0x16,0x0,0xc2,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x43,0x29,0x5e,0x18,0x63,0x66,0x29,0x0,0xc3,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xa2,0x42,0x29,0x5e,0xb4,0x9b,0x65,0x12,0x0,0x3,0xf7,0xa6,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xd7,0xbc,0xee,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x5a,0x42,0x29,0x5e,0x86,0x68,0xf,0x1c,0x0,0x64,0x22, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd5,0x42,0x29,0x5e,0x84,0xad,0xe8,0x36,0x0, 0x87,0xa,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf6,0x42,0x29,0x5e,0xc4,0xfa,0x1b, 0x3a,0x0,0x5c,0xb5,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62, 0x1,0x33,0x39,0x0,0xb,0xf7,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29, 0x5e,0xf0,0x9d,0xc4,0x14,0x0,0x16,0x1e,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac, 0x42,0x29,0x5e,0x7,0xe0,0x11,0x25,0x0,0xd1,0xfc,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x4b,0x1f,0x2,0x5e,0x60,0x4f,0x1d,0x29,0xc0,0x2a,0xd8,0x19,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6d,0x42,0x29,0x5e,0x1b,0xd1,0x1f,0x16,0x0,0x36,0x13,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0x32,0x20, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0, 0xc3,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbc,0x42,0x29,0x5e,0x3a,0x57,0xf1, 0xd,0x0,0x2c,0x1c,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x31,0x42,0x29,0x5e,0x23, 0xce,0x11,0x1d,0x0,0xe1,0x5f,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29, 0x5e,0x9c,0x70,0x12,0x39,0x0,0x27,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x74, 0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0xb4,0xa,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0x27,0x1d,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53,0x16,0x0,0x81,0xb6,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x54,0x43,0x29,0x5e,0x1e,0x30,0x8b,0x8,0x0,0x24,0x7c, 0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0, 0x40,0xb7,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x98,0x42,0x29,0x5e,0x24,0xf8,0x10, 0x4,0x0,0xc6,0xd3,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88, 0xd8,0x6,0x9,0x0,0x27,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x29,0x42,0x29, 0x5e,0x8a,0x6d,0xa5,0x1d,0x0,0xcf,0xe8,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe, 0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x7f,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xcb,0x42,0x29,0x5e,0x73,0x3f,0x8a,0x25,0x0,0xea,0x94,0xe7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xc3,0xfa,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x33,0x43,0x29,0x5e,0x1f,0x8a,0x61,0xd,0x0,0xd9,0xdc, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14,0x3b,0x0, 0x92,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83,0x42,0x29,0x5e,0x54,0x85,0xee, 0x21,0x0,0xa1,0xf4,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xcb,0x42,0x29,0x5e,0x73, 0x3f,0x8a,0x25,0x0,0x2f,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7e,0x1f,0x2, 0x5e,0x5a,0x9f,0xc0,0x12,0x80,0x90,0x9,0x19,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1, 0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x76,0x8c,0xee,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0xac,0x22,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf,0x24,0x0,0x87,0x28,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x72,0xf4, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1,0x7,0x0, 0x8f,0x94,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33, 0x39,0x0,0xec,0xf9,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1,0x42,0x29,0x5e,0xde, 0x78,0xde,0x32,0x0,0x2f,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29, 0x5e,0x88,0xd8,0x6,0x9,0x0,0xc0,0x2a,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12, 0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0,0x1,0xbd,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0,0x3,0x25,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf0,0x56,0x29,0x5e,0x83,0xad,0xe6,0x2d,0x0,0x55,0xdd,0xc1,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xbb,0x42,0x29,0x5e,0xf5,0x27,0x97,0x24,0x0,0x89,0xfa, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b,0x1b,0x0, 0xbe,0xd9,0xcd,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb7,0x42,0x29,0x5e,0xdb,0x4e,0xfc, 0x7,0x0,0xc2,0x1d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7, 0xe0,0x11,0x25,0x0,0x47,0x21,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xa7,0x42,0x29, 0x5e,0x85,0x43,0x6a,0x1b,0x0,0x3d,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8d, 0x42,0x29,0x5e,0xee,0x8,0xdd,0x2c,0x0,0xa6,0x8a,0xee,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xd8,0x21,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0xa2,0xde,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xea,0x57,0x29,0x5e,0x47,0x25,0x2c,0x21,0x0,0xe9,0xf, 0xe7,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x1f,0x2,0x5e,0xa9,0x19,0xb8,0x20,0x60, 0x29,0xa8,0x1e,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc, 0x4,0x0,0x17,0xed,0xe6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29,0x5e,0xdd, 0x27,0x94,0xc,0x0,0xa2,0x19,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x6f,0x42,0x29, 0x5e,0x70,0x7b,0xc0,0x6,0x0,0xf7,0x18,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x83, 0x42,0x29,0x5e,0x54,0x85,0xee,0x21,0x0,0x27,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x55,0x42,0x29,0x5e,0x7b,0x3e,0xa8,0x15,0x0,0x1e,0xb6,0xee,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x42,0x42,0x29,0x5e,0xc6,0x4b,0x35,0x0,0x0,0x33,0xfa,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0x1e,0x22, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x41,0x29,0x5e,0x1b,0x1d,0x93,0x4,0x0, 0x71,0xba,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0xf0,0x9d,0xc4, 0x14,0x0,0x33,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52, 0xe,0x9a,0x1a,0x0,0x90,0x3e,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9,0x43,0x29, 0x5e,0xdd,0x27,0x94,0xc,0x0,0x36,0xfb,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x12, 0x43,0x29,0x5e,0x69,0x5c,0xad,0x33,0x0,0x5b,0x23,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xb1,0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0x14,0xdd,0xa6,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa2,0x42,0x29,0x5e,0xb4,0x9b,0x65,0x12,0x0,0x17,0x1e,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x61,0x97,0xdf,0x57,0xaf,0xb2,0x73,0x16,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x42,0x29,0x5e,0x41,0x9,0x12,0x26,0x0, 0x33,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x9d,0x42,0x29,0x5e,0xa7,0x8b,0xd6, 0x9,0x0,0x97,0x3e,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x78,0x1f,0x2,0x5e,0xe, 0x52,0x1b,0x17,0x60,0x40,0x25,0x12,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29, 0x5e,0x78,0x51,0x1f,0x1b,0x0,0xed,0x8a,0xee,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x1e,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x7d,0x60,0xdc,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0,0x11,0xf4,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x27,0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0,0x4c,0xf3, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb8,0x43,0x29,0x5e,0xbf,0xe8,0x62,0x33,0x80, 0x9f,0xe2,0x74,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5b,0x43,0x29,0x5e,0x75,0xd1,0x5, 0x0,0x0,0x81,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0x37,0x22,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29, 0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x72,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50, 0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x6d,0xf7,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc3,0x42,0x29,0x5e,0x66,0x39,0x85,0x27,0x0,0x0,0x3e,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0,0x9a,0x51,0x8,0x0,0x1c,0x3e,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x72,0xfa, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0, 0xb0,0x3a,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x8,0x42,0x29,0x5e,0x64,0x4,0x42, 0x16,0x0,0x4d,0xed,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x43,0x29,0x5e,0x18, 0x63,0x66,0x29,0x0,0xe2,0xf3,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe,0x42,0x29, 0x5e,0x9c,0x70,0x12,0x39,0x0,0xb8,0xfa,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xba, 0x42,0x29,0x5e,0x25,0xdf,0xce,0x1f,0x0,0xf8,0xfb,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x59,0x8a,0xee,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x8a,0x42,0x29,0x5e,0xae,0x28,0x34,0x34,0x0,0x26,0xfb,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x6e,0x42,0x29,0x5e,0xdf,0xf,0xa1,0x1e,0x0,0xca,0xcc, 0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfd,0xa2,0x2a,0x5e,0x38,0x82,0xb,0x12,0x0, 0x2,0xae,0xc1,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f, 0x1b,0x0,0x94,0x84,0xee,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b,0x42,0x29,0x5e,0x88, 0xd8,0x6,0x9,0x0,0x24,0xfd,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x24,0x43,0x29, 0x5e,0xbc,0x6a,0xae,0x3a,0x0,0xb5,0x4,0xe7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb1, 0x42,0x29,0x5e,0xde,0x78,0xde,0x32,0x0,0xa5,0xe8,0xa6,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x0,0x42,0x29,0x5e,0x96,0xaf,0x5b,0x13,0x0,0x80,0x43,0xdc,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x74,0x42,0x29,0x5e,0x26,0x44,0x4c,0x10,0x0,0xca,0xdc,0xa6,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0,0x26,0x5c, 0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0,0xc1,0x39,0x32,0x0, 0x9d,0x9a,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x92,0x42,0x29,0x5e,0x13,0xb7,0x6a, 0x36,0x0,0x8d,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x57,0x29,0x5e,0x3d, 0xf9,0x1c,0x10,0x0,0x5f,0x23,0xc2,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x5f,0x42,0x29, 0x5e,0x2a,0xb5,0xc9,0x25,0x0,0xca,0xb0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4, 0x3e,0xd2,0x58,0x53,0x16,0x6f,0x31,0x0,0x5c,0x8f,0x82,0x45,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xfb,0x99,0xef,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe,0xc5,0x8d,0x29,0x0,0xbf,0x90,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0,0x2,0xaa, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0, 0x36,0x90,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b, 0x2e,0x0,0x75,0xab,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf9,0x42,0x29,0x5e,0xe0, 0xc1,0x39,0x32,0x0,0xb1,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x13,0x43,0x29, 0x5e,0xd6,0xae,0x40,0x1a,0x0,0x31,0x86,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xfe, 0x3d,0xd2,0x58,0xb8,0x81,0x9c,0x1e,0x80,0x97,0x6e,0x72,0x55,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0,0x34,0x99,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa,0x43,0x29,0x5e,0xf,0x89,0xed,0x11,0x0,0x2f,0x74,0xe8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe,0x43,0x29,0x5e,0xda,0x6a,0xb2,0x11,0x0,0x66,0x83, 0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41,0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0, 0x87,0x9b,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x1d,0x43,0x29,0x5e,0x1,0x96,0xcf, 0x24,0x0,0xdb,0x9c,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x36,0x44,0x29,0x5e,0x51, 0xf1,0x10,0x1f,0x0,0x5a,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe5,0x42,0x29, 0x5e,0xeb,0xc6,0x70,0x15,0x0,0x15,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x7, 0x3e,0xd2,0x58,0x79,0x2d,0xc8,0x11,0x0,0x27,0x31,0xa8,0x33,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xfb,0xaa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0x47,0x76,0xe8,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x7e,0x42,0x29,0x5e,0x10,0xab,0x9f,0x1c,0x0,0xeb,0xa9, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e,0xb,0x0, 0xc0,0xab,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x79,0x42,0x29,0x5e,0x7d,0x4c,0x53, 0x16,0x0,0xc6,0xc4,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x39,0x43,0x29,0x5e,0xed, 0xa7,0xe0,0x1b,0x0,0x9e,0xaa,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3c,0x43,0x29, 0x5e,0xcc,0x2c,0xc8,0x12,0x0,0x8f,0xa0,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe, 0x3e,0xd2,0x58,0x3,0xed,0x98,0x1a,0x0,0x27,0x31,0xa8,0x4d,0x0,0x0,0x0,0xff, 0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xc1,0x42,0x29,0x5e,0x84,0x84,0xe3,0x16,0x0,0xd4,0xa9,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x1e,0x5e,0xde,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x40,0x42,0x29,0x5e,0x2a,0x4d,0xaf,0x33,0x0,0x1b,0xb1, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0, 0x3c,0x5d,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xea,0x42,0x29,0x5e,0x6b,0x4d,0x3b, 0x1b,0x0,0x15,0x76,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0xeb,0xa9,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x3,0x3e,0xd2, 0x58,0x9a,0xe8,0xd,0x28,0x0,0x27,0x31,0xa8,0x36,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21, 0x43,0x29,0x5e,0xd7,0x2e,0x60,0x5,0x0,0x87,0x84,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xfc,0x42,0x29,0x5e,0xb2,0x95,0x22,0x6,0x0,0x3d,0xb8,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xd0,0x42,0x29,0x5e,0x41,0xd,0x6b,0x2e,0x0,0xb7,0xa1,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0,0xa5,0xb7, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe0,0x42,0x29,0x5e,0x6c,0x31,0x84,0xc,0x0, 0x51,0x36,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4,0x43,0x29,0x5e,0xc0,0xaa,0x1, 0x7,0x0,0x96,0x59,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf4,0x42,0x29,0x5e,0xe, 0xc5,0x8d,0x29,0x0,0x7c,0x9b,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x5c,0x8f,0x82,0x48,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef, 0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0xb1,0x88,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xd8,0x42,0x29,0x5e,0x42,0x18,0xd0,0xc,0x0,0xbc,0xaa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xa7,0x42,0x29,0x5e,0x85,0x43,0x6a,0x1b,0x0,0xae,0xaa,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x37,0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0xd4,0x8e, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0, 0xbd,0x33,0xe8,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe1,0x42,0x29,0x5e,0x83,0xa6,0x29, 0x15,0x0,0xed,0x78,0xef,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x5c,0x87,0x57,0xbd, 0x86,0x63,0x2d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff, 0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x27,0x31,0xa8,0x35,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x4b, 0x42,0x29,0x5e,0x88,0xd8,0x6,0x9,0x0,0x16,0xab,0xa7,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x50,0x43,0x29,0x5e,0xae,0x6e,0x8a,0x2e,0x0,0x2b,0x8b,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xc6,0x42,0x29,0x5e,0xfb,0x68,0xd7,0x1f,0x0,0xc7,0xa6,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x18,0x43,0x29,0x5e,0x6a,0xc2,0x96,0x1f,0x0,0xbb,0xb7, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x1, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x64,0x42,0x29,0x5e,0x96,0x33,0x32,0x2f,0x0, 0x3,0xd2,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xac,0x42,0x29,0x5e,0x7,0xe0,0x11, 0x25,0x0,0xbb,0x97,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x32,0x43,0x29,0x5e,0xb0, 0x9a,0x51,0x8,0x0,0xc9,0x7e,0xe8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x27,0x31,0xa8,0x34,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x41, 0x43,0x29,0x5e,0x78,0x51,0x1f,0x1b,0x0,0xd9,0x77,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0x60,0x43,0x29,0x5e,0xd3,0xd7,0xbc,0x4,0x0,0x2,0xaa,0xa7,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x12,0x42,0x29,0x5e,0xa5,0xb2,0x71,0x2a,0x0,0xd8,0x74,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0xb,0x43,0x29,0x5e,0x52,0xe,0x9a,0x1a,0x0,0x3f,0xa0, 0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27,0x43,0x29,0x5e,0x18,0x44,0x4c,0x32,0x0, 0xe2,0xf,0xde,0x1,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0xe2,0xce,0x4e, 0xb,0x0,0xe,0xa7,0xa7,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xb0,0x42,0x29,0x5e,0xc0, 0x1d,0xc4,0x1,0x0,0x6,0x9f,0xa6,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xe,0x3e,0xd2, 0x58,0x3,0xed,0x98,0x1a,0x0,0x5c,0x8f,0x82,0x30,0x0,0x0,0x0,0xff,0xff,0xff, 0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x37, 0x43,0x29,0x5e,0xc0,0x10,0x91,0xd,0x0,0x13,0x78,0xef,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0,0x8d,0x32,0xe8,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0x6f,0x42,0x29,0x5e,0x70,0x7b,0xc0,0x6,0x0,0xab,0xa7,0xa7,0x0, 0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x8,0x3e,0xd2,0x58,0xb6,0x87,0xc4,0x1b,0x0,0x5c,0x8f, 0x82,0x48,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0, 0x5c,0x1d,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x21,0x43,0x29,0x5e,0xd7,0x2e,0x60, 0x5,0x0,0x8a,0x25,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xbb,0x42,0x29,0x5e,0xf5, 0x27,0x97,0x24,0x0,0xf6,0x23,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xf3,0x41,0x29, 0x5e,0x81,0xfd,0x61,0x2a,0x0,0x67,0x1b,0xaa,0x0,0x0,0x0,0x0,0xfb,0xff,0xac, 0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x27, 0x42,0x29,0x5e,0xf2,0xb7,0x8e,0xf,0x0,0x74,0xf5,0xdf,0x0,0x0,0x0,0x0,0xfb, 0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0, 0x0,0xa9,0x42,0x29,0x5e,0xfe,0x10,0xe,0x2d,0x0,0x9d,0xd1,0xa9,0x0,0x0,0x0, 0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0,0x0,0x3,0x1,0x1c, 0x0,0x0,0x0,0xe,0x3e,0xd2,0x58,0x3,0xed,0x98,0x1a,0x0,0x5c,0x8f,0x82,0x4b, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x0,0x0,0x0,0x0,0x0,0x3, 0x1,0x1c,0x0,0x0,0x0,0x69,0x42,0x29,0x5e,0x62,0x1,0x33,0x39,0x0,0x6a,0x1c, 0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0,0x0,0x0, 0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0xef,0x42,0x29,0x5e,0x50,0xb6,0x15,0x21,0x0, 0x3f,0x2f,0xa8,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd,0x3f,0x0, 0x0,0x0,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x2c,0x43,0x29,0x5e,0xcd,0x3,0x14, 0x3b,0x0,0xf9,0x6b,0xe9,0x0,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8,0xdf,0xfd, 0x3f,0x0,0x0,0x1,0x0,0x3,0x1,0x1c,0x0,0x0,0x0,0x55,0x43,0x29,0x5e,0xb7, 0x88,0x56,0x33,0x0,0x64,0x6,0xf0,0x2,0x0,0x0,0x0,0xfb,0xff,0xac,0xff,0xf8, 0xdf,0xfd,0x3f,0x0,0x0,0x1,0x0,0xc4,0x5,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x60,0x56,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x26,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, 0x6a,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8d,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x77,0xf3,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x94,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0xa2,0x65,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0x59,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0x32, 0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8d,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa8,0x52,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x54,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x6,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe2,0x27,0x75, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb3,0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x59,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xac,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x1a,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x48,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8, 0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2a,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7a,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc5,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x59,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x6a,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa6,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x92,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1, 0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6d,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x73,0x4c,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0x15,0x30, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xce, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x63,0xf0,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdf,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0xb7,0x7f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe5,0xf7,0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e, 0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x97,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe8,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x8c,0x8,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0x49, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9,0x3c,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1, 0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7b,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xb3,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0x49,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xeb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc,0x84,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80, 0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x56,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xac,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x32,0x61,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x49,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40, 0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xd9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb5,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e, 0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb1,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc8,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf7,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x6b,0x4d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x49, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xdf,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x70,0x30,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0xc6,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae, 0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb3,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd0,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9b,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80, 0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x93,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0xc4,0x1f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x57,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa, 0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdc,0x5e,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e, 0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb3,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xda,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0xd5,0x2b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0x74, 0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xe6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf1,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x49,0x0,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe9,0x26,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x7,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc0,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdc,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2,0x8c,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x3e,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9f,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x49,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x9,0xc8,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x1d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3d,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd7,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0xb3,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xb3,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7, 0xe4,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xce,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x96,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x81,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x93,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xb3,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0xb3,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xf5, 0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xce,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x88,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xaf,0xb3,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5, 0x80,0x8e,0xa1,0xce,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xea,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0x5a,0x41, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x92,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x94,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80, 0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbf,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x86,0x4,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x86,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x23, 0x9d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6e,0x9d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcc,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x8b, 0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1,0xd3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xae,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x64,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb7,0x7f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xc6,0x68,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb6,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xcf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd5,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xb5,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbc,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85, 0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xcf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb4,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e, 0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb2,0x86,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe5,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x86,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x86,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb3,0x5a,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1, 0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x26,0x5b,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0x86,0x4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x86,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xcf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xda,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x41,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x16,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc3,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3d,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x4a,0x3a,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe6,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2, 0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x5c,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1, 0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x78,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x8b,0x8, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x55,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa1,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xea,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xb7,0x7f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97, 0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xdb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9f,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd9,0xf7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x96,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x49,0x0,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x94,0x57,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1, 0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x50,0x45,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x75,0x70,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5b,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80, 0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x7e,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x57,0x3f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdf,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e, 0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0xce,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xee,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xff, 0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa7,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xfe,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9, 0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x15,0x30,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc7,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd3, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6a,0xad,0x5c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0x75,0x70,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15, 0x49,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xdf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x85,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0xc0,0x4d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x78, 0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x14,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x25,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2, 0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6f,0x57,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xa,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0xc7,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xdb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcd,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x74,0x70,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x4a,0x3a,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x49,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda, 0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x1d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5b,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x20,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe3,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa,0x28,0x50,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x99,0x6d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0x6, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x77,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x36,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2, 0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x7b,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xc8,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x76,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x62,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x1a,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f, 0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xeb,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xf4,0x68,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xb7, 0x8a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x30,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb5,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xb,0x5b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x5e,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80, 0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xef,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcd,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x47,0x5e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0xc7,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xd3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc5,0x27,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e, 0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xdf,0xb2,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xbc,0x3,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3b,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1, 0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9b,0x90,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x74,0x6b,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x26,0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x97,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc6,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xa4,0x58,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57, 0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xe7,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xeb,0x76,0x4a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x19,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x27,0x75,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xbd,0x42,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xaa, 0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x84,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x23,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8, 0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x1d,0x78,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd6,0x73,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x94,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe2, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc2,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80, 0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x62,0x49,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb9,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xbc,0x3,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xb6,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f, 0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7f,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e, 0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf7,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe7,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x5,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x78,0x87,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x78, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa1,0xe2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x46,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb6,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xeb,0xb1,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3d,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x99,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0xb1,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x3f,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x83,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x51, 0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x19,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xed,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2, 0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x2e,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc, 0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdd,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xed,0x73,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x68,0x21, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x14, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb2,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd1,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb1,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0xc8,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93, 0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x16,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xdb,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4c,0xbb,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xf2,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x60,0x87,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xd3, 0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xb7,0xb6,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb0,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xba,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0x41,0x61,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x15,0x20,0x3a, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd2,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x18, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x57,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80, 0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x28,0x66,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x34,0x3b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe8,0x4,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8a, 0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x99,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x72,0x6b,0x75,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaf,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0x1d,0x78,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x78,0x26,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbb,0xc8, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9f,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1, 0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x15,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea, 0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x34,0x3b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x39,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xcd,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80, 0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x85,0xc0,0x4d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0x39,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xfe,0xe9,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xed,0x80,0x8e, 0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa6,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc5,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x19,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x69,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8, 0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x1a,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x39,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc1,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x36,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe7,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xc8,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2a,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e, 0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x17,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x3f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7b,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x59,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x12,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x12, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x87,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa1,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98, 0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0xf4,0x4d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0xc7,0x6e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xc0,0xc9,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x17,0xcc,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x89, 0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x75,0x70,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x48,0xcf,0x6e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17, 0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb9,0xd1,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x22,0x3a,0x77,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa1,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xad,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xd8, 0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x75,0xdb,0x6e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x89,0x8a,0x18, 0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x14,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x59,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x99,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x70,0xbd, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x79,0x5c,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x59,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xdc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x8b,0x8,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xd5,0x2b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfa, 0xa4,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8d,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x91,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xba,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc0,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xbc,0x3,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0xa9,0x22,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xac, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8d,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8f,0xf0,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6b,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0xaf,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xb4,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x2b,0xc0,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x8d, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4d,0xa8,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80, 0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xc7,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa2,0x1d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x52,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0x27,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7f, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc3,0x5,0x32,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x89,0x8a, 0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbb,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x4b,0x41,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x6,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc4, 0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xd2,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x59,0xd,0x32,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18, 0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0xce,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x89,0x8a,0x18,0x8d,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xd5,0x2b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x16,0x85,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xde,0x93,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x78,0x87,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0x96,0x1d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0x4a,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xe0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x64,0x56,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaf,0x59,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x31,0x3d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0x5e,0xe,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xa3, 0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf9,0xe6,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1, 0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0x8a,0x6d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x63,0xe,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xfc,0xb2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x66,0xe, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x53,0x69,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89, 0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x6f,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x72,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x8b,0x8,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xac, 0x74,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8e,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9,0x77,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a, 0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x97,0xbc,0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xab,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x61,0xb,0x5b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x75,0x7b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0xc2, 0x1d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8e,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x4a,0x82,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18, 0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xad,0x84,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7, 0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x32,0x61,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x32,0x60, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd3,0xd9,0xe,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8e, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x39,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe8,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x8a,0xe,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0x28,0x16,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c, 0x2a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xad,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e, 0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2a,0xf8,0x67,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xed,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x49,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x2d, 0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xbc,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1, 0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x62,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x30,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1a,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x8d,0x17, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x6e,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe1,0x10,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x32,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x15,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd2,0xb4,0x54,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1, 0x13,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe,0x7a,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6e,0x8,0x78,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x95,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x6,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xdb,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0xbc, 0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xe3,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1, 0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x84,0x16,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b, 0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x32,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x34,0x3a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xbf,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80, 0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x4b,0x3a,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa3,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xde,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x49,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7, 0x18,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9c,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa4,0xc,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x94,0x3c,0x16,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x15,0x30,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x61,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1, 0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1d,0xe1,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xf,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1b,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x87,0xe3,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf2,0x3f,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89, 0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x32,0x61,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x11,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe, 0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xd5,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9a,0x23,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xaa,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc5,0xe6,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc4,0x1f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x9b, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xd4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x51,0x42,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18, 0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x26,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x7c,0x86,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0xf0,0x7, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x78,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x10, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4f,0xeb,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x14,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x15,0x30,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca, 0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xd3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x58,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xba,0x47,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbb,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xff,0x3f,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x48, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd6,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x45,0x29,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19, 0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xed,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x28,0x19,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa2,0x7c,0x86,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4e,0xd9,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa1,0xdf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdd,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0x2,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x45,0x7c,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97, 0x4d,0x6a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xed,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7a,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xce,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0xb5,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8d,0x33,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0xd5, 0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xdb,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x43,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0x4a,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xae,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xec,0xb5,0x58, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf4,0xb5,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xea,0x80,0x8e,0xa1,0xdf, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x75,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xeb,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x15,0x30,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x81,0xd1,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5e,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2f,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x62,0x49,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x34,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xbd, 0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xcd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9e,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd0,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0x99,0x59,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xc8,0x5,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa7,0x2b,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xc,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x89,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2b,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbe,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0x60,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x95,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xf1,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x6,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x16, 0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x9d,0x9b,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x88,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaa,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x1d,0x78,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0xc8,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xa4, 0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xcc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1e,0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1, 0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xcd,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8, 0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0x8b,0x8,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0x1c,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x85,0x4c,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdf,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80, 0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xb2,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x97,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x78,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0,0xdb,0x68,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64, 0xbd,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x78,0xa4,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x71,0x2e,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb7,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0x8,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x79,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x34, 0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa0,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe8,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xef,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xc8,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe3,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x69,0xf3,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89, 0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x1f,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x79,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x34,0x3b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75, 0xff,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xcd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbf,0x4f,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd7,0xdd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc3,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0x79,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x34,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0xb4, 0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0x9,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0xc8,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1, 0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xdd,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5, 0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x78,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x34,0x3b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xbd,0x42, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe5,0x73,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xcc, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9a,0xad,0x84,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80, 0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa9,0x80,0x8e,0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xc8,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5f,0xa4,0x58,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24, 0x79,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xe2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc7,0x34,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80,0x8e, 0xa1,0xd8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x20,0x7b,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa6,0x80,0x8e,0xa1,0xcd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x73,0xc,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe5,0x80,0x8e,0xa1,0xcc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xad,0x84,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xe2,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x79, 0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x20,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2, 0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x77,0x27,0x20,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0xc8,0x14,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x33,0x51,0x1, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0x7a,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x60,0x4d,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x2b,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x78,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58, 0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa2,0x1c,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x62,0x94,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4,0xb7,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x39,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0xfb, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xe1,0x53,0xf,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x60,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x36,0x3,0x61,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x99,0x67,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xba,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3e,0x57,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8d,0x3c,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x13,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x51,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xfd,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63, 0x2a,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc,0xc1,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc6,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xeb,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0x5,0x52,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4a,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xfd,0xdd,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19, 0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xed,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3, 0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x85,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x68,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x66,0xb2,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x88,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x87,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfe,0x50,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc4,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd,0xdd,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0x68,0x21,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5e,0xc4,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a, 0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbf,0x41,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcb,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e,0x9e,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8d,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0x3,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7, 0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0x72,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x51,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xad,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x58,0x5b,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18,0x8b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xff,0x8,0x16,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89, 0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x68,0x21,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0xe3,0x40,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24, 0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x14,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x52,0x4a,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a, 0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x10,0x1c,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe8,0x4,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xc8,0x14,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xe, 0x45,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3b,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe9,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x32,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc9,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xce,0xb7,0x8a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x48,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x80, 0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x24,0x24,0x44,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x7f,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc, 0x6a,0x5f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1d,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e, 0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x77,0xd6,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x4d,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x4c, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xc,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2, 0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3b,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd3,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0x78,0x15,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe,0x16, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x37,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x17, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9d,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xeb,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8,0xb1,0x3e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xae,0x6e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b, 0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x1f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6c,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e, 0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x69,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe7,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0x78,0x26,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x87,0xa3,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x43,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2, 0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xd8,0xcf,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x4f,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x89,0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcc,0xb1,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xdd,0x43, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0x7e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x66,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80, 0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x50,0x2d,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x77,0x26,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xc8,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0x92,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x8f,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x5,0xe8,0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e, 0xa2,0x17,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x41,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb3,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x7e,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0xb1,0x3e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0x7e, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa2,0x1f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3f,0x68,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa2, 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x78,0x1d,0x8c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb, 0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0xa,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfe,0x77,0x26,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x50,0xe8,0x4, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x45,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa2,0x19, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x9d,0xd6,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89, 0x8a,0x19,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa0,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xe0,0x43,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0x7e,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91, 0xab,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc1,0x11,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x80,0xd5,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9f,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x51,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xe8,0x4,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x17,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53,0x81, 0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18,0x88,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa3,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2, 0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x7b,0xdb,0x7c,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0x77,0x26,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x78,0x5f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xb1,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa2,0x18,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x4f,0x81,0x97,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x1f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2a,0x51,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0xa2,0x19,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0x5e,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0xc8,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x59,0x17,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18,0x8f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0x97,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xc,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x26,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e, 0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x12,0x1a,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x68,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1b,0xf6,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xe8, 0x4,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa2,0x17,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x76,0x8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18, 0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xe3,0xb1,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa2,0x18,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x1e,0x16,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb7,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x3b,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x97,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0x7e,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x1f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xc8,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x16, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x18,0x78,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80, 0x8e,0xa2,0x14,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc1,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xf0,0x7,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xf0,0x7,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c, 0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa2,0x10,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x7c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e, 0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4d,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xef,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0xf0,0x7,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xf0,0x7,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xf0, 0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x10,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x64,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa2, 0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x6c,0xf0,0x7,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1, 0x80,0x8e,0xa2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xec,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x45,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x23,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xf7,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2e, 0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x47,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e, 0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x28,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xe2,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1e,0xe2,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xe2, 0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa2,0x13,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x2a,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2, 0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1b,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2c,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x30,0xe2,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x17,0xe2,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x15,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa2,0x13, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80, 0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xe2,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd1,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x32,0xe2,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xe2,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa2,0x13,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4, 0xe1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa2,0x13,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x91,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e, 0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb1,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd3,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc0,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xaf,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd4,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80, 0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc,0xe8,0x34,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0xe8,0x34,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7, 0x63,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xf,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x37,0x9e,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a, 0x18,0x8f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd6,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe7,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x2b,0x44,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xe8,0x34,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0xe8, 0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0xa2,0x11,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xcc,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa2, 0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2, 0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xab,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc4,0xe8,0x34,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xe8,0x34, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa2,0x11,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd2,0xe8,0x34,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa2,0x11, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x14,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0x3b,0x9,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54, 0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa2,0x1a,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x46,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff,0x3a,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3f,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x21,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2, 0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xda,0xc8,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x89,0x8a,0x18,0x88,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf0,0xdf,0x6,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0xb9,0x31, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xe,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa2,0x1a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc0,0xe1,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89, 0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0xe8,0x6,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x10,0x3b,0x9,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b, 0x47,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x88,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x37,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e, 0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfa,0x3a,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdc,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x3b,0x9,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f,0x3b,0x9,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1d,0x3b, 0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2,0x1a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x39,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xde,0x80,0x8e,0xa2, 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x1a,0xbc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7, 0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb6,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0xa1,0xb4,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xe4,0x3f, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0xf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x1b,0xeb,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0x9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x51,0x3b,0x9,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd0,0x80, 0x8e,0xa2,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xc1,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbb,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x79,0xe7,0x3f,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xed,0x6,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2f, 0xc4,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xd7,0xe9,0x3f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a, 0x19,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfa,0x99,0x26,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x80, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x38,0x29,0x2e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xac,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd1,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x81,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0xef,0x6, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x19,0x9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x27,0xc7,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2c,0x5b,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89, 0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x80,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c, 0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x1b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc8,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a, 0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x40,0xf3,0x6,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x89,0x8a,0x19,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x19,0xca,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xce,0x80, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x52,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x97,0x5d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b, 0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc3,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x60,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x90,0xcc,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xe, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xd3,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcf,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x63,0x17,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6, 0xd5,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xe,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xf9,0x67,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a, 0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbc,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd8,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x6b,0x17,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xd8,0x31,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0x6d,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf7,0xe6,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xdb,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x89,0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0xe9,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x46,0x70,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x18,0x89, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0xde,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89, 0x8a,0x19,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x81,0x39,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x93,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xec,0xc,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x81,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe, 0x72,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x2f,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x24,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0x81,0x2d,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x70,0x81,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x81, 0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x1b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5a,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa2, 0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f, 0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0x80,0x2d,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbc,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x60,0x81,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0xa2,0x1b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe3,0x3b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x5,0xef,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc7,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x81,0x2d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa2,0x1b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0xba,0x26,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a, 0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4e,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc3,0x80,0x37,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xe2,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xfa,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8f,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa6,0x3c,0x59,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x22,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x41,0x45,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0xee,0x2,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xee,0x2, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcb,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x6f,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x89, 0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xff,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa7,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xfc,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8b,0x41,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc0, 0xf9,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc1,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xeb,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x43,0x28,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd1,0xee,0x2,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xef, 0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa2,0x12,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x54,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa2, 0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x35,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xfe,0x14, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa5,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa2,0x12, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd7,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80, 0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb7,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x11,0x0,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xde,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x37,0x83,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x92, 0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa2,0x12,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0xef,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e, 0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xfd,0xee,0x2,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbf,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x38,0xef,0x2,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa2,0x12,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x7e,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbf,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf9,0x4d,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x7, 0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0xc6,0x2f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdf,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcb,0x60,0x7,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,0xfc,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0x1,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7f,0xc7,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x80, 0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xc8,0x2f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xef,0x80,0x8e,0x17,0x48,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x4c,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x11,0x0,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc6, 0x80,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x89,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x73,0xff,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a, 0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xd6,0x4e,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xab,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x9,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x34,0x83,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xd8,0x1,0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8f,0xb,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab, 0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x51,0x28,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xaf,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0x88,0x17,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x11,0x0, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3c,0x2,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x4b,0x4,0xd,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89, 0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xe,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x54,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0x5,0x2a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcd, 0x61,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x70,0x53,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x5a,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x5d,0x31,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xb1,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0x8b,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x40,0x15, 0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x49,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc7,0x9e,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x70,0x14,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x19,0x22,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xe6,0x2f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0x1e,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xe6,0x1b,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe8,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa7,0xc0,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x89, 0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x74,0x10,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x1d,0x22,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0x7,0x2a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7c, 0x20,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x49,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa0,0x13,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e, 0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc1,0x5a,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9d,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xa2,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x97,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x56,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x11, 0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0,0x89,0x8a,0x18,0x8a,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa5,0x8e,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x18, 0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf7,0xc3,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x60,0xa,0x2a,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdb,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xa4,0x3e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0x12,0x15, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xaf,0x11,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x8a, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xe6,0x5f,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x17,0x91,0x17,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdb,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x12,0xe9,0x4d,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe2,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xc6,0xc,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c, 0xd,0x2a,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xcf,0x1c,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a, 0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x4f,0x62,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbf,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x11,0x0,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xda,0x89,0x8a,0x18,0x8a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x84,0x93,0x17,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x18,0x89,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2,0xc8, 0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0x8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x3c,0xa9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xcd,0xab,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x67,0x1f,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x64,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa0,0xae,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x16,0xcb,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa5,0xae,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x89, 0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x81,0xa5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xea,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0x68,0x28,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfb,0xb0,0x3e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c, 0xd2,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0x8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa2,0x4c,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e, 0x17,0x44,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2,0xb1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x9b,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,0x22,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xc3,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6e,0x6a,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41,0xb4, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xdd,0xd5,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x19, 0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xf1,0x59,0x31,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa6, 0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x5c,0x31,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xb8,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x12,0x22,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe1,0x16,0x22, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x49,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa9,0x21,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf1,0x80,0x8e,0x17,0x49, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd0,0x12,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfe,0x80, 0x8e,0x17,0x49,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xb,0x5b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc8,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x81,0x38,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x99,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xb3,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43, 0xcc,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0x17,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6b,0x7b,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e, 0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x2e,0x8,0x57,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xaa,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x8b,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xba,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x81,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xd0, 0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0x17,0x74,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc5,0xc7,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17, 0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x4f,0x80,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf, 0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x26,0x15,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xab,0x7e,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2b,0x87,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x10,0xc5,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcd,0x80,0x8e,0x17,0x74, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x42,0x73,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89, 0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0xb6,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb3,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xcb,0x47,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7b,0xbe,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe, 0xc6,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0x17,0x74,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4b,0xbf,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e, 0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbb,0xc1,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc4,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0x86,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdb,0x7d,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x74,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0x80, 0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc1,0xc3,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xde,0x83,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x44,0x7b,0x47,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xf0,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x3d,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe7,0x7c,0x47, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfe,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x47,0xd8,0xc,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0x8, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xc5,0xb7,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xba,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xaf,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb4,0xb6,0x29,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x7e,0x47,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e, 0x28,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xe7,0x75,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a, 0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb4,0xbc,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb5,0x74,0x47,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x7,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc3,0x7d,0x47,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1b,0x1,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x84, 0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x6b,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x5,0xbb,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17, 0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0xb9,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7, 0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf3,0x40,0x11,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xfb,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xda,0xc,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0x8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x63,0x82,0x20, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xd8,0xbb,0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x6f, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x25,0x77,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80, 0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x35,0x8f,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9e,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x93,0x81,0x20,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0,0x45,0x11,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x2,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47, 0xbe,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x89,0x8a,0x19,0xa,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc4,0x41,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe9,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x50,0x87,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa9,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x95,0xb8,0x56,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x30,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xb5, 0x56,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x6f,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x9c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa3,0x82,0x47,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfb, 0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0x46,0x11,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa6,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0x73,0x47,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf8,0x80,0x8e,0x17,0x6f,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x37,0x44,0x11, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x0,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf3,0x7f,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0x17,0x6b, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x57,0x49,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80, 0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x57,0x8e,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0x43,0x11,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x95,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0x78,0x28,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e, 0x4b,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x4,0x80,0x8e,0x17,0x6b,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc7,0x8a,0x20,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80,0x8e, 0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x83,0x3e,0x11,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xbe,0x3e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbb,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x8c,0x20,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x6b,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd7,0xc0, 0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xab,0x89,0x8a,0x19,0xa,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x7e,0xd,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xff,0xf,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xe,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcf,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe3,0x4e,0x4f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9f,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,0xdd,0xc, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0x8,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa7,0xf7,0x39,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xb,0x11,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x6,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x31,0x15,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1b,0x4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x8,0x40,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xfa,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x48,0x4f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3, 0xb,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x3,0x80,0x8e,0x17,0x64,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x22,0xf,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfd,0x80,0x8e, 0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6a,0x7b,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdb,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x33,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd3,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5d,0x9,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf9,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x14,0x14, 0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x0,0x80,0x8e,0x17,0x64,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0x4d,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17, 0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xed,0x6,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda, 0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xc0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbf,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x46,0x4f,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x11,0x40, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17,0x64,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3d,0x8c,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac,0x80,0x8e,0x17,0x64, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfc,0x12,0x40,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf6,0x80, 0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x8d,0x47,0x4f,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0x17,0x64,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x98,0x2,0x25,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc3,0x29,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x24, 0x6,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x54,0xff,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7f,0xf8,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5a,0x36,0x15,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd7,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf6,0x3,0x25,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3b,0xf5, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xf5,0xfd,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17, 0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc,0x8,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf, 0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0xf4,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x93,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae,0xfa,0x24,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xde,0xfc,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17,0x66,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3b,0x1,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0x17,0x66, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdd,0xf6,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9f,0x80, 0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x5,0x25,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd3,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf5,0x6,0x25,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6a,0x0,0x25,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb, 0xfc,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x66,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xae,0xf7,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e, 0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x47,0xc3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xc3,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0xf9,0x24,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9f,0xc5,0x29,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0xf6, 0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17,0x66,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xc2,0x5a,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x8a,0x64,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xee, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc2,0x99,0x24,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd8,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0x7e,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0x97,0x24, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x22,0x59,0x15,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0x17,0x65, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x31,0xa1,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0x90,0x22,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa2,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf2,0x98,0x24,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaa,0xd4,0x38,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb3,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d, 0xd3,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0x17,0x65,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x33,0xcf,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e, 0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0xd1,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb3,0xdd,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xbf,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x56,0x39,0x15,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0xc6, 0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x18,0x8c,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x78,0xcc,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17, 0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc5,0xd5,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3, 0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdd,0xd6,0x38,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9f,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x91,0xd8,0x38,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0xdc,0x38, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0x17,0x65,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf5,0xc8,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd6,0xca,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80, 0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x27,0xda,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xab,0x80,0x8e,0x17,0x65,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0x3b,0x15,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x89,0x8a,0x19,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0x89,0x14,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea, 0x7c,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6c,0xd1,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x89,0x8a, 0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xf3,0x85,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa3,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0x88,0x14,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa1,0x79,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x80,0x8c, 0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xac,0x2a,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0x17, 0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x96,0x78,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc0, 0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xc8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xcb,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x6c,0x21,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbd,0x2e,0x12, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x7,0x80,0x8e,0x17,0x68,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x8b,0xce,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcf,0x89,0x8a,0x18,0x8c, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3c,0x28,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf0,0x80, 0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd0,0xd3,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbf,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa5,0x34,0x12,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1b,0xa,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1c,0x2d,0x12,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd8, 0x71,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0x17,0x68,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x46,0x31,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e, 0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7c,0x2b,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa2,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x46,0x38,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1b,0x4,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2d,0x70,0x21,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0x17,0x68,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xca,0x33, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0x17,0x68,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xef,0xd0,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x89,0x8a,0x18, 0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x26,0xd6,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3, 0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xd3,0x3e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd7,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xd9,0x29,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc7,0x89,0x8a,0x19,0xa,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x97,0xd6,0x3e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x89,0x8a,0x18,0x8c,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xcb,0xdb,0x29,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x89,0x8a,0x19,0xa, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xfa,0xd8,0x3e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdf,0x89, 0x8a,0x18,0x8c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x15,0xb3,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe9,0x80,0x8e,0x17,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8,0xd3,0x33,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0x17,0x4c,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe4,0x54,0x2d,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba, 0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xe4,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xc3,0x54,0x2d,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e, 0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x6c,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xcd,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc,0x45,0x6a,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0x54,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9e,0x12, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xe4,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xaa,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1, 0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa0,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0x53,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9a,0x12,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x12,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xe4,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa6,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xe4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x79,0x12,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80, 0x8e,0xa1,0xe4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x33,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xce,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x86,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x72,0x80,0x6a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x98,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xff, 0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xbe,0x1a,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x60,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdf,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa8,0x57,0x1e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcd,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xb0,0x12,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe8,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x79,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x47,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7, 0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xcf,0x99,0x2d,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc9,0xf0,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x57,0xa,0x68, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xf6,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xca, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x3f,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80, 0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x44,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xb1,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x18,0xbd,0x5,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb2, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x49,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x7d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xf2,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0x22,0x2b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0x99,0x2d,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xb0, 0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb6,0x80,0x8e,0xa1,0xc8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xef,0x75,0x1f,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x19,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3d,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xad,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xaf,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc3,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x43,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb2,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xdc,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb4,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xed,0xf2,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xde,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb7,0xe0,0x1b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xdf,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9d,0x57,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x53, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x59,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e, 0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xbe,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xd4,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,0xfc,0x4b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa0,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd9,0x43,0x40,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0xbd, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x58,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1, 0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x3,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xac, 0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8c,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbc,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x96,0x57,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x32,0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd5,0x80,0x8e,0xa1,0xda, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x43,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x95,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xa4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9f,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4f,0xc8,0x58,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x71,0xe9,0x51,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x41, 0xe5,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc8,0x80,0x8e,0xa1,0xda,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x73,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xa5,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xea,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0xf6,0x1,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf4,0xbc,0x5,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xd8,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x87,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb4,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x35,0xa7,0x42,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x68,0xb0,0x12,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd9,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55,0xe5,0x1e, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa0,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb1,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x8a,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9c,0x80, 0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6d,0xe9,0x51,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x99,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0xc8,0x5e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xb9,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x52,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xae, 0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xcb,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa6,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xe0,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xa7,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9,0x86,0x4f,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4c,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0xe5, 0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xda,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xab,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdd,0x80,0x8e,0xa1, 0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xa1,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf1,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xdc,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0xf8,0x1,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x1a,0x6b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x79,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1a,0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xb9,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xc9,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3e,0xc8,0x5e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5e,0xe5,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82, 0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xc9,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xec,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e, 0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x91,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xbd,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xb0,0x12,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd0,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x90,0x27,0x2e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xa7,0x22,0x24,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1, 0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x93,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xca, 0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x42,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb0,0xe0,0x1b,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0x1a,0x6b, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x85,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e,0xa1,0xc9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xd7,0xbc,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80, 0x8e,0xa1,0xca,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x21,0xc8,0x58,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xf2,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x89,0xfa,0x1,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xd8,0x5b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x92,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7, 0xbd,0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80,0x8e,0xa1,0xca,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x8d,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e, 0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9b,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xdd,0x80,0x8e,0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3a,0xc8,0x5e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xcf,0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x62,0xe5,0x1e,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xcc,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf,0xbd, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x8f,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd1,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x48,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1f,0x3e,0x5b,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,0xe5,0x1e,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe6,0xbc,0x5, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xac,0xe0,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xae,0x80,0x8e,0xa1,0xcb, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x37,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa8,0x80, 0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xa2,0x36,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xcb,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xe5,0x1e,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf8,0xbc,0x5,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1,0xca,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4, 0xfc,0x1,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xc8,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xa1,0xa,0x68,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x99,0x80,0x8e, 0xa1,0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xb4,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xef,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x13,0x96,0x4c,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd3,0xbc, 0x5,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb0,0x80,0x8e,0xa1,0xca,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x73,0xe8,0x1b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1, 0xcb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x53,0xb0,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd4, 0x80,0x8e,0xa1,0xc8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9b,0x57,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc5,0x80,0x8e,0xa1,0xc9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x58,0xce,0x13,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xd7,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x64,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x3e,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x69,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe5,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x3c,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xd4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0xce,0x13,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49,0xce,0x13,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9a,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x55, 0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xdd,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x60,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbb,0x80,0x8e, 0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x33,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x5,0x60,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0x95,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xce,0x13,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xba,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x51,0xce, 0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbf,0x80,0x8e,0xa1,0xdd,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0xae,0x10,0x23,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xf2,0x80,0x8e,0xa1, 0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x68,0x5,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97, 0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x39,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xc0,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe,0xc3,0x50,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xaf,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5c,0xce,0x13, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80,0x8e,0xa1,0xdd,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xdc,0x80,0x41,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e,0xa1,0xdd, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x2e,0xce,0x13,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xeb,0x80, 0x8e,0xa1,0xdd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x40,0xa1,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0x9d,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x11,0xf0,0x50,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x9c,0x1a,0x1e,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa3, 0xfe,0x12,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9b,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x71,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e, 0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x67,0x5,0x55,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b, 0xf,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbe,0x78,0x87,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xa5,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x45,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x22,0xb6, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcb,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x63,0x32,0x60,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x93,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xae,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4e,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb8,0x78,0x87,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xab,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x8c,0x43, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfb,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x5e,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb7,0x80,0x8e,0xa1,0xd1, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf,0x48,0x5e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9e,0x80, 0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x76,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xa1,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x82,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbe,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x20,0xe7,0x4f,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x25, 0x23,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x94,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe7,0x80,0x8e, 0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x9f,0x1e,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb0,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5b,0x59,0x21,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd4,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc7,0x27,0x75,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfd,0xb5, 0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x6f,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xec,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x65,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xba, 0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xba,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xe4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xb6,0x28,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xc6,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x17,0x62, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc9,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xb2,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xa8,0xe5,0x65,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa3,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x79,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xe4,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x59,0x6,0x14,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xb,0x5b,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc4,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78, 0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc2,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x63,0x1c,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xce,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x64,0xe3,0x74,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0x97,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4b,0x39,0x38,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xca,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa9,0x48,0x3b,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xb8,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x73,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd2,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x1d,0xf0,0x50,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc7,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xc2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xcc, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4d,0xbc,0x3,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xef,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe5,0xd7,0x52,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xf6,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7e,0xe3,0x74, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0xa4,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe1,0x80,0x8e,0xa1,0xd6, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x64,0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80, 0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x7d,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xef,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x31,0xf0,0x50,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa3,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x78,0x4d,0x6a,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xe0, 0x5a,0x0,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xe3,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x6e,0x14,0x62,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0x14,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xb8,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb6,0x48,0x3b,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xd6,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6b,0x39,0x38,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xef,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x75,0x59, 0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xe7,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x72,0x6,0x14,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xdb,0x80,0x8e,0xa1, 0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0xb2,0x1a,0x1e,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xd7, 0x80,0x8e,0xa1,0xd0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xdc,0xa4,0x40,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xad,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa6,0x12,0x62,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xa1,0x80,0x8e,0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x65,0x6a,0x84, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa7,0x80,0x8e,0xa1,0xd1,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x42,0xb6,0x28,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe6,0x80,0x8e,0xa1,0xd5, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x7e,0x48,0x3b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x94,0x80, 0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x6f,0x59,0x21,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xdf,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xc8,0xad,0x41,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xa2,0x80,0x8e,0xa1,0xd4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x8e,0xbc,0x3,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe2,0x80,0x8e,0xa1,0xe3,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x49, 0x39,0x38,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xb5,0x80,0x8e,0xa1,0xd1,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0xb,0xd4,0x52,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xa9,0x80,0x8e, 0xa1,0xde,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0, 0x0,0x1,0x0,0x0,0x0,0xc6,0x78,0x87,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a, 0xae,0x80,0x8e,0xa1,0xd6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x48,0x5e,0x0,0x10,0x0,0x0,0x0, 0x2,0x0,0x1a,0xaa,0x80,0x8e,0xa1,0xe7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xb,0xb6,0x28,0x0,0x10, 0x0,0x0,0x0,0x2,0x0,0x1a,0xda,0x80,0x8e,0xa1,0xd5,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xd4,0x89, 0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1b,0x19,0x80,0x8e,0xa1,0xe5,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x40,0xd5,0x2b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xe3,0x80,0x8e,0xa1, 0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0, 0x1,0x0,0x0,0x0,0x9d,0x8d,0x33,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xef, 0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c, 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa2,0xc4,0x1f,0x0,0x10,0x0,0x0,0x0,0x2, 0x0,0x1a,0xd3,0x80,0x8e,0xa1,0xd2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, 0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xf9,0x4a,0x3a,0x0,0x10,0x0, 0x0,0x0,0x2,0x0,0x1a,0xe0,0x80,0x8e,0xa1,0xe0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x43,0xef,0x2d, 0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x97,0x80,0x8e,0xa1,0xdf,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0, 0x45,0x15,0x30,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xc1,0x80,0x8e,0xa1,0xd9, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0xf8,0x88,0x54,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0xfe,0x80, 0x8e,0xa1,0xe5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0xd5,0x8b,0x8,0x0,0x10,0x0,0x0,0x0,0x2,0x0, 0x1a,0xbe,0x80,0x8e,0xa1,0xd3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, 0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x47,0xd5,0x2b,0x0,0x10,0x0,0x0, 0x0,0x2,0x0,0x1a,0xbd,0x80,0x8e,0xa1,0xdb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xea,0x74,0x70,0x0, 0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x96,0x80,0x8e,0xa1,0xe6,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1c,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xbc, 0xef,0x6b,0x0,0x10,0x0,0x0,0x0,0x2,0x0,0x1a,0x9d,0x80,0x8e,0xa1,0xd2,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf6,0x28,0x5c,0x3f,0x33,0x33,0x73,0x3f,0x66, 0x66,0x66,0x3f,0xc,0xd,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc,0x0,0x0,0x0,0x5f,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x61,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x63,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x65,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x67,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x69,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6b,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6d,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x6f,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x71,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x73,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x75,0x4a,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, 0x0,0x89,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8d,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x8f,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x91,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x94,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x96,0xbc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xc4,0x45,0x1f,0x8b };
2,692,799
69.385279
80
h
null
ceph-main/src/test/crimson/gtest_seastar.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <cstdlib> #include <iostream> #include "include/ceph_assert.h" #include "gtest_seastar.h" #include "common/ceph_argparse.h" #include "crimson/common/config_proxy.h" #include "crimson/common/perf_counters_collection.h" SeastarRunner seastar_test_suite_t::seastar_env; int main(int argc, char **argv) { // preprocess args std::vector<const char*> args; bool global_log_level_is_set = false; const char* prefix_log_level = "--default-log-level"; for (int i = 0; i < argc; ++i) { if (std::strncmp(argv[i], prefix_log_level, std::strlen(prefix_log_level)) == 0) { global_log_level_is_set = true; } args.push_back(argv[i]); } // HACK: differentiate between the `make check` bot and human user // for the sake of log flooding if (!global_log_level_is_set && !std::getenv("FOR_MAKE_CHECK")) { std::cout << "WARNING: set default seastar log level to debug" << std::endl; ++argc; args.push_back("--default-log-level=debug"); } auto app_argv = const_cast<char**>(args.data()); auto app_argc = static_cast<int>(args.size()); ::testing::InitGoogleTest(&app_argc, app_argv); int ret = seastar_test_suite_t::seastar_env.init(app_argc, app_argv); if (ret != 0) { seastar_test_suite_t::seastar_env.stop(); return ret; } seastar_test_suite_t::seastar_env.run([] { return crimson::common::sharded_conf().start( EntityName{}, std::string_view{"ceph"} ).then([] { return crimson::common::sharded_perf_coll().start(); }); }); ret = RUN_ALL_TESTS(); seastar_test_suite_t::seastar_env.run([] { return crimson::common::sharded_perf_coll().stop().then([] { return crimson::common::sharded_conf().stop(); }); }); seastar_test_suite_t::seastar_env.stop(); return ret; }
1,903
27.848485
80
cc
null
ceph-main/src/test/crimson/gtest_seastar.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include "gtest/gtest.h" #include "seastar_runner.h" struct seastar_test_suite_t : public ::testing::Test { static SeastarRunner seastar_env; template <typename Func> void run(Func &&func) { return seastar_env.run(std::forward<Func>(func)); } template <typename Func> void run_async(Func &&func) { run( [func=std::forward<Func>(func)]() mutable { return seastar::async(std::forward<Func>(func)); }); } virtual seastar::future<> set_up_fut() { return seastar::now(); } void SetUp() final { return run([this] { return set_up_fut(); }); } virtual seastar::future<> tear_down_fut() { return seastar::now(); } void TearDown() final { return run([this] { return tear_down_fut(); }); } };
856
22.805556
70
h
null
ceph-main/src/test/crimson/seastar_runner.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include <stdio.h> #include <signal.h> #include <thread> #include <seastar/core/app-template.hh> #include <seastar/core/future-util.hh> #include <seastar/core/reactor.hh> #include <seastar/core/alien.hh> #include <seastar/core/thread.hh> struct SeastarRunner { static constexpr eventfd_t APP_RUNNING = 1; static constexpr eventfd_t APP_NOT_RUN = 2; seastar::app_template app; seastar::file_desc begin_fd; std::unique_ptr<seastar::readable_eventfd> on_end; std::thread thread; bool begin_signaled = false; SeastarRunner() : begin_fd{seastar::file_desc::eventfd(0, 0)} {} ~SeastarRunner() {} bool is_running() const { return !!on_end; } int init(int argc, char **argv) { thread = std::thread([argc, argv, this] { reactor(argc, argv); }); eventfd_t result; if (int r = ::eventfd_read(begin_fd.get(), &result); r < 0) { std::cerr << "unable to eventfd_read():" << errno << std::endl; return r; } assert(begin_signaled == true); if (result == APP_RUNNING) { assert(is_running()); return 0; } else { assert(result == APP_NOT_RUN); assert(!is_running()); return 1; } } void stop() { if (is_running()) { run([this] { on_end->write_side().signal(1); return seastar::now(); }); } thread.join(); } void reactor(int argc, char **argv) { auto ret = app.run(argc, argv, [this] { on_end.reset(new seastar::readable_eventfd); return seastar::now().then([this] { begin_signaled = true; [[maybe_unused]] auto r = ::eventfd_write(begin_fd.get(), APP_RUNNING); assert(r == 0); return seastar::now(); }).then([this] { return on_end->wait().then([](size_t){}); }).handle_exception([](auto ep) { std::cerr << "Error: " << ep << std::endl; }).finally([this] { on_end.reset(); }); }); if (ret != 0) { std::cerr << "Seastar app returns " << ret << std::endl; } if (!begin_signaled) { begin_signaled = true; ::eventfd_write(begin_fd.get(), APP_NOT_RUN); } } template <typename Func> void run(Func &&func) { assert(is_running()); auto fut = seastar::alien::submit_to(app.alien(), 0, std::forward<Func>(func)); fut.get(); } };
2,398
22.291262
72
h
null
ceph-main/src/test/crimson/test_alien_echo.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- #include "auth/Auth.h" #include "messages/MPing.h" #include "common/ceph_argparse.h" #include "crimson/auth/DummyAuth.h" #include "crimson/common/throttle.h" #include "crimson/net/Connection.h" #include "crimson/net/Dispatcher.h" #include "crimson/net/Messenger.h" #include <seastar/core/alien.hh> #include <seastar/core/app-template.hh> #include <seastar/core/future-util.hh> #include <seastar/core/internal/pollable_fd.hh> #include <seastar/core/posix.hh> #include <seastar/core/reactor.hh> using crimson::common::local_conf; enum class echo_role { as_server, as_client, }; namespace seastar_pingpong { struct DummyAuthAuthorizer : public AuthAuthorizer { DummyAuthAuthorizer() : AuthAuthorizer(CEPH_AUTH_CEPHX) {} bool verify_reply(bufferlist::const_iterator&, std::string *connection_secret) override { return true; } bool add_challenge(CephContext*, const bufferlist&) override { return true; } }; struct Server { crimson::common::Throttle byte_throttler; crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; struct ServerDispatcher final : crimson::net::Dispatcher { unsigned count = 0; seastar::condition_variable on_reply; std::optional<seastar::future<>> ms_dispatch(crimson::net::ConnectionRef c, MessageRef m) final { std::cout << "server got ping " << *m << std::endl; // reply with a pong return c->send(crimson::make_message<MPing>()).then([this] { ++count; on_reply.signal(); return seastar::now(); }); } } dispatcher; Server(crimson::net::MessengerRef msgr) : byte_throttler(local_conf()->osd_client_message_size_cap), msgr{msgr} { } }; struct Client { crimson::common::Throttle byte_throttler; crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; struct ClientDispatcher final : crimson::net::Dispatcher { unsigned count = 0; seastar::condition_variable on_reply; std::optional<seastar::future<>> ms_dispatch(crimson::net::ConnectionRef c, MessageRef m) final { std::cout << "client got pong " << *m << std::endl; ++count; on_reply.signal(); return seastar::now(); } } dispatcher; Client(crimson::net::MessengerRef msgr) : byte_throttler(local_conf()->osd_client_message_size_cap), msgr{msgr} { } }; } // namespace seastar_pingpong class SeastarContext { int begin_fd; seastar::file_desc on_end; public: SeastarContext() : begin_fd{eventfd(0, 0)}, on_end{seastar::file_desc::eventfd(0, 0)} {} template<class Func> std::thread with_seastar(Func&& func) { return std::thread{[this, on_end = on_end.get(), func = std::forward<Func>(func)] { // alien: are you ready? wait_for_seastar(); // alien: could you help me apply(func)? func(); // alien: i've sent my request. have you replied it? // wait_for_seastar(); // alien: you are free to go! ::eventfd_write(on_end, 1); }}; } void run(seastar::app_template& app, int argc, char** argv) { app.run(argc, argv, [this] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster) .then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([this] { return set_seastar_ready(); }).then([on_end = std::move(on_end)] () mutable { // seastar: let me know once i am free to leave. return seastar::do_with(seastar::pollable_fd(std::move(on_end)), [] (seastar::pollable_fd& on_end_fds) { return on_end_fds.readable().then([&on_end_fds] { eventfd_t result = 0; on_end_fds.get_file_desc().read(&result, sizeof(result)); return seastar::make_ready_future<>(); }); }); }).then([]() { return crimson::common::sharded_conf().stop(); }).handle_exception([](auto ep) { std::cerr << "Error: " << ep << std::endl; }).finally([] { seastar::engine().exit(0); }); }); } seastar::future<> set_seastar_ready() { // seastar: i am ready to serve! ::eventfd_write(begin_fd, 1); return seastar::now(); } private: void wait_for_seastar() { eventfd_t result = 0; if (int r = ::eventfd_read(begin_fd, &result); r < 0) { std::cerr << "unable to eventfd_read():" << errno << std::endl; } } }; static seastar::future<> seastar_echo(const entity_addr_t addr, echo_role role, unsigned count) { std::cout << "seastar/"; if (role == echo_role::as_server) { return seastar::do_with( seastar_pingpong::Server{crimson::net::Messenger::create( entity_name_t::OSD(0), "server", addr.get_nonce(), true)}, [addr, count](auto& server) mutable { std::cout << "server listening at " << addr << std::endl; // bind the server server.msgr->set_default_policy(crimson::net::SocketPolicy::stateless_server(0)); server.msgr->set_policy_throttler(entity_name_t::TYPE_OSD, &server.byte_throttler); server.msgr->set_auth_client(&server.dummy_auth); server.msgr->set_auth_server(&server.dummy_auth); return server.msgr->bind(entity_addrvec_t{addr} ).safe_then([&server] { return server.msgr->start({&server.dispatcher}); }, crimson::net::Messenger::bind_ertr::all_same_way([](auto& e) { ceph_abort_msg("bind failed"); })).then([&dispatcher=server.dispatcher, count] { return dispatcher.on_reply.wait([&dispatcher, count] { return dispatcher.count >= count; }); }).finally([&server] { std::cout << "server shutting down" << std::endl; server.msgr->stop(); return server.msgr->shutdown(); }); }); } else { return seastar::do_with( seastar_pingpong::Client{crimson::net::Messenger::create( entity_name_t::OSD(1), "client", addr.get_nonce(), true)}, [addr, count](auto& client) { std::cout << "client sending to " << addr << std::endl; client.msgr->set_default_policy(crimson::net::SocketPolicy::lossy_client(0)); client.msgr->set_policy_throttler(entity_name_t::TYPE_OSD, &client.byte_throttler); client.msgr->set_auth_client(&client.dummy_auth); client.msgr->set_auth_server(&client.dummy_auth); return client.msgr->start({&client.dispatcher}).then( [addr, &client, &disp=client.dispatcher, count] { auto conn = client.msgr->connect(addr, entity_name_t::TYPE_OSD); return seastar::do_until( [&disp,count] { return disp.count >= count; }, [&disp,conn] { return conn->send(crimson::make_message<MPing>()).then([&] { return disp.on_reply.wait(); }); } ); }).finally([&client] { std::cout << "client shutting down" << std::endl; client.msgr->stop(); return client.msgr->shutdown(); }); }); } } int main(int argc, char** argv) { namespace po = boost::program_options; po::options_description desc{"Allowed options"}; desc.add_options() ("help,h", "show help message") ("role", po::value<std::string>()->default_value("pong"), "role to play (ping | pong)") ("port", po::value<uint16_t>()->default_value(9010), "port #") ("nonce", po::value<uint32_t>()->default_value(42), "a unique number to identify the pong server") ("count", po::value<unsigned>()->default_value(10), "stop after sending/echoing <count> MPing messages"); po::variables_map vm; std::vector<std::string> unrecognized_options; try { auto parsed = po::command_line_parser(argc, argv) .options(desc) .allow_unregistered() .run(); po::store(parsed, vm); if (vm.count("help")) { std::cout << desc << std::endl; return 0; } po::notify(vm); unrecognized_options = po::collect_unrecognized(parsed.options, po::include_positional); } catch(const po::error& e) { std::cerr << "error: " << e.what() << std::endl; return 1; } entity_addr_t addr; addr.set_type(entity_addr_t::TYPE_MSGR2); addr.set_family(AF_INET); addr.set_port(vm["port"].as<std::uint16_t>()); addr.set_nonce(vm["nonce"].as<std::uint32_t>()); echo_role role = echo_role::as_server; if (vm["role"].as<std::string>() == "ping") { role = echo_role::as_client; } auto count = vm["count"].as<unsigned>(); seastar::app_template app; SeastarContext sc; auto job = sc.with_seastar([&] { auto fut = seastar::alien::submit_to(app.alien(), 0, [addr, role, count] { return seastar_echo(addr, role, count); }); fut.wait(); }); std::vector<char*> av{argv[0]}; std::transform(begin(unrecognized_options), end(unrecognized_options), std::back_inserter(av), [](auto& s) { return const_cast<char*>(s.c_str()); }); sc.run(app, av.size(), av.data()); job.join(); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_echo" * End: */
9,806
32.244068
92
cc
null
ceph-main/src/test/crimson/test_alienstore_thread_pool.cc
#include <chrono> #include <iostream> #include <numeric> #include <seastar/core/app-template.hh> #include "common/ceph_argparse.h" #include "crimson/common/config_proxy.h" #include "crimson/os/alienstore/thread_pool.h" #include "include/msgr.h" using namespace std::chrono_literals; using ThreadPool = crimson::os::ThreadPool; using crimson::common::local_conf; seastar::future<> test_accumulate(ThreadPool& tp) { static constexpr auto N = 5; static constexpr auto M = 1; auto slow_plus = [&tp](int i) { return tp.submit(::rand() % 2, [=] { std::this_thread::sleep_for(10ns); return i + M; }); }; return seastar::map_reduce( boost::irange(0, N), slow_plus, 0, std::plus{}).then([] (int sum) { auto r = boost::irange(0 + M, N + M); if (sum != std::accumulate(r.begin(), r.end(), 0)) { throw std::runtime_error("test_accumulate failed"); } }); } seastar::future<> test_void_return(ThreadPool& tp) { return tp.submit(::rand() % 2, [=] { std::this_thread::sleep_for(10ns); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster) .then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([] { return seastar::do_with(std::make_unique<crimson::os::ThreadPool>(2, 128, seastar::resource::cpuset{0}), [](auto& tp) { return tp->start().then([&tp] { return test_accumulate(*tp); }).then([&tp] { return test_void_return(*tp); }).finally([&tp] { return tp->stop(); }); }); }).finally([] { return crimson::common::sharded_conf().stop(); }).handle_exception([](auto e) { std::cerr << "Error: " << e << std::endl; seastar::engine().exit(1); }); }); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_thread_pool" * End: */
2,373
29.050633
110
cc
null
ceph-main/src/test/crimson/test_async_echo.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- #include <boost/program_options/variables_map.hpp> #include <boost/program_options/parsers.hpp> #include "auth/Auth.h" #include "global/global_init.h" #include "messages/MPing.h" #include "msg/Dispatcher.h" #include "msg/Messenger.h" #include "auth/DummyAuth.h" enum class echo_role { as_server, as_client, }; namespace native_pingpong { constexpr int CEPH_OSD_PROTOCOL = 10; struct Server { Server(CephContext* cct, const entity_inst_t& entity) : dummy_auth(cct), dispatcher(cct) { msgr.reset(Messenger::create(cct, "async", entity.name, "pong", entity.addr.get_nonce())); dummy_auth.auth_registry.refresh_config(); msgr->set_cluster_protocol(CEPH_OSD_PROTOCOL); msgr->set_default_policy(Messenger::Policy::stateless_server(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); } DummyAuthClientServer dummy_auth; std::unique_ptr<Messenger> msgr; struct ServerDispatcher : Dispatcher { std::mutex mutex; std::condition_variable on_reply; bool replied = false; ServerDispatcher(CephContext* cct) : Dispatcher(cct) {} bool ms_can_fast_dispatch_any() const override { return true; } bool ms_can_fast_dispatch(const Message* m) const override { return m->get_type() == CEPH_MSG_PING; } void ms_fast_dispatch(Message* m) override { m->get_connection()->send_message(new MPing); m->put(); { std::lock_guard lock{mutex}; replied = true; } on_reply.notify_one(); } bool ms_dispatch(Message*) override { ceph_abort(); } bool ms_handle_reset(Connection*) override { return true; } void ms_handle_remote_reset(Connection*) override { } bool ms_handle_refused(Connection*) override { return true; } void echo() { replied = false; std::unique_lock lock{mutex}; return on_reply.wait(lock, [this] { return replied; }); } } dispatcher; void echo() { dispatcher.echo(); } }; struct Client { std::unique_ptr<Messenger> msgr; Client(CephContext *cct) : dummy_auth(cct), dispatcher(cct) { msgr.reset(Messenger::create(cct, "async", entity_name_t::CLIENT(-1), "ping", getpid())); dummy_auth.auth_registry.refresh_config(); msgr->set_cluster_protocol(CEPH_OSD_PROTOCOL); msgr->set_default_policy(Messenger::Policy::lossy_client(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); } DummyAuthClientServer dummy_auth; struct ClientDispatcher : Dispatcher { std::mutex mutex; std::condition_variable on_reply; bool replied = false; ClientDispatcher(CephContext* cct) : Dispatcher(cct) {} bool ms_can_fast_dispatch_any() const override { return true; } bool ms_can_fast_dispatch(const Message* m) const override { return m->get_type() == CEPH_MSG_PING; } void ms_fast_dispatch(Message* m) override { m->put(); { std::lock_guard lock{mutex}; replied = true; } on_reply.notify_one(); } bool ms_dispatch(Message*) override { ceph_abort(); } bool ms_handle_reset(Connection *) override { return true; } void ms_handle_remote_reset(Connection*) override { } bool ms_handle_refused(Connection*) override { return true; } bool ping(Messenger* msgr, const entity_inst_t& peer) { using namespace std::chrono_literals; auto conn = msgr->connect_to(peer.name.type(), entity_addrvec_t{peer.addr}); replied = false; conn->send_message(new MPing); std::unique_lock lock{mutex}; return on_reply.wait_for(lock, 500ms, [&] { return replied; }); } } dispatcher; void ping(const entity_inst_t& peer) { dispatcher.ping(msgr.get(), peer); } }; } // namespace native_pingpong static void ceph_echo(CephContext* cct, entity_addr_t addr, echo_role role, unsigned count) { std::cout << "ceph/"; entity_inst_t entity{entity_name_t::OSD(0), addr}; if (role == echo_role::as_server) { std::cout << "server listening at " << addr << std::endl; native_pingpong::Server server{cct, entity}; server.msgr->bind(addr); server.msgr->add_dispatcher_head(&server.dispatcher); server.msgr->start(); for (unsigned i = 0; i < count; i++) { server.echo(); } server.msgr->shutdown(); server.msgr->wait(); } else { std::cout << "client sending to " << addr << std::endl; native_pingpong::Client client{cct}; client.msgr->add_dispatcher_head(&client.dispatcher); client.msgr->start(); auto conn = client.msgr->connect_to(entity.name.type(), entity_addrvec_t{entity.addr}); for (unsigned i = 0; i < count; i++) { std::cout << "seq=" << i << std::endl; client.ping(entity); } client.msgr->shutdown(); client.msgr->wait(); } } int main(int argc, char** argv) { namespace po = boost::program_options; po::options_description desc{"Allowed options"}; desc.add_options() ("help,h", "show help message") ("role", po::value<std::string>()->default_value("pong"), "role to play (ping | pong)") ("port", po::value<uint16_t>()->default_value(9010), "port #") ("nonce", po::value<uint32_t>()->default_value(42), "a unique number to identify the pong server") ("count", po::value<unsigned>()->default_value(10), "stop after sending/echoing <count> MPing messages") ("v2", po::value<bool>()->default_value(false), "using msgr v2 protocol"); po::variables_map vm; std::vector<std::string> unrecognized_options; try { auto parsed = po::command_line_parser(argc, argv) .options(desc) .allow_unregistered() .run(); po::store(parsed, vm); if (vm.count("help")) { std::cout << desc << std::endl; return 0; } po::notify(vm); unrecognized_options = po::collect_unrecognized(parsed.options, po::include_positional); } catch(const po::error& e) { std::cerr << "error: " << e.what() << std::endl; return 1; } entity_addr_t addr; if (vm["v2"].as<bool>()) { addr.set_type(entity_addr_t::TYPE_MSGR2); } else { addr.set_type(entity_addr_t::TYPE_LEGACY); } addr.set_family(AF_INET); addr.set_port(vm["port"].as<std::uint16_t>()); addr.set_nonce(vm["nonce"].as<std::uint32_t>()); echo_role role = echo_role::as_server; if (vm["role"].as<std::string>() == "ping") { role = echo_role::as_client; } auto count = vm["count"].as<unsigned>(); std::vector<const char*> args(argv, argv + argc); auto cct = global_init(nullptr, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_MON_CONFIG); common_init_finish(cct.get()); ceph_echo(cct.get(), addr, role, count); }
7,051
29.008511
94
cc
null
ceph-main/src/test/crimson/test_backfill.cc
#include <algorithm> #include <cstdlib> #include <deque> #include <functional> #include <initializer_list> #include <iostream> #include <iterator> #include <limits> #include <map> #include <set> #include <string> #include <boost/statechart/event_base.hpp> #include <gmock/gmock.h> #include <gtest/gtest.h> #include "common/hobject.h" #include "crimson/osd/backfill_state.h" #include "osd/recovery_types.h" // The sole purpose is to convert from the string representation. // An alternative approach could use boost::range in FakeStore's // constructor. struct improved_hobject_t : hobject_t { improved_hobject_t(const char parsable_name[]) { this->parse(parsable_name); } improved_hobject_t(const hobject_t& obj) : hobject_t(obj) { } bool operator==(const improved_hobject_t& rhs) const { return static_cast<const hobject_t&>(*this) == \ static_cast<const hobject_t&>(rhs); } }; struct FakeStore { using objs_t = std::map<improved_hobject_t, eversion_t>; objs_t objs; void push(const hobject_t& obj, eversion_t version) { objs[obj] = version; } void drop(const hobject_t& obj, const eversion_t version) { auto it = objs.find(obj); ceph_assert(it != std::end(objs)); ceph_assert(it->second == version); objs.erase(it); } template <class Func> hobject_t list(const hobject_t& start, Func&& per_entry) const { auto it = objs.lower_bound(start); for (auto max = std::numeric_limits<std::uint64_t>::max(); it != std::end(objs) && max > 0; ++it, --max) { per_entry(*it); } return it != std::end(objs) ? static_cast<const hobject_t&>(it->first) : hobject_t::get_max(); } bool operator==(const FakeStore& rhs) const { return std::size(objs) == std::size(rhs.objs) && \ std::equal(std::begin(objs), std::end(objs), std::begin(rhs.objs)); } bool operator!=(const FakeStore& rhs) const { return !(*this == rhs); } }; struct FakeReplica { FakeStore store; hobject_t last_backfill; FakeReplica(FakeStore&& store) : store(std::move(store)) { } }; struct FakePrimary { FakeStore store; eversion_t last_update; eversion_t projected_last_update; eversion_t log_tail; FakePrimary(FakeStore&& store) : store(std::move(store)) { } }; class BackfillFixture : public crimson::osd::BackfillState::BackfillListener { friend class BackfillFixtureBuilder; FakePrimary backfill_source; std::map<pg_shard_t, FakeReplica> backfill_targets; std::map<pg_shard_t, std::vector<std::pair<hobject_t, eversion_t>>> enqueued_drops; std::deque< boost::intrusive_ptr< const boost::statechart::event_base>> events_to_dispatch; crimson::osd::BackfillState backfill_state; BackfillFixture(FakePrimary&& backfill_source, std::map<pg_shard_t, FakeReplica>&& backfill_targets); template <class EventT> void schedule_event(const EventT& event) { events_to_dispatch.emplace_back(event.intrusive_from_this()); } // BackfillListener { void request_replica_scan( const pg_shard_t& target, const hobject_t& begin, const hobject_t& end) override; void request_primary_scan( const hobject_t& begin) override; void enqueue_push( const hobject_t& obj, const eversion_t& v) override; void enqueue_drop( const pg_shard_t& target, const hobject_t& obj, const eversion_t& v) override; void maybe_flush() override; void update_peers_last_backfill( const hobject_t& new_last_backfill) override; bool budget_available() const override; public: MOCK_METHOD(void, backfilled, (), (override)); // } void next_round(std::size_t how_many=1) { ceph_assert(events_to_dispatch.size() >= how_many); while (how_many-- > 0) { backfill_state.process_event(std::move(events_to_dispatch.front())); events_to_dispatch.pop_front(); } } void next_till_done() { while (!events_to_dispatch.empty()) { next_round(); } } bool all_stores_look_like(const FakeStore& reference) const { const bool all_replica_match = std::all_of( std::begin(backfill_targets), std::end(backfill_targets), [&reference] (const auto kv) { return kv.second.store == reference; }); return backfill_source.store == reference && all_replica_match; } struct PeeringFacade; struct PGFacade; }; struct BackfillFixture::PeeringFacade : public crimson::osd::BackfillState::PeeringFacade { FakePrimary& backfill_source; std::map<pg_shard_t, FakeReplica>& backfill_targets; // sorry, this is duplicative but that's the interface std::set<pg_shard_t> backfill_targets_as_set; PeeringFacade(FakePrimary& backfill_source, std::map<pg_shard_t, FakeReplica>& backfill_targets) : backfill_source(backfill_source), backfill_targets(backfill_targets) { std::transform( std::begin(backfill_targets), std::end(backfill_targets), std::inserter(backfill_targets_as_set, std::end(backfill_targets_as_set)), [](auto pair) { return pair.first; }); } hobject_t earliest_backfill() const override { hobject_t e = hobject_t::get_max(); for (const auto& kv : backfill_targets) { e = std::min(kv.second.last_backfill, e); } return e; } const std::set<pg_shard_t>& get_backfill_targets() const override { return backfill_targets_as_set; } const hobject_t& get_peer_last_backfill(pg_shard_t peer) const override { return backfill_targets.at(peer).last_backfill; } const eversion_t& get_last_update() const override { return backfill_source.last_update; } const eversion_t& get_log_tail() const override { return backfill_source.log_tail; } void scan_log_after(eversion_t, scan_log_func_t) const override { /* NOP */ } bool is_backfill_target(pg_shard_t peer) const override { return backfill_targets.count(peer) == 1; } void update_complete_backfill_object_stats(const hobject_t &hoid, const pg_stat_t &stats) override { } bool is_backfilling() const override { return true; } }; struct BackfillFixture::PGFacade : public crimson::osd::BackfillState::PGFacade { FakePrimary& backfill_source; PGFacade(FakePrimary& backfill_source) : backfill_source(backfill_source) { } const eversion_t& get_projected_last_update() const override { return backfill_source.projected_last_update; } }; BackfillFixture::BackfillFixture( FakePrimary&& backfill_source, std::map<pg_shard_t, FakeReplica>&& backfill_targets) : backfill_source(std::move(backfill_source)), backfill_targets(std::move(backfill_targets)), backfill_state(*this, std::make_unique<PeeringFacade>(this->backfill_source, this->backfill_targets), std::make_unique<PGFacade>(this->backfill_source)) { backfill_state.process_event(crimson::osd::BackfillState::Triggered{}.intrusive_from_this()); } void BackfillFixture::request_replica_scan( const pg_shard_t& target, const hobject_t& begin, const hobject_t& end) { BackfillInterval bi; bi.end = backfill_targets.at(target).store.list(begin, [&bi](auto kv) { bi.objects.insert(std::move(kv)); }); bi.begin = begin; bi.version = backfill_source.last_update; schedule_event(crimson::osd::BackfillState::ReplicaScanned{ target, std::move(bi) }); } void BackfillFixture::request_primary_scan( const hobject_t& begin) { BackfillInterval bi; bi.end = backfill_source.store.list(begin, [&bi](auto kv) { bi.objects.insert(std::move(kv)); }); bi.begin = begin; bi.version = backfill_source.last_update; schedule_event(crimson::osd::BackfillState::PrimaryScanned{ std::move(bi) }); } void BackfillFixture::enqueue_push( const hobject_t& obj, const eversion_t& v) { for (auto& [ _, bt ] : backfill_targets) { bt.store.push(obj, v); } schedule_event(crimson::osd::BackfillState::ObjectPushed{ obj }); } void BackfillFixture::enqueue_drop( const pg_shard_t& target, const hobject_t& obj, const eversion_t& v) { enqueued_drops[target].emplace_back(obj, v); } void BackfillFixture::maybe_flush() { for (const auto& [target, versioned_objs] : enqueued_drops) { for (const auto& [obj, v] : versioned_objs) { backfill_targets.at(target).store.drop(obj, v); } } enqueued_drops.clear(); } void BackfillFixture::update_peers_last_backfill( const hobject_t& new_last_backfill) { } bool BackfillFixture::budget_available() const { return true; } struct BackfillFixtureBuilder { FakeStore backfill_source; std::map<pg_shard_t, FakeReplica> backfill_targets; static BackfillFixtureBuilder add_source(FakeStore::objs_t objs) { BackfillFixtureBuilder bfb; bfb.backfill_source = FakeStore{ std::move(objs) }; return bfb; } BackfillFixtureBuilder&& add_target(FakeStore::objs_t objs) && { const auto new_osd_num = std::size(backfill_targets); const auto [ _, inserted ] = backfill_targets.emplace( new_osd_num, FakeReplica{ FakeStore{std::move(objs)} }); ceph_assert(inserted); return std::move(*this); } BackfillFixture get_result() && { return BackfillFixture{ std::move(backfill_source), std::move(backfill_targets) }; } }; // The straightest case: single primary, single replica. All have the same // content in their object stores, so the entire backfill boils into just // `request_primary_scan()` and `request_replica_scan()`. TEST(backfill, same_primary_same_replica) { const auto reference_store = FakeStore{ { { "1:00058bcc:::rbd_data.1018ac3e755.00000000000000d5:head", {10, 234} }, { "1:00ed7f8e:::rbd_data.1018ac3e755.00000000000000af:head", {10, 196} }, { "1:01483aea:::rbd_data.1018ac3e755.0000000000000095:head", {10, 169} }, }}; auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( reference_store.objs ).get_result(); cluster_fixture.next_round(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_round(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } TEST(backfill, one_empty_replica) { const auto reference_store = FakeStore{ { { "1:00058bcc:::rbd_data.1018ac3e755.00000000000000d5:head", {10, 234} }, { "1:00ed7f8e:::rbd_data.1018ac3e755.00000000000000af:head", {10, 196} }, { "1:01483aea:::rbd_data.1018ac3e755.0000000000000095:head", {10, 169} }, }}; auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( { /* nothing */ } ).get_result(); cluster_fixture.next_round(); cluster_fixture.next_round(); cluster_fixture.next_round(2); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_round(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } TEST(backfill, two_empty_replicas) { const auto reference_store = FakeStore{ { { "1:00058bcc:::rbd_data.1018ac3e755.00000000000000d5:head", {10, 234} }, { "1:00ed7f8e:::rbd_data.1018ac3e755.00000000000000af:head", {10, 196} }, { "1:01483aea:::rbd_data.1018ac3e755.0000000000000095:head", {10, 169} }, }}; auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( { /* nothing 1 */ } ).add_target( { /* nothing 2 */ } ).get_result(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_till_done(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } namespace StoreRandomizer { // FIXME: copied & pasted from test/test_snap_mapper.cc. We need to // find a way to avoid code duplication in test. A static library? std::string random_string(std::size_t size) { std::string name; for (size_t j = 0; j < size; ++j) { name.push_back('a' + (std::rand() % 26)); } return name; } hobject_t random_hobject() { uint32_t mask{0}; uint32_t bits{0}; return hobject_t( random_string(1+(std::rand() % 16)), random_string(1+(std::rand() % 16)), snapid_t(std::rand() % 1000), (std::rand() & ((~0)<<bits)) | (mask & ~((~0)<<bits)), 0, random_string(std::rand() % 16)); } eversion_t random_eversion() { return eversion_t{ std::rand() % 512U, std::rand() % 256UL }; } FakeStore create() { FakeStore store; for (std::size_t i = std::rand() % 2048; i > 0; --i) { store.push(random_hobject(), random_eversion()); } return store; } template <class... Args> void execute_random(Args&&... args) { std::array<std::function<void()>, sizeof...(Args)> funcs = { std::forward<Args>(args)... }; return std::move(funcs[std::rand() % std::size(funcs)])(); } FakeStore mutate(const FakeStore& source_store) { FakeStore mutated_store; source_store.list(hobject_t{}, [&] (const auto& kv) { const auto &oid = kv.first; const auto &version = kv.second; execute_random( [] { /* just drop the entry */ }, [&] { mutated_store.push(oid, version); }, [&] { mutated_store.push(oid, random_eversion()); }, [&] { mutated_store.push(random_hobject(), version); }, [&] { for (auto how_many = std::rand() % 8; how_many > 0; --how_many) { mutated_store.push(random_hobject(), random_eversion()); } } ); }); return mutated_store; } } // The name might suggest randomness is involved here. Well, that's true // but till we know the seed the test still is repeatable. TEST(backfill, one_pseudorandomized_replica) { const auto reference_store = StoreRandomizer::create(); auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( StoreRandomizer::mutate(reference_store).objs ).get_result(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_till_done(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); } TEST(backfill, two_pseudorandomized_replicas) { const auto reference_store = StoreRandomizer::create(); auto cluster_fixture = BackfillFixtureBuilder::add_source( reference_store.objs ).add_target( StoreRandomizer::mutate(reference_store).objs ).add_target( StoreRandomizer::mutate(reference_store).objs ).get_result(); EXPECT_CALL(cluster_fixture, backfilled); cluster_fixture.next_till_done(); EXPECT_TRUE(cluster_fixture.all_stores_look_like(reference_store)); }
14,609
28.103586
95
cc
null
ceph-main/src/test/crimson/test_buffer.cc
#include <iostream> #include <seastar/core/app-template.hh> #include <seastar/core/future-util.hh> #include <seastar/core/reactor.hh> #include "include/buffer.h" // allocate a foreign buffer on each cpu, collect them all into a bufferlist, // and destruct it on this cpu seastar::future<> test_foreign_bufferlist() { auto make_foreign_buffer = [] (unsigned cpu) { return seastar::smp::submit_to(cpu, [=] { bufferlist bl; seastar::temporary_buffer<char> buf("abcd", 4); bl.append(buffer::create(std::move(buf))); return bl; }); }; auto reduce = [] (bufferlist&& lhs, bufferlist&& rhs) { bufferlist bl; bl.claim_append(lhs); bl.claim_append(rhs); return bl; }; return seastar::map_reduce(seastar::smp::all_cpus(), make_foreign_buffer, bufferlist(), reduce).then( [] (bufferlist&& bl) { if (bl.length() != 4 * seastar::smp::count) { auto e = std::make_exception_ptr(std::runtime_error("wrong buffer size")); return seastar::make_exception_future<>(e); } bl.clear(); return seastar::make_ready_future<>(); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [] { return seastar::now().then( &test_foreign_bufferlist ).then([] { std::cout << "All tests succeeded" << std::endl; }).handle_exception([] (auto eptr) { std::cout << "Test failure" << std::endl; return seastar::make_exception_future<>(eptr); }); }); }
1,534
29.098039
82
cc
null
ceph-main/src/test/crimson/test_config.cc
#include <chrono> #include <string> #include <numeric> #include <seastar/core/app-template.hh> #include <seastar/core/sharded.hh> #include "common/ceph_argparse.h" #include "common/config_obs.h" #include "crimson/common/config_proxy.h" using namespace std::literals; using Config = crimson::common::ConfigProxy; const std::string test_uint_option = "osd_max_pgls"; const uint64_t INVALID_VALUE = (uint64_t)(-1); const uint64_t EXPECTED_VALUE = 42; class ConfigObs : public ceph::md_config_obs_impl<Config> { uint64_t last_change = INVALID_VALUE; uint64_t num_changes = 0; const char** get_tracked_conf_keys() const override { static const char* keys[] = { test_uint_option.c_str(), nullptr, }; return keys; } void handle_conf_change(const Config& conf, const std::set <std::string> &changes) override{ if (changes.count(test_uint_option)) { last_change = conf.get_val<uint64_t>(test_uint_option); num_changes += 1; } } public: ConfigObs() { crimson::common::local_conf().add_observer(this); } uint64_t get_last_change() const { return last_change; } uint64_t get_num_changes() const { return num_changes; } seastar::future<> stop() { crimson::common::local_conf().remove_observer(this); return seastar::make_ready_future<>(); } }; seastar::sharded<ConfigObs> sharded_cobs; static seastar::future<> test_config() { return crimson::common::sharded_conf().start(EntityName{}, "ceph"sv).then([] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); auto& conf = crimson::common::local_conf(); conf->name = init_params.name; conf->cluster = cluster; return conf.parse_config_files(conf_file_list); }).then([] { return crimson::common::sharded_conf().invoke_on(0, &Config::start); }).then([] { return sharded_cobs.start(); }).then([] { auto& conf = crimson::common::local_conf(); return conf.set_val(test_uint_option, std::to_string(EXPECTED_VALUE)); }).then([] { return crimson::common::sharded_conf().invoke_on_all([](Config& config) { if (config.get_val<uint64_t>(test_uint_option) != EXPECTED_VALUE) { throw std::runtime_error("configurations don't match"); } if (sharded_cobs.local().get_last_change() != EXPECTED_VALUE) { throw std::runtime_error("last applied changes don't match the latest config"); } if (sharded_cobs.local().get_num_changes() != 1) { throw std::runtime_error("num changes don't match actual changes"); } }); }).finally([] { return sharded_cobs.stop(); }).finally([] { return crimson::common::sharded_conf().stop(); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [&] { return test_config().then([] { std::cout << "All tests succeeded" << std::endl; }).handle_exception([] (auto eptr) { std::cout << "Test failure" << std::endl; return seastar::make_exception_future<>(eptr); }); }); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_config" * End: */
3,436
30.245455
87
cc
null
ceph-main/src/test/crimson/test_denc.cc
#include <string> #include <seastar/core/temporary_buffer.hh> #include <gtest/gtest.h> #include "include/denc.h" #include "common/buffer_seastar.h" using temporary_buffer = seastar::temporary_buffer<char>; using buffer_iterator = seastar_buffer_iterator; using const_buffer_iterator = const_seastar_buffer_iterator; template<typename T> void test_denc(T v) { // estimate size_t s = 0; denc(v, s); ASSERT_NE(s, 0u); // encode temporary_buffer buf{s}; buffer_iterator enc{buf}; denc(v, enc); size_t len = enc.get() - buf.begin(); ASSERT_LE(len, s); // decode T out; temporary_buffer encoded = buf.share(); encoded.trim(len); const_buffer_iterator dec{encoded}; denc(out, dec); ASSERT_EQ(v, out); ASSERT_EQ(dec.get(), enc.get()); } TEST(denc, simple) { test_denc((uint8_t)4); test_denc((int8_t)-5); test_denc((uint16_t)6); test_denc((int16_t)-7); test_denc((uint32_t)8); test_denc((int32_t)-9); test_denc((uint64_t)10); test_denc((int64_t)-11); } TEST(denc, string) { std::string a, b("hi"), c("multi\nline\n"); test_denc(a); test_denc(b); test_denc(c); }
1,119
19.740741
60
cc
null
ceph-main/src/test/crimson/test_errorator.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- // vim: ts=8 sw=2 smarttab #include <boost/iterator/counting_iterator.hpp> #include <numeric> #include "test/crimson/gtest_seastar.h" #include "crimson/common/errorator.h" #include "crimson/common/errorator-loop.h" #include "crimson/common/log.h" #include "seastar/core/sleep.hh" struct errorator_test_t : public seastar_test_suite_t { using ertr = crimson::errorator<crimson::ct_error::invarg>; ertr::future<> test_do_until() { return crimson::repeat([i=0]() mutable { if (i < 5) { ++i; return ertr::make_ready_future<seastar::stop_iteration>( seastar::stop_iteration::no); } else { return ertr::make_ready_future<seastar::stop_iteration>( seastar::stop_iteration::yes); } }); } static constexpr int SIZE = 42; ertr::future<> test_parallel_for_each() { auto sum = std::make_unique<int>(0); return ertr::parallel_for_each( boost::make_counting_iterator(0), boost::make_counting_iterator(SIZE), [sum=sum.get()](int i) { *sum += i; }).safe_then([sum=std::move(sum)] { int expected = std::accumulate(boost::make_counting_iterator(0), boost::make_counting_iterator(SIZE), 0); ASSERT_EQ(*sum, expected); }); } struct noncopyable_t { constexpr noncopyable_t() = default; ~noncopyable_t() = default; noncopyable_t(noncopyable_t&&) = default; private: noncopyable_t(const noncopyable_t&) = delete; noncopyable_t& operator=(const noncopyable_t&) = delete; }; ertr::future<> test_non_copy_then() { return create_noncopyable().safe_then([](auto t) { return ertr::now(); }); } ertr::future<int> test_futurization() { // we don't want to be enforced to always do `make_ready_future(...)`. // as in seastar::future, the futurization should take care about // turning non-future types (e.g. int) into futurized ones (e.g. // ertr::future<int>). return ertr::now().safe_then([] { return 42; }).safe_then([](int life) { return ertr::make_ready_future<int>(life); }); } private: ertr::future<noncopyable_t> create_noncopyable() { return ertr::make_ready_future<noncopyable_t>(); } }; TEST_F(errorator_test_t, basic) { run_async([this] { test_do_until().unsafe_get0(); }); } TEST_F(errorator_test_t, parallel_for_each) { run_async([this] { test_parallel_for_each().unsafe_get0(); }); } TEST_F(errorator_test_t, non_copy_then) { run_async([this] { test_non_copy_then().unsafe_get0(); }); } TEST_F(errorator_test_t, test_futurization) { run_async([this] { test_futurization().unsafe_get0(); }); }
2,732
26.33
74
cc
null
ceph-main/src/test/crimson/test_fixed_kv_node_layout.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <stdio.h> #include <iostream> #include "gtest/gtest.h" #include "crimson/common/fixed_kv_node_layout.h" using namespace crimson; using namespace crimson::common; struct test_val_t { uint32_t t1 = 0; int32_t t2 = 0; bool operator==(const test_val_t &rhs) const { return rhs.t1 == t1 && rhs.t2 == t2; } bool operator!=(const test_val_t &rhs) const { return !(*this == rhs); } }; struct test_val_le_t { ceph_le32 t1{0}; ceph_les32 t2{0}; test_val_le_t() = default; test_val_le_t(const test_val_le_t &) = default; test_val_le_t(const test_val_t &nv) : t1(nv.t1), t2(nv.t2) {} operator test_val_t() const { return test_val_t{t1, t2}; } }; struct test_meta_t { uint32_t t1 = 0; uint32_t t2 = 0; bool operator==(const test_meta_t &rhs) const { return rhs.t1 == t1 && rhs.t2 == t2; } bool operator!=(const test_meta_t &rhs) const { return !(*this == rhs); } std::pair<test_meta_t, test_meta_t> split_into(uint32_t pivot) const { return std::make_pair( test_meta_t{t1, pivot}, test_meta_t{pivot, t2}); } static test_meta_t merge_from(const test_meta_t &lhs, const test_meta_t &rhs) { return test_meta_t{lhs.t1, rhs.t2}; } static std::pair<test_meta_t, test_meta_t> rebalance(const test_meta_t &lhs, const test_meta_t &rhs, uint32_t pivot) { return std::make_pair( test_meta_t{lhs.t1, pivot}, test_meta_t{pivot, rhs.t2}); } }; struct test_meta_le_t { ceph_le32 t1{0}; ceph_le32 t2{0}; test_meta_le_t() = default; test_meta_le_t(const test_meta_le_t &) = default; test_meta_le_t(const test_meta_t &nv) : t1(nv.t1), t2(nv.t2) {} operator test_meta_t() const { return test_meta_t{t1, t2}; } }; constexpr size_t CAPACITY = 339; struct TestNode : FixedKVNodeLayout< CAPACITY, test_meta_t, test_meta_le_t, uint32_t, ceph_le32, test_val_t, test_val_le_t> { char buf[4096]; TestNode() : FixedKVNodeLayout(buf) { memset(buf, 0, sizeof(buf)); set_meta({0, std::numeric_limits<uint32_t>::max()}); } TestNode(const TestNode &rhs) : FixedKVNodeLayout(buf) { ::memcpy(buf, rhs.buf, sizeof(buf)); } TestNode &operator=(const TestNode &rhs) { memcpy(buf, rhs.buf, sizeof(buf)); return *this; } }; TEST(FixedKVNodeTest, basic) { auto node = TestNode(); ASSERT_EQ(node.get_size(), 0); auto val = test_val_t{ 1, 1 }; node.journal_insert(node.begin(), 1, val, nullptr); ASSERT_EQ(node.get_size(), 1); auto iter = node.begin(); ASSERT_EQ(iter.get_key(), 1); ASSERT_EQ(val, iter.get_val()); ASSERT_EQ(std::numeric_limits<uint32_t>::max(), iter.get_next_key_or_max()); } TEST(FixedKVNodeTest, at_capacity) { auto node = TestNode(); ASSERT_EQ(CAPACITY, node.get_capacity()); ASSERT_EQ(node.get_size(), 0); unsigned short num = 0; auto iter = node.begin(); while (num < CAPACITY) { node.journal_insert(iter, num, test_val_t{num, num}, nullptr); ++num; ++iter; } ASSERT_EQ(node.get_size(), CAPACITY); num = 0; for (auto &i : node) { ASSERT_EQ(i.get_key(), num); ASSERT_EQ(i.get_val(), (test_val_t{num, num})); if (num < (CAPACITY - 1)) { ASSERT_EQ(i.get_next_key_or_max(), num + 1); } else { ASSERT_EQ(std::numeric_limits<uint32_t>::max(), i.get_next_key_or_max()); } ++num; } } TEST(FixedKVNodeTest, split) { auto node = TestNode(); ASSERT_EQ(node.get_size(), 0); unsigned short num = 0; auto iter = node.begin(); while (num < CAPACITY) { node.journal_insert(iter, num, test_val_t{num, num}, nullptr); ++num; ++iter; } ASSERT_EQ(node.get_size(), CAPACITY); auto split_left = TestNode(); auto split_right = TestNode(); node.split_into(split_left, split_right); ASSERT_EQ(split_left.get_size() + split_right.get_size(), CAPACITY); ASSERT_EQ(split_left.get_meta().t1, split_left.begin()->get_key()); ASSERT_EQ(split_left.get_meta().t2, split_right.get_meta().t1); ASSERT_EQ(split_right.get_meta().t2, std::numeric_limits<uint32_t>::max()); num = 0; for (auto &i : split_left) { ASSERT_EQ(i.get_key(), num); ASSERT_EQ(i.get_val(), (test_val_t{num, num})); if (num < split_left.get_size() - 1) { ASSERT_EQ(i.get_next_key_or_max(), num + 1); } else { ASSERT_EQ(std::numeric_limits<uint32_t>::max(), i.get_next_key_or_max()); } ++num; } for (auto &i : split_right) { ASSERT_EQ(i.get_key(), num); ASSERT_EQ(i.get_val(), (test_val_t{num, num})); if (num < CAPACITY - 1) { ASSERT_EQ(i.get_next_key_or_max(), num + 1); } else { ASSERT_EQ(std::numeric_limits<uint32_t>::max(), i.get_next_key_or_max()); } ++num; } ASSERT_EQ(num, CAPACITY); } TEST(FixedKVNodeTest, merge) { auto node = TestNode(); auto node2 = TestNode(); ASSERT_EQ(node.get_size(), 0); ASSERT_EQ(node2.get_size(), 0); unsigned short num = 0; auto iter = node.begin(); while (num < CAPACITY/2) { node.journal_insert(iter, num, test_val_t{num, num}, nullptr); ++num; ++iter; } node.set_meta({0, num}); node2.set_meta({num, std::numeric_limits<uint32_t>::max()}); iter = node2.begin(); while (num < (2 * (CAPACITY / 2))) { node2.journal_insert(iter, num, test_val_t{num, num}, nullptr); ++num; ++iter; } ASSERT_EQ(node.get_size(), CAPACITY / 2); ASSERT_EQ(node2.get_size(), CAPACITY / 2); auto total = node.get_size() + node2.get_size(); auto node_merged = TestNode(); node_merged.merge_from(node, node2); ASSERT_EQ( node_merged.get_meta(), (test_meta_t{0, std::numeric_limits<uint32_t>::max()})); ASSERT_EQ(node_merged.get_size(), total); num = 0; for (auto &i : node_merged) { ASSERT_EQ(i.get_key(), num); ASSERT_EQ(i.get_val(), (test_val_t{num, num})); if (num < node_merged.get_size() - 1) { ASSERT_EQ(i.get_next_key_or_max(), num + 1); } else { ASSERT_EQ(std::numeric_limits<uint32_t>::max(), i.get_next_key_or_max()); } ++num; } ASSERT_EQ(num, total); } void run_balance_test(unsigned left, unsigned right, bool prefer_left) { auto node = TestNode(); auto node2 = TestNode(); ASSERT_EQ(node.get_size(), 0); ASSERT_EQ(node2.get_size(), 0); unsigned short num = 0; auto iter = node.begin(); while (num < left) { node.journal_insert(iter, num, test_val_t{num, num}, nullptr); ++num; ++iter; } node.set_meta({0, num}); node2.set_meta({num, std::numeric_limits<uint32_t>::max()}); iter = node2.begin(); while (num < (left + right)) { node2.journal_insert(iter, num, test_val_t{num, num}, nullptr); ++num; ++iter; } ASSERT_EQ(node.get_size(), left); ASSERT_EQ(node2.get_size(), right); auto total = node.get_size() + node2.get_size(); auto node_balanced = TestNode(); auto node_balanced2 = TestNode(); auto pivot = TestNode::balance_into_new_nodes( node, node2, prefer_left, node_balanced, node_balanced2); ASSERT_EQ(total, node_balanced.get_size() + node_balanced2.get_size()); unsigned left_size, right_size; if (total % 2) { if (prefer_left) { left_size = (total/2) + 1; right_size = total/2; } else { left_size = total/2; right_size = (total/2) + 1; } } else { left_size = right_size = total/2; } ASSERT_EQ(pivot, left_size); ASSERT_EQ(left_size, node_balanced.get_size()); ASSERT_EQ(right_size, node_balanced2.get_size()); ASSERT_EQ( node_balanced.get_meta(), (test_meta_t{0, left_size})); ASSERT_EQ( node_balanced2.get_meta(), (test_meta_t{left_size, std::numeric_limits<uint32_t>::max()})); num = 0; for (auto &i: node_balanced) { ASSERT_EQ(i.get_key(), num); ASSERT_EQ(i.get_val(), (test_val_t{num, num})); if (num < node_balanced.get_size() - 1) { ASSERT_EQ(i.get_next_key_or_max(), num + 1); } else { ASSERT_EQ(std::numeric_limits<uint32_t>::max(), i.get_next_key_or_max()); } ++num; } for (auto &i: node_balanced2) { ASSERT_EQ(i.get_key(), num); ASSERT_EQ(i.get_val(), (test_val_t{num, num})); if (num < total - 1) { ASSERT_EQ(i.get_next_key_or_max(), num + 1); } else { ASSERT_EQ(std::numeric_limits<uint32_t>::max(), i.get_next_key_or_max()); } ++num; } } TEST(FixedKVNodeTest, balanced) { run_balance_test(CAPACITY / 2, CAPACITY, true); run_balance_test(CAPACITY / 2, CAPACITY, false); run_balance_test(CAPACITY, CAPACITY / 2, true); run_balance_test(CAPACITY, CAPACITY / 2, false); run_balance_test(CAPACITY - 1, CAPACITY / 2, true); run_balance_test(CAPACITY / 2, CAPACITY - 1, false); run_balance_test(CAPACITY / 2, CAPACITY / 2, false); } void run_replay_test( std::vector<std::function<void(TestNode&, TestNode::delta_buffer_t&)>> &&f ) { TestNode node; for (unsigned i = 0; i < f.size(); ++i) { TestNode::delta_buffer_t buf; TestNode replayed = node; f[i](node, buf); buf.replay(replayed); ASSERT_EQ(node.get_size(), replayed.get_size()); ASSERT_EQ(node, replayed); } } TEST(FixedKVNodeTest, replay) { run_replay_test({ [](auto &n, auto &b) { n.journal_insert(n.lower_bound(1), 1, test_val_t{1, 1}, &b); ASSERT_EQ(1, n.get_size()); }, [](auto &n, auto &b) { n.journal_insert(n.lower_bound(3), 3, test_val_t{1, 2}, &b); ASSERT_EQ(2, n.get_size()); }, [](auto &n, auto &b) { n.journal_remove(n.find(3), &b); ASSERT_EQ(1, n.get_size()); }, [](auto &n, auto &b) { n.journal_insert(n.lower_bound(2), 2, test_val_t{5, 1}, &b); ASSERT_EQ(2, n.get_size()); } }); }
9,711
24.761273
81
cc
null
ceph-main/src/test/crimson/test_interruptible_future.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <seastar/core/sleep.hh> #include "test/crimson/gtest_seastar.h" #include "crimson/common/interruptible_future.h" #include "crimson/common/log.h" using namespace crimson; class test_interruption : public std::exception {}; class TestInterruptCondition { public: TestInterruptCondition(bool interrupt) : interrupt(interrupt) {} template <typename T> std::optional<T> may_interrupt() { if (interrupt) { return seastar::futurize<T>::make_exception_future(test_interruption()); } else { return std::optional<T>(); } } template <typename T> static constexpr bool is_interruption_v = std::is_same_v<T, test_interruption>; static bool is_interruption(std::exception_ptr& eptr) { if (*eptr.__cxa_exception_type() == typeid(test_interruption)) return true; return false; } private: bool interrupt = false; }; namespace crimson::interruptible { template thread_local interrupt_cond_t<TestInterruptCondition> interrupt_cond<TestInterruptCondition>; } TEST_F(seastar_test_suite_t, basic) { using interruptor = interruptible::interruptor<TestInterruptCondition>; run_async([] { interruptor::with_interruption( [] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return interruptor::make_interruptible(seastar::now()) .then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); }).then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return errorator<ct_error::enoent>::make_ready_future<>(); }).safe_then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::now(); }, errorator<ct_error::enoent>::all_same_way([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); }) ); }, [](std::exception_ptr) {}, false).get0(); interruptor::with_interruption( [] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return interruptor::make_interruptible(seastar::now()) .then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); }); }, [](std::exception_ptr) { ceph_assert(!interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::now(); }, true).get0(); }); } TEST_F(seastar_test_suite_t, loops) { using interruptor = interruptible::interruptor<TestInterruptCondition>; std::cout << "testing interruptible loops" << std::endl; run_async([] { std::cout << "beginning" << std::endl; interruptor::with_interruption( [] { std::cout << "interruptiion enabled" << std::endl; ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return interruptor::make_interruptible(seastar::now()) .then_interruptible([] { std::cout << "test seastar future do_for_each" << std::endl; std::vector<int> vec = {1, 2}; return seastar::do_with(std::move(vec), [](auto& vec) { return interruptor::do_for_each(std::begin(vec), std::end(vec), [](int) { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::now(); }); }); }).then_interruptible([] { std::cout << "test interruptible seastar future do_for_each" << std::endl; std::vector<int> vec = {1, 2}; return seastar::do_with(std::move(vec), [](auto& vec) { return interruptor::do_for_each(std::begin(vec), std::end(vec), [](int) { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return interruptor::make_interruptible(seastar::now()); }); }); }).then_interruptible([] { std::cout << "test seastar future repeat" << std::endl; return interruptor::repeat([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return interruptor::make_interruptible( seastar::make_ready_future< seastar::stop_iteration>( seastar::stop_iteration::yes)); }); }).then_interruptible([] { std::cout << "test interruptible seastar future repeat" << std::endl; return interruptor::repeat([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::make_ready_future< seastar::stop_iteration>( seastar::stop_iteration::yes); }); }).then_interruptible([] { std::cout << "test interruptible errorated future do_for_each" << std::endl; std::vector<int> vec = {1, 2}; return seastar::do_with(std::move(vec), [](auto& vec) { using namespace std::chrono_literals; return interruptor::make_interruptible(seastar::now()).then_interruptible([&vec] { return interruptor::do_for_each(std::begin(vec), std::end(vec), [](int) { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return interruptor::make_interruptible( errorator<ct_error::enoent>::make_ready_future<>()); }).safe_then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::now(); }, errorator<ct_error::enoent>::all_same_way([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); })); }); }); }).then_interruptible([] { std::cout << "test errorated future do_for_each" << std::endl; std::vector<int> vec; // set a big enough iteration times to test if there is stack overflow in do_for_each for (int i = 0; i < 1000000; i++) { vec.push_back(i); } return seastar::do_with(std::move(vec), [](auto& vec) { using namespace std::chrono_literals; return interruptor::make_interruptible(seastar::now()).then_interruptible([&vec] { return interruptor::do_for_each(std::begin(vec), std::end(vec), [](int) { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return errorator<ct_error::enoent>::make_ready_future<>(); }).safe_then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::now(); }, errorator<ct_error::enoent>::all_same_way([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); })); }); }); }).then_interruptible([] { ceph_assert(interruptible::interrupt_cond<TestInterruptCondition>.interrupt_cond); return seastar::now(); }); }, [](std::exception_ptr) {}, false).get0(); }); } using base_intr = interruptible::interruptor<TestInterruptCondition>; using base_ertr = errorator<ct_error::enoent, ct_error::eagain>; using base_iertr = interruptible::interruptible_errorator< TestInterruptCondition, base_ertr>; using base2_ertr = base_ertr::extend<ct_error::input_output_error>; using base2_iertr = interruptible::interruptible_errorator< TestInterruptCondition, base2_ertr>; template <typename F> auto with_intr(F &&f) { return base_intr::with_interruption_to_error<ct_error::eagain>( std::forward<F>(f), TestInterruptCondition(false)); } TEST_F(seastar_test_suite_t, errorated) { run_async([] { base_ertr::future<> ret = with_intr( []() { return base_iertr::now(); } ); ret.unsafe_get0(); }); } TEST_F(seastar_test_suite_t, errorated_value) { run_async([] { base_ertr::future<int> ret = with_intr( []() { return base_iertr::make_ready_future<int>( 1 ); }); EXPECT_EQ(ret.unsafe_get0(), 1); }); } TEST_F(seastar_test_suite_t, expand_errorated_value) { run_async([] { base2_ertr::future<> ret = with_intr( []() { return base_iertr::make_ready_future<int>( 1 ).si_then([](auto) { return base2_iertr::make_ready_future<>(); }); }); ret.unsafe_get0(); }); } TEST_F(seastar_test_suite_t, interruptible_async) { using interruptor = interruptible::interruptor<TestInterruptCondition>; run_async([] { interruptor::with_interruption([] { auto fut = interruptor::async([] { interruptor::make_interruptible( seastar::sleep(std::chrono::milliseconds(10))).get(); ceph_assert(interruptible::interrupt_cond< TestInterruptCondition>.interrupt_cond); ceph_assert(interruptible::interrupt_cond< TestInterruptCondition>.ref_count == 1); }); ceph_assert(interruptible::interrupt_cond< TestInterruptCondition>.interrupt_cond); ceph_assert(interruptible::interrupt_cond< TestInterruptCondition>.ref_count == 1); return fut; }, [](std::exception_ptr) {}, false).get0(); }); } TEST_F(seastar_test_suite_t, DISABLED_nested_interruptors) { run_async([] { base_ertr::future<> ret = with_intr( []() { return base_iertr::now().safe_then_interruptible([]() { return with_intr( []() { return base_iertr::now(); } ); }); } ); ret.unsafe_get0(); }); } #if 0 // This seems to cause a hang in the gcc-9 linker on bionic TEST_F(seastar_test_suite_t, handle_error) { run_async([] { base_ertr::future<> ret = with_intr( []() { return base2_iertr::make_ready_future<int>( 1 ).handle_error_interruptible( base_iertr::pass_further{}, ct_error::assert_all{"crash on eio"} ).si_then([](auto) { return base_iertr::now(); }); }); ret.unsafe_get0(); }); } #endif
9,561
30.662252
89
cc
null
ceph-main/src/test/crimson/test_lru.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * Cheng Cheng <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <stdio.h> #include "gtest/gtest.h" #include "crimson/common/shared_lru.h" class LRUTest : public SharedLRU<unsigned int, int> { public: auto add(unsigned int key, int value, bool* existed = nullptr) { auto pv = new int{value}; auto ptr = insert(key, std::unique_ptr<int>{pv}); if (existed) { *existed = (ptr.get() != pv); } return ptr; } }; TEST(LRU, add) { LRUTest cache; unsigned int key = 1; int value1 = 2; bool existed = false; { auto ptr = cache.add(key, value1, &existed); ASSERT_TRUE(ptr); ASSERT_TRUE(ptr.get()); ASSERT_EQ(value1, *ptr); ASSERT_FALSE(existed); } { auto ptr = cache.add(key, 3, &existed); ASSERT_EQ(value1, *ptr); ASSERT_TRUE(existed); } } TEST(LRU, empty) { LRUTest cache; unsigned int key = 1; bool existed = false; ASSERT_TRUE(cache.empty()); { int value1 = 2; auto ptr = cache.add(key, value1, &existed); ASSERT_EQ(value1, *ptr); ASSERT_FALSE(existed); } ASSERT_FALSE(cache.empty()); cache.clear(); ASSERT_TRUE(cache.empty()); } TEST(LRU, lookup) { LRUTest cache; unsigned int key = 1; { int value = 2; auto ptr = cache.add(key, value); ASSERT_TRUE(ptr); ASSERT_TRUE(ptr.get()); ASSERT_TRUE(cache.find(key).get()); ASSERT_EQ(value, *cache.find(key)); } ASSERT_TRUE(cache.find(key).get()); } TEST(LRU, lookup_or_create) { LRUTest cache; { int value = 2; unsigned int key = 1; ASSERT_TRUE(cache.add(key, value).get()); ASSERT_TRUE(cache[key].get()); ASSERT_EQ(value, *cache.find(key)); } { unsigned int key = 2; ASSERT_TRUE(cache[key].get()); ASSERT_EQ(0, *cache.find(key)); } ASSERT_TRUE(cache.find(1).get()); ASSERT_TRUE(cache.find(2).get()); } TEST(LRU, lower_bound) { LRUTest cache; { unsigned int key = 1; ASSERT_FALSE(cache.lower_bound(key)); int value = 2; ASSERT_TRUE(cache.add(key, value).get()); ASSERT_TRUE(cache.lower_bound(key).get()); EXPECT_EQ(value, *cache.lower_bound(key)); } } TEST(LRU, get_next) { { LRUTest cache; const unsigned int key = 0; EXPECT_FALSE(cache.upper_bound(key)); } { LRUTest cache; const unsigned int key1 = 111; auto ptr1 = cache[key1]; const unsigned int key2 = 222; auto ptr2 = cache[key2]; auto i = cache.upper_bound(0); ASSERT_TRUE(i); EXPECT_EQ(i->first, key1); auto j = cache.upper_bound(i->first); ASSERT_TRUE(j); EXPECT_EQ(j->first, key2); } } TEST(LRU, clear) { LRUTest cache; unsigned int key = 1; int value = 2; cache.add(key, value); { auto found = cache.find(key); ASSERT_TRUE(found); ASSERT_EQ(value, *found); } ASSERT_TRUE(cache.find(key).get()); cache.clear(); ASSERT_FALSE(cache.find(key)); ASSERT_TRUE(cache.empty()); } TEST(LRU, eviction) { LRUTest cache{5}; bool existed; // add a bunch of elements, some of them will be evicted for (size_t i = 0; i < 2 * cache.capacity(); ++i) { cache.add(i, i, &existed); ASSERT_FALSE(existed); } size_t i = 0; for (; i < cache.capacity(); ++i) { ASSERT_FALSE(cache.find(i)); } for (; i < 2 * cache.capacity(); ++i) { ASSERT_TRUE(cache.find(i)); } } TEST(LRU, track_weak) { constexpr int SIZE = 5; LRUTest cache{SIZE}; bool existed = false; // strong reference to keep 0 alive auto ptr = cache.add(0, 0, &existed); ASSERT_FALSE(existed); // add a bunch of elements to get 0 evicted for (size_t i = 1; i < 2 * cache.capacity(); ++i) { cache.add(i, i, &existed); ASSERT_FALSE(existed); } // 0 is still reachable via the cache ASSERT_TRUE(cache.find(0)); ASSERT_TRUE(cache.find(0).get()); ASSERT_EQ(0, *cache.find(0)); // [0..SIZE) are evicted when adding [SIZE..2*SIZE) // [SIZE..SIZE * 2) were still in the cache before accessing 0, // but SIZE got evicted when accessing 0 ASSERT_FALSE(cache.find(SIZE-1)); ASSERT_FALSE(cache.find(SIZE)); ASSERT_TRUE(cache.find(SIZE+1)); ASSERT_TRUE(cache.find(SIZE+1).get()); ASSERT_EQ((int)SIZE+1, *cache.find(SIZE+1)); ptr.reset(); // 0 is still reachable, as it is now put back into LRU cache ASSERT_TRUE(cache.find(0)); } // Local Variables: // compile-command: "cmake --build ../../../build -j 8 --target unittest_seastar_lru && ctest -R unittest_seastar_lru # --gtest_filter=*.* --log-to-stderr=true" // End:
5,213
23.364486
161
cc
null
ceph-main/src/test/crimson/test_messenger.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_argparse.h" #include "common/ceph_time.h" #include "messages/MPing.h" #include "messages/MCommand.h" #include "messages/MCommandReply.h" #include "messages/MOSDOp.h" #include "messages/MOSDOpReply.h" #include "crimson/auth/DummyAuth.h" #include "crimson/common/log.h" #include "crimson/net/Connection.h" #include "crimson/net/Dispatcher.h" #include "crimson/net/Messenger.h" #include "crimson/net/Interceptor.h" #include <map> #include <random> #include <boost/program_options.hpp> #include <fmt/format.h> #include <fmt/ostream.h> #include <seastar/core/app-template.hh> #include <seastar/core/do_with.hh> #include <seastar/core/future-util.hh> #include <seastar/core/reactor.hh> #include <seastar/core/sleep.hh> #include <seastar/core/with_timeout.hh> #include "test_messenger.h" using namespace std::chrono_literals; namespace bpo = boost::program_options; using crimson::common::local_conf; namespace { seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } static std::random_device rd; static std::default_random_engine rng{rd()}; static bool verbose = false; static entity_addr_t get_server_addr() { static int port = 9030; ++port; entity_addr_t saddr; saddr.parse("127.0.0.1", nullptr); saddr.set_port(port); return saddr; } static seastar::future<> test_echo(unsigned rounds, double keepalive_ratio) { struct test_state { struct Server final : public crimson::net::Dispatcher { crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; std::optional<seastar::future<>> ms_dispatch( crimson::net::ConnectionRef c, MessageRef m) override { if (verbose) { logger().info("server got {}", *m); } // reply with a pong std::ignore = c->send(crimson::make_message<MPing>()); return {seastar::now()}; } seastar::future<> init(const entity_name_t& name, const std::string& lname, const uint64_t nonce, const entity_addr_t& addr) { msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(crimson::net::SocketPolicy::stateless_server(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); return msgr->bind(entity_addrvec_t{addr}).safe_then([this] { return msgr->start({this}); }, crimson::net::Messenger::bind_ertr::all_same_way( [addr] (const std::error_code& e) { logger().error("test_echo(): " "there is another instance running at {}", addr); ceph_abort(); })); } seastar::future<> shutdown() { ceph_assert(msgr); msgr->stop(); return msgr->shutdown(); } }; struct Client final : public crimson::net::Dispatcher { struct PingSession : public seastar::enable_shared_from_this<PingSession> { unsigned count = 0u; mono_time connected_time; mono_time finish_time; }; using PingSessionRef = seastar::shared_ptr<PingSession>; unsigned rounds; std::bernoulli_distribution keepalive_dist; crimson::net::MessengerRef msgr; std::map<crimson::net::ConnectionRef, seastar::promise<>> pending_conns; std::map<crimson::net::ConnectionRef, PingSessionRef> sessions; crimson::auth::DummyAuthClientServer dummy_auth; Client(unsigned rounds, double keepalive_ratio) : rounds(rounds), keepalive_dist(std::bernoulli_distribution{keepalive_ratio}) {} PingSessionRef find_session(crimson::net::ConnectionRef c) { auto found = sessions.find(c); if (found == sessions.end()) { ceph_assert(false); } return found->second; } void ms_handle_connect( crimson::net::ConnectionRef conn, seastar::shard_id new_shard) override { assert(new_shard == seastar::this_shard_id()); auto session = seastar::make_shared<PingSession>(); auto [i, added] = sessions.emplace(conn, session); std::ignore = i; ceph_assert(added); session->connected_time = mono_clock::now(); } std::optional<seastar::future<>> ms_dispatch( crimson::net::ConnectionRef c, MessageRef m) override { auto session = find_session(c); ++(session->count); if (verbose) { logger().info("client ms_dispatch {}", session->count); } if (session->count == rounds) { logger().info("{}: finished receiving {} pongs", *c, session->count); session->finish_time = mono_clock::now(); auto found = pending_conns.find(c); ceph_assert(found != pending_conns.end()); found->second.set_value(); } return {seastar::now()}; } seastar::future<> init(const entity_name_t& name, const std::string& lname, const uint64_t nonce) { msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(crimson::net::SocketPolicy::lossy_client(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); return msgr->start({this}); } seastar::future<> shutdown() { ceph_assert(msgr); msgr->stop(); return msgr->shutdown(); } seastar::future<> dispatch_pingpong(const entity_addr_t& peer_addr) { mono_time start_time = mono_clock::now(); auto conn = msgr->connect(peer_addr, entity_name_t::TYPE_OSD); return seastar::futurize_invoke([this, conn] { return do_dispatch_pingpong(conn); }).then([this, conn, start_time] { auto session = find_session(conn); std::chrono::duration<double> dur_handshake = session->connected_time - start_time; std::chrono::duration<double> dur_pingpong = session->finish_time - session->connected_time; logger().info("{}: handshake {}, pingpong {}", *conn, dur_handshake.count(), dur_pingpong.count()); }); } private: seastar::future<> do_dispatch_pingpong(crimson::net::ConnectionRef conn) { auto [i, added] = pending_conns.emplace(conn, seastar::promise<>()); std::ignore = i; ceph_assert(added); return seastar::do_with(0u, 0u, [this, conn](auto &count_ping, auto &count_keepalive) { return seastar::do_until( [this, conn, &count_ping, &count_keepalive] { bool stop = (count_ping == rounds); if (stop) { logger().info("{}: finished sending {} pings with {} keepalives", *conn, count_ping, count_keepalive); } return stop; }, [this, conn, &count_ping, &count_keepalive] { return seastar::repeat([this, conn, &count_ping, &count_keepalive] { if (keepalive_dist(rng)) { return conn->send_keepalive() .then([&count_keepalive] { count_keepalive += 1; return seastar::make_ready_future<seastar::stop_iteration>( seastar::stop_iteration::no); }); } else { return conn->send(crimson::make_message<MPing>()) .then([&count_ping] { count_ping += 1; return seastar::make_ready_future<seastar::stop_iteration>( seastar::stop_iteration::yes); }); } }); }).then([this, conn] { auto found = pending_conns.find(conn); return found->second.get_future(); } ); }); } }; }; logger().info("test_echo(rounds={}, keepalive_ratio={}):", rounds, keepalive_ratio); auto server1 = seastar::make_shared<test_state::Server>(); auto server2 = seastar::make_shared<test_state::Server>(); auto client1 = seastar::make_shared<test_state::Client>(rounds, keepalive_ratio); auto client2 = seastar::make_shared<test_state::Client>(rounds, keepalive_ratio); // start servers and clients auto addr1 = get_server_addr(); auto addr2 = get_server_addr(); addr1.set_type(entity_addr_t::TYPE_MSGR2); addr2.set_type(entity_addr_t::TYPE_MSGR2); return seastar::when_all_succeed( server1->init(entity_name_t::OSD(0), "server1", 1, addr1), server2->init(entity_name_t::OSD(1), "server2", 2, addr2), client1->init(entity_name_t::OSD(2), "client1", 3), client2->init(entity_name_t::OSD(3), "client2", 4) // dispatch pingpoing ).then_unpack([client1, client2, server1, server2] { return seastar::when_all_succeed( // test connecting in parallel, accepting in parallel client1->dispatch_pingpong(server2->msgr->get_myaddr()), client2->dispatch_pingpong(server1->msgr->get_myaddr())); // shutdown }).then_unpack([] { return seastar::now(); }).then([client1] { logger().info("client1 shutdown..."); return client1->shutdown(); }).then([client2] { logger().info("client2 shutdown..."); return client2->shutdown(); }).then([server1] { logger().info("server1 shutdown..."); return server1->shutdown(); }).then([server2] { logger().info("server2 shutdown..."); return server2->shutdown(); }).then([] { logger().info("test_echo() done!\n"); }).handle_exception([server1, server2, client1, client2] (auto eptr) { logger().error("test_echo() failed: got exception {}", eptr); throw; }); } static seastar::future<> test_concurrent_dispatch() { struct test_state { struct Server final : public crimson::net::Dispatcher { crimson::net::MessengerRef msgr; int count = 0; seastar::promise<> on_second; // satisfied on second dispatch seastar::promise<> on_done; // satisfied when first dispatch unblocks crimson::auth::DummyAuthClientServer dummy_auth; std::optional<seastar::future<>> ms_dispatch( crimson::net::ConnectionRef, MessageRef m) override { switch (++count) { case 1: // block on the first request until we reenter with the second std::ignore = on_second.get_future().then([this] { on_done.set_value(); }); break; case 2: on_second.set_value(); break; default: throw std::runtime_error("unexpected count"); } return {seastar::now()}; } seastar::future<> wait() { return on_done.get_future(); } seastar::future<> init(const entity_name_t& name, const std::string& lname, const uint64_t nonce, const entity_addr_t& addr) { msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(crimson::net::SocketPolicy::stateless_server(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); return msgr->bind(entity_addrvec_t{addr}).safe_then([this] { return msgr->start({this}); }, crimson::net::Messenger::bind_ertr::all_same_way( [addr] (const std::error_code& e) { logger().error("test_concurrent_dispatch(): " "there is another instance running at {}", addr); ceph_abort(); })); } }; struct Client final : public crimson::net::Dispatcher { crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; std::optional<seastar::future<>> ms_dispatch( crimson::net::ConnectionRef, MessageRef m) override { return {seastar::now()}; } seastar::future<> init(const entity_name_t& name, const std::string& lname, const uint64_t nonce) { msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(crimson::net::SocketPolicy::lossy_client(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); return msgr->start({this}); } }; }; logger().info("test_concurrent_dispatch():"); auto server = seastar::make_shared<test_state::Server>(); auto client = seastar::make_shared<test_state::Client>(); auto addr = get_server_addr(); addr.set_type(entity_addr_t::TYPE_MSGR2); addr.set_family(AF_INET); return seastar::when_all_succeed( server->init(entity_name_t::OSD(4), "server3", 5, addr), client->init(entity_name_t::OSD(5), "client3", 6) ).then_unpack([server, client] { auto conn = client->msgr->connect(server->msgr->get_myaddr(), entity_name_t::TYPE_OSD); // send two messages return conn->send(crimson::make_message<MPing>()).then([conn] { return conn->send(crimson::make_message<MPing>()); }); }).then([server] { return server->wait(); }).then([client] { logger().info("client shutdown..."); client->msgr->stop(); return client->msgr->shutdown(); }).then([server] { logger().info("server shutdown..."); server->msgr->stop(); return server->msgr->shutdown(); }).then([] { logger().info("test_concurrent_dispatch() done!\n"); }).handle_exception([server, client] (auto eptr) { logger().error("test_concurrent_dispatch() failed: got exception {}", eptr); throw; }); } seastar::future<> test_preemptive_shutdown() { struct test_state { class Server final : public crimson::net::Dispatcher { crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; std::optional<seastar::future<>> ms_dispatch( crimson::net::ConnectionRef c, MessageRef m) override { std::ignore = c->send(crimson::make_message<MPing>()); return {seastar::now()}; } public: seastar::future<> init(const entity_name_t& name, const std::string& lname, const uint64_t nonce, const entity_addr_t& addr) { msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(crimson::net::SocketPolicy::stateless_server(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); return msgr->bind(entity_addrvec_t{addr}).safe_then([this] { return msgr->start({this}); }, crimson::net::Messenger::bind_ertr::all_same_way( [addr] (const std::error_code& e) { logger().error("test_preemptive_shutdown(): " "there is another instance running at {}", addr); ceph_abort(); })); } entity_addr_t get_addr() const { return msgr->get_myaddr(); } seastar::future<> shutdown() { msgr->stop(); return msgr->shutdown(); } }; class Client final : public crimson::net::Dispatcher { crimson::net::MessengerRef msgr; crimson::auth::DummyAuthClientServer dummy_auth; bool stop_send = false; seastar::promise<> stopped_send_promise; std::optional<seastar::future<>> ms_dispatch( crimson::net::ConnectionRef, MessageRef m) override { return {seastar::now()}; } public: seastar::future<> init(const entity_name_t& name, const std::string& lname, const uint64_t nonce) { msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(crimson::net::SocketPolicy::lossy_client(0)); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); return msgr->start({this}); } void send_pings(const entity_addr_t& addr) { auto conn = msgr->connect(addr, entity_name_t::TYPE_OSD); // forwarded to stopped_send_promise (void) seastar::do_until( [this] { return stop_send; }, [conn] { return conn->send(crimson::make_message<MPing>()).then([] { return seastar::sleep(0ms); }); } ).then_wrapped([this, conn] (auto fut) { fut.forward_to(std::move(stopped_send_promise)); }); } seastar::future<> shutdown() { msgr->stop(); return msgr->shutdown().then([this] { stop_send = true; return stopped_send_promise.get_future(); }); } }; }; logger().info("test_preemptive_shutdown():"); auto server = seastar::make_shared<test_state::Server>(); auto client = seastar::make_shared<test_state::Client>(); auto addr = get_server_addr(); addr.set_type(entity_addr_t::TYPE_MSGR2); addr.set_family(AF_INET); return seastar::when_all_succeed( server->init(entity_name_t::OSD(6), "server4", 7, addr), client->init(entity_name_t::OSD(7), "client4", 8) ).then_unpack([server, client] { client->send_pings(server->get_addr()); return seastar::sleep(100ms); }).then([client] { logger().info("client shutdown..."); return client->shutdown(); }).then([server] { logger().info("server shutdown..."); return server->shutdown(); }).then([] { logger().info("test_preemptive_shutdown() done!\n"); }).handle_exception([server, client] (auto eptr) { logger().error("test_preemptive_shutdown() failed: got exception {}", eptr); throw; }); } using ceph::msgr::v2::Tag; using crimson::net::bp_action_t; using crimson::net::bp_type_t; using crimson::net::Breakpoint; using crimson::net::Connection; using crimson::net::ConnectionRef; using crimson::net::custom_bp_t; using crimson::net::Dispatcher; using crimson::net::Interceptor; using crimson::net::Messenger; using crimson::net::MessengerRef; using crimson::net::SocketPolicy; using crimson::net::tag_bp_t; using namespace ceph::net::test; struct counter_t { unsigned counter = 0; }; enum class conn_state_t { unknown = 0, established, closed, replaced, }; std::ostream& operator<<(std::ostream& out, const conn_state_t& state) { switch(state) { case conn_state_t::unknown: return out << "unknown"; case conn_state_t::established: return out << "established"; case conn_state_t::closed: return out << "closed"; case conn_state_t::replaced: return out << "replaced"; default: ceph_abort(); } } } // anonymous namespace #if FMT_VERSION >= 90000 template<> struct fmt::formatter<conn_state_t> : fmt::ostream_formatter {}; #endif namespace { struct ConnResult { ConnectionRef conn; unsigned index; conn_state_t state = conn_state_t::unknown; unsigned connect_attempts = 0; unsigned client_connect_attempts = 0; unsigned client_reconnect_attempts = 0; unsigned cnt_connect_dispatched = 0; unsigned accept_attempts = 0; unsigned server_connect_attempts = 0; unsigned server_reconnect_attempts = 0; unsigned cnt_accept_dispatched = 0; unsigned cnt_reset_dispatched = 0; unsigned cnt_remote_reset_dispatched = 0; ConnResult(ConnectionRef conn, unsigned index) : conn(conn), index(index) {} template <typename T> void _assert_eq(const char* expr_actual, T actual, const char* expr_expected, T expected) const { if (actual != expected) { throw std::runtime_error(fmt::format( "[{}] {} '{}' is actually {}, not the expected '{}' {}", index, *conn, expr_actual, actual, expr_expected, expected)); } } #define ASSERT_EQUAL(actual, expected) \ _assert_eq(#actual, actual, #expected, expected) void assert_state_at(conn_state_t expected) const { ASSERT_EQUAL(state, expected); } void assert_connect(unsigned attempts, unsigned connects, unsigned reconnects, unsigned dispatched) const { ASSERT_EQUAL(connect_attempts, attempts); ASSERT_EQUAL(client_connect_attempts, connects); ASSERT_EQUAL(client_reconnect_attempts, reconnects); ASSERT_EQUAL(cnt_connect_dispatched, dispatched); } void assert_connect(unsigned attempts, unsigned dispatched) const { ASSERT_EQUAL(connect_attempts, attempts); ASSERT_EQUAL(cnt_connect_dispatched, dispatched); } void assert_accept(unsigned attempts, unsigned accepts, unsigned reaccepts, unsigned dispatched) const { ASSERT_EQUAL(accept_attempts, attempts); ASSERT_EQUAL(server_connect_attempts, accepts); ASSERT_EQUAL(server_reconnect_attempts, reaccepts); ASSERT_EQUAL(cnt_accept_dispatched, dispatched); } void assert_accept(unsigned attempts, unsigned dispatched) const { ASSERT_EQUAL(accept_attempts, attempts); ASSERT_EQUAL(cnt_accept_dispatched, dispatched); } void assert_reset(unsigned local, unsigned remote) const { ASSERT_EQUAL(cnt_reset_dispatched, local); ASSERT_EQUAL(cnt_remote_reset_dispatched, remote); } void dump() const { logger().info("\nResult({}):\n" " conn: [{}] {}:\n" " state: {}\n" " connect_attempts: {}\n" " client_connect_attempts: {}\n" " client_reconnect_attempts: {}\n" " cnt_connect_dispatched: {}\n" " accept_attempts: {}\n" " server_connect_attempts: {}\n" " server_reconnect_attempts: {}\n" " cnt_accept_dispatched: {}\n" " cnt_reset_dispatched: {}\n" " cnt_remote_reset_dispatched: {}\n", static_cast<const void*>(this), index, *conn, state, connect_attempts, client_connect_attempts, client_reconnect_attempts, cnt_connect_dispatched, accept_attempts, server_connect_attempts, server_reconnect_attempts, cnt_accept_dispatched, cnt_reset_dispatched, cnt_remote_reset_dispatched); } }; using ConnResults = std::vector<ConnResult>; struct TestInterceptor : public Interceptor { std::map<Breakpoint, std::map<unsigned, bp_action_t>> breakpoints; std::map<Breakpoint, counter_t> breakpoints_counter; std::map<ConnectionRef, unsigned> conns; ConnResults results; std::optional<seastar::abort_source> signal; TestInterceptor() = default; // only used for copy breakpoint configurations TestInterceptor(const TestInterceptor& other) { assert(other.breakpoints_counter.empty()); assert(other.conns.empty()); assert(other.results.empty()); breakpoints = other.breakpoints; assert(!other.signal); } void make_fault(Breakpoint bp, unsigned round = 1) { assert(round >= 1); breakpoints[bp][round] = bp_action_t::FAULT; } void make_block(Breakpoint bp, unsigned round = 1) { assert(round >= 1); breakpoints[bp][round] = bp_action_t::BLOCK; } void make_stall(Breakpoint bp, unsigned round = 1) { assert(round >= 1); breakpoints[bp][round] = bp_action_t::STALL; } ConnResult* find_result(ConnectionRef conn) { auto it = conns.find(conn); if (it == conns.end()) { return nullptr; } else { return &results[it->second]; } } seastar::future<> wait() { assert(!signal); signal = seastar::abort_source(); return seastar::sleep_abortable(10s, *signal).then([] { throw std::runtime_error("Timeout (10s) in TestInterceptor::wait()"); }).handle_exception_type([] (const seastar::sleep_aborted& e) { // wait done! }); } void notify() { if (signal) { signal->request_abort(); signal = std::nullopt; } } private: void register_conn(ConnectionRef conn) override { auto result = find_result(conn); if (result != nullptr) { logger().error("The connection [{}] {} already exists when register {}", result->index, *result->conn, *conn); ceph_abort(); } unsigned index = results.size(); results.emplace_back(conn, index); conns[conn] = index; notify(); logger().info("[{}] {} new connection registered", index, *conn); } void register_conn_closed(ConnectionRef conn) override { auto result = find_result(conn); if (result == nullptr) { logger().error("Untracked closed connection: {}", *conn); ceph_abort(); } if (result->state != conn_state_t::replaced) { result->state = conn_state_t::closed; } notify(); logger().info("[{}] {} closed({})", result->index, *conn, result->state); } void register_conn_ready(ConnectionRef conn) override { auto result = find_result(conn); if (result == nullptr) { logger().error("Untracked ready connection: {}", *conn); ceph_abort(); } ceph_assert(conn->is_connected()); notify(); logger().info("[{}] {} ready", result->index, *conn); } void register_conn_replaced(ConnectionRef conn) override { auto result = find_result(conn); if (result == nullptr) { logger().error("Untracked replaced connection: {}", *conn); ceph_abort(); } result->state = conn_state_t::replaced; logger().info("[{}] {} {}", result->index, *conn, result->state); } bp_action_t intercept(ConnectionRef conn, Breakpoint bp) override { ++breakpoints_counter[bp].counter; auto result = find_result(conn); if (result == nullptr) { logger().error("Untracked intercepted connection: {}, at breakpoint {}({})", *conn, bp, breakpoints_counter[bp].counter); ceph_abort(); } if (bp == custom_bp_t::SOCKET_CONNECTING) { ++result->connect_attempts; logger().info("[Test] connect_attempts={}", result->connect_attempts); } else if (bp == tag_bp_t{Tag::CLIENT_IDENT, bp_type_t::WRITE}) { ++result->client_connect_attempts; logger().info("[Test] client_connect_attempts={}", result->client_connect_attempts); } else if (bp == tag_bp_t{Tag::SESSION_RECONNECT, bp_type_t::WRITE}) { ++result->client_reconnect_attempts; logger().info("[Test] client_reconnect_attempts={}", result->client_reconnect_attempts); } else if (bp == custom_bp_t::SOCKET_ACCEPTED) { ++result->accept_attempts; logger().info("[Test] accept_attempts={}", result->accept_attempts); } else if (bp == tag_bp_t{Tag::CLIENT_IDENT, bp_type_t::READ}) { ++result->server_connect_attempts; logger().info("[Test] server_connect_attemps={}", result->server_connect_attempts); } else if (bp == tag_bp_t{Tag::SESSION_RECONNECT, bp_type_t::READ}) { ++result->server_reconnect_attempts; logger().info("[Test] server_reconnect_attempts={}", result->server_reconnect_attempts); } auto it_bp = breakpoints.find(bp); if (it_bp != breakpoints.end()) { auto it_cnt = it_bp->second.find(breakpoints_counter[bp].counter); if (it_cnt != it_bp->second.end()) { logger().info("[{}] {} intercepted {}({}) => {}", result->index, *conn, bp, breakpoints_counter[bp].counter, it_cnt->second); return it_cnt->second; } } logger().info("[{}] {} intercepted {}({})", result->index, *conn, bp, breakpoints_counter[bp].counter); return bp_action_t::CONTINUE; } }; SocketPolicy to_socket_policy(policy_t policy) { switch (policy) { case policy_t::stateful_server: return SocketPolicy::stateful_server(0); case policy_t::stateless_server: return SocketPolicy::stateless_server(0); case policy_t::lossless_peer: return SocketPolicy::lossless_peer(0); case policy_t::lossless_peer_reuse: return SocketPolicy::lossless_peer_reuse(0); case policy_t::lossy_client: return SocketPolicy::lossy_client(0); case policy_t::lossless_client: return SocketPolicy::lossless_client(0); default: logger().error("unexpected policy type"); ceph_abort(); } } class FailoverSuite : public Dispatcher { crimson::auth::DummyAuthClientServer dummy_auth; MessengerRef test_msgr; const entity_addr_t test_peer_addr; TestInterceptor interceptor; unsigned tracked_index = 0; ConnectionRef tracked_conn; unsigned pending_send = 0; unsigned pending_peer_receive = 0; unsigned pending_receive = 0; std::optional<seastar::future<>> ms_dispatch(ConnectionRef c, MessageRef m) override { auto result = interceptor.find_result(c); if (result == nullptr) { logger().error("Untracked ms dispatched connection: {}", *c); ceph_abort(); } if (tracked_conn != c) { logger().error("[{}] {} got op, but doesn't match tracked_conn [{}] {}", result->index, *c, tracked_index, *tracked_conn); ceph_abort(); } ceph_assert(result->index == tracked_index); ceph_assert(m->get_type() == CEPH_MSG_OSD_OP); ceph_assert(pending_receive > 0); --pending_receive; if (pending_receive == 0) { interceptor.notify(); } logger().info("[Test] got op, left {} ops -- [{}] {}", pending_receive, result->index, *c); return {seastar::now()}; } void ms_handle_accept( ConnectionRef conn, seastar::shard_id new_shard, bool is_replace) override { assert(new_shard == seastar::this_shard_id()); auto result = interceptor.find_result(conn); if (result == nullptr) { logger().error("Untracked accepted connection: {}", *conn); ceph_abort(); } if (tracked_conn && !tracked_conn->is_closed() && tracked_conn != conn) { logger().error("[{}] {} got accepted, but there's already traced_conn [{}] {}", result->index, *conn, tracked_index, *tracked_conn); ceph_abort(); } tracked_index = result->index; tracked_conn = conn; ++result->cnt_accept_dispatched; logger().info("[Test] got accept (cnt_accept_dispatched={}), track [{}] {}", result->cnt_accept_dispatched, result->index, *conn); std::ignore = flush_pending_send(); } void ms_handle_connect( ConnectionRef conn, seastar::shard_id new_shard) override { assert(new_shard == seastar::this_shard_id()); auto result = interceptor.find_result(conn); if (result == nullptr) { logger().error("Untracked connected connection: {}", *conn); ceph_abort(); } if (tracked_conn != conn) { logger().error("[{}] {} got connected, but doesn't match tracked_conn [{}] {}", result->index, *conn, tracked_index, *tracked_conn); ceph_abort(); } ceph_assert(result->index == tracked_index); ++result->cnt_connect_dispatched; logger().info("[Test] got connected (cnt_connect_dispatched={}) -- [{}] {}", result->cnt_connect_dispatched, result->index, *conn); } void ms_handle_reset(ConnectionRef conn, bool is_replace) override { auto result = interceptor.find_result(conn); if (result == nullptr) { logger().error("Untracked reset connection: {}", *conn); ceph_abort(); } if (tracked_conn != conn) { logger().error("[{}] {} got reset, but doesn't match tracked_conn [{}] {}", result->index, *conn, tracked_index, *tracked_conn); ceph_abort(); } ceph_assert(result->index == tracked_index); tracked_index = 0; tracked_conn = nullptr; ++result->cnt_reset_dispatched; logger().info("[Test] got reset (cnt_reset_dispatched={}), untrack [{}] {}", result->cnt_reset_dispatched, result->index, *conn); } void ms_handle_remote_reset(ConnectionRef conn) override { auto result = interceptor.find_result(conn); if (result == nullptr) { logger().error("Untracked remotely reset connection: {}", *conn); ceph_abort(); } if (tracked_conn != conn) { logger().error("[{}] {} got remotely reset, but doesn't match tracked_conn [{}] {}", result->index, *conn, tracked_index, *tracked_conn); ceph_abort(); } ceph_assert(result->index == tracked_index); ++result->cnt_remote_reset_dispatched; logger().info("[Test] got remote reset (cnt_remote_reset_dispatched={}) -- [{}] {}", result->cnt_remote_reset_dispatched, result->index, *conn); } private: seastar::future<> init(entity_addr_t test_addr, SocketPolicy policy) { test_msgr->set_default_policy(policy); test_msgr->set_auth_client(&dummy_auth); test_msgr->set_auth_server(&dummy_auth); test_msgr->set_interceptor(&interceptor); return test_msgr->bind(entity_addrvec_t{test_addr}).safe_then([this] { return test_msgr->start({this}); }, Messenger::bind_ertr::all_same_way([test_addr] (const std::error_code& e) { logger().error("FailoverSuite: " "there is another instance running at {}", test_addr); ceph_abort(); })); } seastar::future<> send_op(bool expect_reply=true) { ceph_assert(tracked_conn); if (expect_reply) { ++pending_peer_receive; } pg_t pgid; object_locator_t oloc; hobject_t hobj(object_t(), oloc.key, CEPH_NOSNAP, pgid.ps(), pgid.pool(), oloc.nspace); spg_t spgid(pgid); return tracked_conn->send(crimson::make_message<MOSDOp>(0, 0, hobj, spgid, 0, 0, 0)); } seastar::future<> flush_pending_send() { if (pending_send != 0) { logger().info("[Test] flush sending {} ops", pending_send); } ceph_assert(tracked_conn); return seastar::do_until( [this] { return pending_send == 0; }, [this] { --pending_send; return send_op(); }); } seastar::future<> wait_ready(unsigned num_ready_conns, unsigned num_replaced, bool wait_received) { unsigned pending_conns = 0; unsigned pending_establish = 0; unsigned replaced_conns = 0; for (auto& result : interceptor.results) { if (result.conn->is_closed_clean()) { if (result.state == conn_state_t::replaced) { ++replaced_conns; } } else if (result.conn->is_connected()) { if (tracked_conn != result.conn || tracked_index != result.index) { throw std::runtime_error(fmt::format( "The connected connection [{}] {} doesn't" " match the tracked connection [{}] {}", result.index, *result.conn, tracked_index, *tracked_conn)); } if (pending_send == 0 && pending_peer_receive == 0 && pending_receive == 0) { result.state = conn_state_t::established; } else { ++pending_establish; } } else { ++pending_conns; } } bool do_wait = false; if (num_ready_conns > 0) { if (interceptor.results.size() > num_ready_conns) { throw std::runtime_error(fmt::format( "{} connections, more than expected: {}", interceptor.results.size(), num_ready_conns)); } else if (interceptor.results.size() < num_ready_conns || pending_conns > 0) { logger().info("[Test] wait_ready(): wait for connections," " currently {} out of {}, pending {} ready ...", interceptor.results.size(), num_ready_conns, pending_conns); do_wait = true; } } if (wait_received && (pending_send || pending_peer_receive || pending_receive)) { if (pending_conns || pending_establish) { logger().info("[Test] wait_ready(): wait for pending_send={}," " pending_peer_receive={}, pending_receive={}," " pending {}/{} ready/establish connections ...", pending_send, pending_peer_receive, pending_receive, pending_conns, pending_establish); do_wait = true; } } if (num_replaced > 0) { if (replaced_conns > num_replaced) { throw std::runtime_error(fmt::format( "{} replaced connections, more than expected: {}", replaced_conns, num_replaced)); } if (replaced_conns < num_replaced) { logger().info("[Test] wait_ready(): wait for {} replaced connections," " currently {} ...", num_replaced, replaced_conns); do_wait = true; } } if (do_wait) { return interceptor.wait( ).then([this, num_ready_conns, num_replaced, wait_received] { return wait_ready(num_ready_conns, num_replaced, wait_received); }); } else { logger().info("[Test] wait_ready(): wait done!"); return seastar::now(); } } // called by FailoverTest public: FailoverSuite(MessengerRef test_msgr, entity_addr_t test_peer_addr, const TestInterceptor& interceptor) : test_msgr(test_msgr), test_peer_addr(test_peer_addr), interceptor(interceptor) { } entity_addr_t get_addr() const { return test_msgr->get_myaddr(); } seastar::future<> shutdown() { test_msgr->stop(); return test_msgr->shutdown(); } void needs_receive() { ++pending_receive; } void notify_peer_reply() { ceph_assert(pending_peer_receive > 0); --pending_peer_receive; logger().info("[Test] TestPeer said got op, left {} ops", pending_peer_receive); if (pending_peer_receive == 0) { interceptor.notify(); } } void post_check() const { // make sure all breakpoints were hit for (auto& kv : interceptor.breakpoints) { auto it = interceptor.breakpoints_counter.find(kv.first); if (it == interceptor.breakpoints_counter.end()) { throw std::runtime_error(fmt::format("{} was missed", kv.first)); } auto expected = kv.second.rbegin()->first; if (expected > it->second.counter) { throw std::runtime_error(fmt::format( "{} only triggered {} times, not the expected {}", kv.first, it->second.counter, expected)); } } } void dump_results() const { for (auto& result : interceptor.results) { result.dump(); } } static seastar::future<std::unique_ptr<FailoverSuite>> create(entity_addr_t test_addr, SocketPolicy test_policy, entity_addr_t test_peer_addr, const TestInterceptor& interceptor) { auto suite = std::make_unique<FailoverSuite>( Messenger::create( entity_name_t::OSD(TEST_OSD), "Test", TEST_NONCE, true), test_peer_addr, interceptor); return suite->init(test_addr, test_policy ).then([suite = std::move(suite)] () mutable { return std::move(suite); }); } // called by tests public: seastar::future<> connect_peer() { logger().info("[Test] connect_peer({})", test_peer_addr); auto conn = test_msgr->connect(test_peer_addr, entity_name_t::TYPE_OSD); auto result = interceptor.find_result(conn); ceph_assert(result != nullptr); if (tracked_conn) { if (tracked_conn->is_closed()) { ceph_assert(tracked_conn != conn); logger().info("[Test] this is a new session replacing an closed one"); } else { ceph_assert(tracked_index == result->index); ceph_assert(tracked_conn == conn); logger().info("[Test] this is not a new session"); } } else { logger().info("[Test] this is a new session"); } tracked_index = result->index; tracked_conn = conn; return flush_pending_send(); } seastar::future<> send_peer() { if (tracked_conn) { logger().info("[Test] send_peer()"); ceph_assert(!pending_send); return send_op(); } else { ++pending_send; logger().info("[Test] send_peer() (pending {})", pending_send); return seastar::now(); } } seastar::future<> keepalive_peer() { logger().info("[Test] keepalive_peer()"); ceph_assert(tracked_conn); return tracked_conn->send_keepalive(); } seastar::future<> try_send_peer() { logger().info("[Test] try_send_peer()"); ceph_assert(tracked_conn); return send_op(false); } seastar::future<> markdown() { logger().info("[Test] markdown() in 100ms ..."); ceph_assert(tracked_conn); // sleep to propagate potential remaining acks return seastar::sleep(100ms ).then([this] { tracked_conn->mark_down(); }); } seastar::future<> wait_blocked() { logger().info("[Test] wait_blocked() ..."); return interceptor.blocker.wait_blocked(); } void unblock() { logger().info("[Test] unblock()"); return interceptor.blocker.unblock(); } seastar::future<> wait_replaced(unsigned count) { logger().info("[Test] wait_replaced({}) ...", count); return wait_ready(0, count, false); } seastar::future<> wait_established() { logger().info("[Test] wait_established() ..."); return wait_ready(0, 0, true); } seastar::future<std::reference_wrapper<ConnResults>> wait_results(unsigned count) { logger().info("[Test] wait_result({}) ...", count); return wait_ready(count, 0, true).then([this] { return std::reference_wrapper<ConnResults>(interceptor.results); }); } bool is_standby() { ceph_assert(tracked_conn); return !(tracked_conn->is_connected() || tracked_conn->is_closed()); } }; class FailoverTest : public Dispatcher { crimson::auth::DummyAuthClientServer dummy_auth; MessengerRef cmd_msgr; ConnectionRef cmd_conn; const entity_addr_t test_addr; const entity_addr_t test_peer_addr; std::optional<seastar::promise<>> recv_pong; std::optional<seastar::promise<>> recv_cmdreply; std::unique_ptr<FailoverSuite> test_suite; std::optional<seastar::future<>> ms_dispatch(ConnectionRef c, MessageRef m) override { switch (m->get_type()) { case CEPH_MSG_PING: ceph_assert(recv_pong); recv_pong->set_value(); recv_pong = std::nullopt; break; case MSG_COMMAND_REPLY: ceph_assert(recv_cmdreply); recv_cmdreply->set_value(); recv_cmdreply = std::nullopt; break; case MSG_COMMAND: { auto m_cmd = boost::static_pointer_cast<MCommand>(m); ceph_assert(static_cast<cmd_t>(m_cmd->cmd[0][0]) == cmd_t::suite_recv_op); ceph_assert(test_suite); test_suite->notify_peer_reply(); break; } default: logger().error("{} got unexpected msg from cmd server: {}", *c, *m); ceph_abort(); } return {seastar::now()}; } private: seastar::future<> prepare_cmd( cmd_t cmd, std::function<void(MCommand&)> f_prepare = [] (auto& m) { return; }) { assert(!recv_cmdreply); recv_cmdreply = seastar::promise<>(); auto fut = recv_cmdreply->get_future(); auto m = crimson::make_message<MCommand>(); m->cmd.emplace_back(1, static_cast<char>(cmd)); f_prepare(*m); return cmd_conn->send(std::move(m)).then([fut = std::move(fut)] () mutable { return std::move(fut); }); } seastar::future<> start_peer(policy_t peer_policy) { return prepare_cmd(cmd_t::suite_start, [peer_policy] (auto& m) { m.cmd.emplace_back(1, static_cast<char>(peer_policy)); }); } seastar::future<> stop_peer() { return prepare_cmd(cmd_t::suite_stop); } seastar::future<> pingpong() { assert(!recv_pong); recv_pong = seastar::promise<>(); auto fut = recv_pong->get_future(); return cmd_conn->send(crimson::make_message<MPing>() ).then([fut = std::move(fut)] () mutable { return std::move(fut); }); } seastar::future<> init(entity_addr_t cmd_peer_addr) { cmd_msgr->set_default_policy(SocketPolicy::lossy_client(0)); cmd_msgr->set_auth_client(&dummy_auth); cmd_msgr->set_auth_server(&dummy_auth); return cmd_msgr->start({this}).then([this, cmd_peer_addr] { logger().info("CmdCli connect to CmdSrv({}) ...", cmd_peer_addr); cmd_conn = cmd_msgr->connect(cmd_peer_addr, entity_name_t::TYPE_OSD); return pingpong(); }); } public: FailoverTest(MessengerRef cmd_msgr, entity_addr_t test_addr, entity_addr_t test_peer_addr) : cmd_msgr(cmd_msgr), test_addr(test_addr), test_peer_addr(test_peer_addr) { } seastar::future<> shutdown() { logger().info("CmdCli shutdown..."); assert(!recv_cmdreply); auto m = crimson::make_message<MCommand>(); m->cmd.emplace_back(1, static_cast<char>(cmd_t::shutdown)); return cmd_conn->send(std::move(m)).then([] { return seastar::sleep(200ms); }).then([this] { cmd_msgr->stop(); return cmd_msgr->shutdown(); }); } static seastar::future<seastar::lw_shared_ptr<FailoverTest>> create(entity_addr_t test_addr, entity_addr_t cmd_peer_addr, entity_addr_t test_peer_addr) { auto test = seastar::make_lw_shared<FailoverTest>( Messenger::create( entity_name_t::OSD(CMD_CLI_OSD), "CmdCli", CMD_CLI_NONCE, true), test_addr, test_peer_addr); return test->init(cmd_peer_addr).then([test] { logger().info("CmdCli ready"); return test; }); } // called by tests public: seastar::future<> run_suite( std::string name, const TestInterceptor& interceptor, policy_t test_policy, policy_t peer_policy, std::function<seastar::future<>(FailoverSuite&)>&& f) { logger().info("\n\n[{}]", name); ceph_assert(!test_suite); SocketPolicy test_policy_ = to_socket_policy(test_policy); return FailoverSuite::create( test_addr, test_policy_, test_peer_addr, interceptor ).then([this, peer_policy, f = std::move(f)] (auto suite) mutable { ceph_assert(suite->get_addr() == test_addr); test_suite.swap(suite); return start_peer(peer_policy).then([this, f = std::move(f)] { return f(*test_suite); }).then([this] { test_suite->post_check(); logger().info("\n[SUCCESS]"); }).handle_exception([this] (auto eptr) { logger().info("\n[FAIL: {}]", eptr); test_suite->dump_results(); throw; }).then([this] { return stop_peer(); }).then([this] { return test_suite->shutdown().then([this] { test_suite.reset(); }); }); }); } seastar::future<> peer_connect_me() { logger().info("[Test] peer_connect_me({})", test_addr); return prepare_cmd(cmd_t::suite_connect_me, [this] (auto& m) { m.cmd.emplace_back(fmt::format("{}", test_addr)); }); } seastar::future<> peer_send_me() { logger().info("[Test] peer_send_me()"); ceph_assert(test_suite); test_suite->needs_receive(); return prepare_cmd(cmd_t::suite_send_me); } seastar::future<> try_peer_send_me() { logger().info("[Test] try_peer_send_me()"); ceph_assert(test_suite); return prepare_cmd(cmd_t::suite_send_me); } seastar::future<> send_bidirectional() { ceph_assert(test_suite); return test_suite->send_peer().then([this] { return peer_send_me(); }); } seastar::future<> peer_keepalive_me() { logger().info("[Test] peer_keepalive_me()"); ceph_assert(test_suite); return prepare_cmd(cmd_t::suite_keepalive_me); } seastar::future<> markdown_peer() { logger().info("[Test] markdown_peer() in 150ms ..."); // sleep to propagate potential remaining acks return seastar::sleep(50ms ).then([this] { return prepare_cmd(cmd_t::suite_markdown); }).then([] { // sleep awhile for peer markdown propagated return seastar::sleep(100ms); }); } }; class FailoverSuitePeer : public Dispatcher { using cb_t = std::function<seastar::future<>()>; crimson::auth::DummyAuthClientServer dummy_auth; MessengerRef peer_msgr; cb_t op_callback; ConnectionRef tracked_conn; unsigned pending_send = 0; std::optional<seastar::future<>> ms_dispatch(ConnectionRef c, MessageRef m) override { logger().info("[TestPeer] got op from Test"); ceph_assert(m->get_type() == CEPH_MSG_OSD_OP); ceph_assert(tracked_conn == c); std::ignore = op_callback(); return {seastar::now()}; } void ms_handle_accept( ConnectionRef conn, seastar::shard_id new_shard, bool is_replace) override { assert(new_shard == seastar::this_shard_id()); logger().info("[TestPeer] got accept from Test"); ceph_assert(!tracked_conn || tracked_conn->is_closed() || tracked_conn == conn); tracked_conn = conn; std::ignore = flush_pending_send(); } void ms_handle_reset(ConnectionRef conn, bool is_replace) override { logger().info("[TestPeer] got reset from Test"); ceph_assert(tracked_conn == conn); tracked_conn = nullptr; } private: seastar::future<> init(entity_addr_t test_peer_addr, SocketPolicy policy) { peer_msgr->set_default_policy(policy); peer_msgr->set_auth_client(&dummy_auth); peer_msgr->set_auth_server(&dummy_auth); return peer_msgr->bind(entity_addrvec_t{test_peer_addr}).safe_then([this] { return peer_msgr->start({this}); }, Messenger::bind_ertr::all_same_way([test_peer_addr] (const std::error_code& e) { logger().error("FailoverSuitePeer: " "there is another instance running at {}", test_peer_addr); ceph_abort(); })); } seastar::future<> send_op() { ceph_assert(tracked_conn); pg_t pgid; object_locator_t oloc; hobject_t hobj(object_t(), oloc.key, CEPH_NOSNAP, pgid.ps(), pgid.pool(), oloc.nspace); spg_t spgid(pgid); return tracked_conn->send(crimson::make_message<MOSDOp>(0, 0, hobj, spgid, 0, 0, 0)); } seastar::future<> flush_pending_send() { if (pending_send != 0) { logger().info("[TestPeer] flush sending {} ops", pending_send); } ceph_assert(tracked_conn); return seastar::do_until( [this] { return pending_send == 0; }, [this] { --pending_send; return send_op(); }); } public: FailoverSuitePeer(MessengerRef peer_msgr, cb_t op_callback) : peer_msgr(peer_msgr), op_callback(op_callback) { } seastar::future<> shutdown() { peer_msgr->stop(); return peer_msgr->shutdown(); } seastar::future<> connect_peer(entity_addr_t test_addr_decoded) { logger().info("[TestPeer] connect_peer({})", test_addr_decoded); auto new_tracked_conn = peer_msgr->connect(test_addr_decoded, entity_name_t::TYPE_OSD); if (tracked_conn) { if (tracked_conn->is_closed()) { ceph_assert(tracked_conn != new_tracked_conn); logger().info("[TestPeer] this is a new session" " replacing an closed one"); } else { ceph_assert(tracked_conn == new_tracked_conn); logger().info("[TestPeer] this is not a new session"); } } else { logger().info("[TestPeer] this is a new session"); } tracked_conn = new_tracked_conn; return flush_pending_send(); } seastar::future<> send_peer() { if (tracked_conn) { logger().info("[TestPeer] send_peer()"); return send_op(); } else { ++pending_send; logger().info("[TestPeer] send_peer() (pending {})", pending_send); return seastar::now(); } } seastar::future<> keepalive_peer() { logger().info("[TestPeer] keepalive_peer()"); ceph_assert(tracked_conn); return tracked_conn->send_keepalive(); } seastar::future<> markdown() { logger().info("[TestPeer] markdown()"); ceph_assert(tracked_conn); tracked_conn->mark_down(); return seastar::now(); } static seastar::future<std::unique_ptr<FailoverSuitePeer>> create(entity_addr_t test_peer_addr, const SocketPolicy& policy, cb_t op_callback) { auto suite = std::make_unique<FailoverSuitePeer>( Messenger::create( entity_name_t::OSD(TEST_PEER_OSD), "TestPeer", TEST_PEER_NONCE, true), op_callback ); return suite->init(test_peer_addr, policy ).then([suite = std::move(suite)] () mutable { return std::move(suite); }); } }; class FailoverTestPeer : public Dispatcher { crimson::auth::DummyAuthClientServer dummy_auth; MessengerRef cmd_msgr; ConnectionRef cmd_conn; const entity_addr_t test_peer_addr; std::unique_ptr<FailoverSuitePeer> test_suite; std::optional<seastar::future<>> ms_dispatch(ConnectionRef c, MessageRef m) override { ceph_assert(cmd_conn == c); switch (m->get_type()) { case CEPH_MSG_PING: std::ignore = c->send(crimson::make_message<MPing>()); break; case MSG_COMMAND: { auto m_cmd = boost::static_pointer_cast<MCommand>(m); auto cmd = static_cast<cmd_t>(m_cmd->cmd[0][0]); if (cmd == cmd_t::shutdown) { logger().info("CmdSrv shutdown..."); // forwarded to FailoverTestPeer::wait() cmd_msgr->stop(); std::ignore = cmd_msgr->shutdown(); } else { std::ignore = handle_cmd(cmd, m_cmd).then([c] { return c->send(crimson::make_message<MCommandReply>()); }); } break; } default: logger().error("{} got unexpected msg from cmd client: {}", *c, *m); ceph_abort(); } return {seastar::now()}; } void ms_handle_accept( ConnectionRef conn, seastar::shard_id new_shard, bool is_replace) override { assert(new_shard == seastar::this_shard_id()); cmd_conn = conn; } private: seastar::future<> notify_recv_op() { ceph_assert(cmd_conn); auto m = crimson::make_message<MCommand>(); m->cmd.emplace_back(1, static_cast<char>(cmd_t::suite_recv_op)); return cmd_conn->send(std::move(m)); } seastar::future<> handle_cmd(cmd_t cmd, MRef<MCommand> m_cmd) { switch (cmd) { case cmd_t::suite_start: { ceph_assert(!test_suite); auto policy = to_socket_policy(static_cast<policy_t>(m_cmd->cmd[1][0])); return FailoverSuitePeer::create( test_peer_addr, policy, [this] { return notify_recv_op(); } ).then([this] (auto suite) { test_suite.swap(suite); }); } case cmd_t::suite_stop: ceph_assert(test_suite); return test_suite->shutdown().then([this] { test_suite.reset(); }); case cmd_t::suite_connect_me: { ceph_assert(test_suite); entity_addr_t test_addr_decoded = entity_addr_t(); test_addr_decoded.parse(m_cmd->cmd[1].c_str(), nullptr); return test_suite->connect_peer(test_addr_decoded); } case cmd_t::suite_send_me: ceph_assert(test_suite); return test_suite->send_peer(); case cmd_t::suite_keepalive_me: ceph_assert(test_suite); return test_suite->keepalive_peer(); case cmd_t::suite_markdown: ceph_assert(test_suite); return test_suite->markdown(); default: logger().error("TestPeer got unexpected command {} from Test", fmt::ptr(m_cmd.get())); ceph_abort(); return seastar::now(); } } seastar::future<> init(entity_addr_t cmd_peer_addr) { cmd_msgr->set_default_policy(SocketPolicy::stateless_server(0)); cmd_msgr->set_auth_client(&dummy_auth); cmd_msgr->set_auth_server(&dummy_auth); return cmd_msgr->bind(entity_addrvec_t{cmd_peer_addr}).safe_then([this] { return cmd_msgr->start({this}); }, Messenger::bind_ertr::all_same_way([cmd_peer_addr] (const std::error_code& e) { logger().error("FailoverTestPeer: " "there is another instance running at {}", cmd_peer_addr); ceph_abort(); })); } public: FailoverTestPeer(MessengerRef cmd_msgr, entity_addr_t test_peer_addr) : cmd_msgr(cmd_msgr), test_peer_addr(test_peer_addr) { } seastar::future<> wait() { return cmd_msgr->wait(); } static seastar::future<std::unique_ptr<FailoverTestPeer>> create(entity_addr_t cmd_peer_addr, entity_addr_t test_peer_addr) { auto test_peer = std::make_unique<FailoverTestPeer>( Messenger::create( entity_name_t::OSD(CMD_SRV_OSD), "CmdSrv", CMD_SRV_NONCE, true), test_peer_addr); return test_peer->init(cmd_peer_addr ).then([test_peer = std::move(test_peer)] () mutable { logger().info("CmdSrv ready"); return std::move(test_peer); }); } }; seastar::future<> test_v2_lossy_early_connect_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {custom_bp_t::SOCKET_CONNECTING}, {custom_bp_t::BANNER_WRITE}, {custom_bp_t::BANNER_READ}, {custom_bp_t::BANNER_PAYLOAD_READ}, {Tag::HELLO, bp_type_t::WRITE}, {Tag::HELLO, bp_type_t::READ}, {Tag::AUTH_REQUEST, bp_type_t::WRITE}, {Tag::AUTH_DONE, bp_type_t::READ}, {Tag::AUTH_SIGNATURE, bp_type_t::WRITE}, {Tag::AUTH_SIGNATURE, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_early_connect_fault -- {}", bp), interceptor, policy_t::lossy_client, policy_t::stateless_server, [] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossy_connect_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::CLIENT_IDENT, bp_type_t::WRITE}, {Tag::SERVER_IDENT, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_connect_fault -- {}", bp), interceptor, policy_t::lossy_client, policy_t::stateless_server, [] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 2, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossy_connected_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::MESSAGE, bp_type_t::WRITE}, {Tag::MESSAGE, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_connected_fault -- {}", bp), interceptor, policy_t::lossy_client, policy_t::stateless_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(1, 0); }); }); }); }); } seastar::future<> test_v2_lossy_early_accept_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {custom_bp_t::BANNER_WRITE}, {custom_bp_t::BANNER_READ}, {custom_bp_t::BANNER_PAYLOAD_READ}, {Tag::HELLO, bp_type_t::WRITE}, {Tag::HELLO, bp_type_t::READ}, {Tag::AUTH_REQUEST, bp_type_t::READ}, {Tag::AUTH_DONE, bp_type_t::WRITE}, {Tag::AUTH_SIGNATURE, bp_type_t::WRITE}, {Tag::AUTH_SIGNATURE, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_early_accept_fault -- {}", bp), interceptor, policy_t::stateless_server, policy_t::lossy_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossy_accept_fault(FailoverTest& test) { auto bp = Breakpoint{Tag::CLIENT_IDENT, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_accept_fault -- {}", bp), interceptor, policy_t::stateless_server, policy_t::lossy_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_lossy_establishing_fault(FailoverTest& test) { auto bp = Breakpoint{Tag::SERVER_IDENT, bp_type_t::WRITE}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_establishing_fault -- {}", bp), interceptor, policy_t::stateless_server, policy_t::lossy_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(1, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_lossy_accepted_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::MESSAGE, bp_type_t::WRITE}, {Tag::MESSAGE, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossy_accepted_fault -- {}", bp), interceptor, policy_t::stateless_server, policy_t::lossy_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(1, 0); }); }); }); }); } seastar::future<> test_v2_lossless_connect_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::CLIENT_IDENT, bp_type_t::WRITE}, {Tag::SERVER_IDENT, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossless_connect_fault -- {}", bp), interceptor, policy_t::lossless_client, policy_t::stateful_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 2, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossless_connected_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::MESSAGE, bp_type_t::WRITE}, {Tag::MESSAGE, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossless_connected_fault -- {}", bp), interceptor, policy_t::lossless_client, policy_t::stateful_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 1, 1, 2); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossless_connected_fault2(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::ACK, bp_type_t::READ}, {Tag::ACK, bp_type_t::WRITE}, {Tag::KEEPALIVE2, bp_type_t::READ}, {Tag::KEEPALIVE2, bp_type_t::WRITE}, {Tag::KEEPALIVE2_ACK, bp_type_t::READ}, {Tag::KEEPALIVE2_ACK, bp_type_t::WRITE}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossless_connected_fault2 -- {}", bp), interceptor, policy_t::lossless_client, policy_t::stateful_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.keepalive_peer(); }).then([&suite] { return suite.wait_established(); }).then([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_keepalive_me(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_established(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 1, 1, 2); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossless_reconnect_fault(FailoverTest& test) { return seastar::do_with(std::vector<std::pair<Breakpoint, Breakpoint>>{ {{Tag::MESSAGE, bp_type_t::WRITE}, {Tag::SESSION_RECONNECT, bp_type_t::WRITE}}, {{Tag::MESSAGE, bp_type_t::WRITE}, {Tag::SESSION_RECONNECT_OK, bp_type_t::READ}}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp_pair) { TestInterceptor interceptor; interceptor.make_fault(bp_pair.first); interceptor.make_fault(bp_pair.second); return test.run_suite( fmt::format("test_v2_lossless_reconnect_fault -- {}, {}", bp_pair.first, bp_pair.second), interceptor, policy_t::lossless_client, policy_t::stateful_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(3, 1, 2, 2); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossless_accept_fault(FailoverTest& test) { auto bp = Breakpoint{Tag::CLIENT_IDENT, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossless_accept_fault -- {}", bp), interceptor, policy_t::stateful_server, policy_t::lossless_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_lossless_establishing_fault(FailoverTest& test) { auto bp = Breakpoint{Tag::SERVER_IDENT, bp_type_t::WRITE}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossless_establishing_fault -- {}", bp), interceptor, policy_t::stateful_server, policy_t::lossless_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_lossless_accepted_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::MESSAGE, bp_type_t::WRITE}, {Tag::MESSAGE, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_lossless_accepted_fault -- {}", bp), interceptor, policy_t::stateful_server, policy_t::lossless_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0); results[1].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_lossless_reaccept_fault(FailoverTest& test) { return seastar::do_with(std::vector<std::pair<Breakpoint, Breakpoint>>{ {{Tag::MESSAGE, bp_type_t::READ}, {Tag::SESSION_RECONNECT, bp_type_t::READ}}, {{Tag::MESSAGE, bp_type_t::READ}, {Tag::SESSION_RECONNECT_OK, bp_type_t::WRITE}}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp_pair) { TestInterceptor interceptor; interceptor.make_fault(bp_pair.first); interceptor.make_fault(bp_pair.second); return test.run_suite( fmt::format("test_v2_lossless_reaccept_fault -- {}, {}", bp_pair.first, bp_pair.second), interceptor, policy_t::stateful_server, policy_t::lossless_client, [&test, bp = bp_pair.second] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.send_bidirectional(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(3); }).then([bp] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); if (bp == Breakpoint{Tag::SESSION_RECONNECT, bp_type_t::READ}) { results[0].assert_accept(1, 1, 0, 2); } else { results[0].assert_accept(1, 1, 0, 3); } results[0].assert_reset(0, 0); if (bp == Breakpoint{Tag::SESSION_RECONNECT, bp_type_t::READ}) { results[1].assert_state_at(conn_state_t::closed); } else { results[1].assert_state_at(conn_state_t::replaced); } results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0, 1, 0); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::replaced); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 0, 1, 0); results[2].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_peer_connect_fault(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {Tag::CLIENT_IDENT, bp_type_t::WRITE}, {Tag::SERVER_IDENT, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_peer_connect_fault -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 2, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_peer_accept_fault(FailoverTest& test) { auto bp = Breakpoint{Tag::CLIENT_IDENT, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_peer_accept_fault -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_peer_establishing_fault(FailoverTest& test) { auto bp = Breakpoint{Tag::SERVER_IDENT, bp_type_t::WRITE}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_peer_establishing_fault -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_peer_connected_fault_reconnect(FailoverTest& test) { auto bp = Breakpoint{Tag::MESSAGE, bp_type_t::WRITE}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_peer_connected_fault_reconnect -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 1, 1, 2); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }); }); } seastar::future<> test_v2_peer_connected_fault_reaccept(FailoverTest& test) { auto bp = Breakpoint{Tag::MESSAGE, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_fault(bp); return test.run_suite( fmt::format("test_v2_peer_connected_fault_reaccept -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0, 1, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<bool> check_peer_wins(FailoverTest& test) { return seastar::do_with(bool(), [&test] (auto& ret) { return test.run_suite("check_peer_wins", TestInterceptor(), policy_t::lossy_client, policy_t::stateless_server, [&ret] (FailoverSuite& suite) { return suite.connect_peer().then([&suite] { return suite.wait_results(1); }).then([&ret] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); ret = results[0].conn->peer_wins(); logger().info("check_peer_wins: {}", ret); }); }).then([&ret] { return ret; }); }); } seastar::future<> test_v2_racing_reconnect_acceptor_lose(FailoverTest& test) { return seastar::do_with(std::vector<std::pair<unsigned, Breakpoint>>{ {1, {Tag::SESSION_RECONNECT, bp_type_t::READ}}, {2, {custom_bp_t::BANNER_WRITE}}, {2, {custom_bp_t::BANNER_READ}}, {2, {custom_bp_t::BANNER_PAYLOAD_READ}}, {2, {Tag::HELLO, bp_type_t::WRITE}}, {2, {Tag::HELLO, bp_type_t::READ}}, {2, {Tag::AUTH_REQUEST, bp_type_t::READ}}, {2, {Tag::AUTH_DONE, bp_type_t::WRITE}}, {2, {Tag::AUTH_SIGNATURE, bp_type_t::WRITE}}, {2, {Tag::AUTH_SIGNATURE, bp_type_t::READ}}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; // fault acceptor interceptor.make_fault({Tag::MESSAGE, bp_type_t::READ}); // block acceptor interceptor.make_block(bp.second, bp.first); return test.run_suite( fmt::format("test_v2_racing_reconnect_acceptor_lose -- {}({})", bp.second, bp.first), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_blocked(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 0, 1, 1); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::closed); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0); results[1].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_racing_reconnect_acceptor_win(FailoverTest& test) { return seastar::do_with(std::vector<std::pair<unsigned, Breakpoint>>{ {1, {Tag::SESSION_RECONNECT, bp_type_t::WRITE}}, {2, {custom_bp_t::SOCKET_CONNECTING}}, {2, {custom_bp_t::BANNER_WRITE}}, {2, {custom_bp_t::BANNER_READ}}, {2, {custom_bp_t::BANNER_PAYLOAD_READ}}, {2, {Tag::HELLO, bp_type_t::WRITE}}, {2, {Tag::HELLO, bp_type_t::READ}}, {2, {Tag::AUTH_REQUEST, bp_type_t::WRITE}}, {2, {Tag::AUTH_DONE, bp_type_t::READ}}, {2, {Tag::AUTH_SIGNATURE, bp_type_t::WRITE}}, {2, {Tag::AUTH_SIGNATURE, bp_type_t::READ}}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; // fault connector interceptor.make_fault({Tag::MESSAGE, bp_type_t::WRITE}); // block connector interceptor.make_block(bp.second, bp.first); return test.run_suite( fmt::format("test_v2_racing_reconnect_acceptor_win -- {}({})", bp.second, bp.first), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_replaced(1); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 1); results[0].assert_accept(0, 0, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0, 1, 0); results[1].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_racing_connect_acceptor_lose(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {custom_bp_t::BANNER_WRITE}, {custom_bp_t::BANNER_READ}, {custom_bp_t::BANNER_PAYLOAD_READ}, {Tag::HELLO, bp_type_t::WRITE}, {Tag::HELLO, bp_type_t::READ}, {Tag::AUTH_REQUEST, bp_type_t::READ}, {Tag::AUTH_DONE, bp_type_t::WRITE}, {Tag::AUTH_SIGNATURE, bp_type_t::WRITE}, {Tag::AUTH_SIGNATURE, bp_type_t::READ}, {Tag::CLIENT_IDENT, bp_type_t::READ}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; // block acceptor interceptor.make_block(bp); return test.run_suite( fmt::format("test_v2_racing_connect_acceptor_lose -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_blocked(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_racing_connect_acceptor_win(FailoverTest& test) { return seastar::do_with(std::vector<Breakpoint>{ {custom_bp_t::SOCKET_CONNECTING}, {custom_bp_t::BANNER_WRITE}, {custom_bp_t::BANNER_READ}, {custom_bp_t::BANNER_PAYLOAD_READ}, {Tag::HELLO, bp_type_t::WRITE}, {Tag::HELLO, bp_type_t::READ}, {Tag::AUTH_REQUEST, bp_type_t::WRITE}, {Tag::AUTH_DONE, bp_type_t::READ}, {Tag::AUTH_SIGNATURE, bp_type_t::WRITE}, {Tag::AUTH_SIGNATURE, bp_type_t::READ}, {Tag::CLIENT_IDENT, bp_type_t::WRITE}, }, [&test] (auto& failure_cases) { return seastar::do_for_each(failure_cases, [&test] (auto bp) { TestInterceptor interceptor; // block connector interceptor.make_block(bp); return test.run_suite( fmt::format("test_v2_racing_connect_acceptor_win -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_replaced(1); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 0); results[0].assert_accept(0, 0, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }); }); }); }); } seastar::future<> test_v2_racing_connect_reconnect_lose(FailoverTest& test) { TestInterceptor interceptor; interceptor.make_fault({Tag::SERVER_IDENT, bp_type_t::READ}); interceptor.make_block({Tag::CLIENT_IDENT, bp_type_t::WRITE}, 2); return test.run_suite("test_v2_racing_connect_reconnect_lose", interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_replaced(1); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 2, 0, 0); results[0].assert_accept(0, 0, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 1, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_racing_connect_reconnect_win(FailoverTest& test) { TestInterceptor interceptor; interceptor.make_fault({Tag::SERVER_IDENT, bp_type_t::READ}); interceptor.make_block({Tag::SESSION_RECONNECT, bp_type_t::READ}); return test.run_suite("test_v2_racing_connect_reconnect_win", interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_blocked(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 2, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::closed); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0, 1, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_stale_connect(FailoverTest& test) { auto bp = Breakpoint{Tag::SERVER_IDENT, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_stall(bp); return test.run_suite( fmt::format("test_v2_stale_connect -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_replaced(1); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 1, 0, 0); results[0].assert_accept(0, 0, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 1, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_stale_reconnect(FailoverTest& test) { auto bp = Breakpoint{Tag::SESSION_RECONNECT_OK, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_fault({Tag::MESSAGE, bp_type_t::WRITE}); interceptor.make_stall(bp); return test.run_suite( fmt::format("test_v2_stale_reconnect -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { return suite.send_peer(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_replaced(1); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(2, 1, 1, 1); results[0].assert_accept(0, 0, 0, 1); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0, 1, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_stale_accept(FailoverTest& test) { auto bp = Breakpoint{Tag::CLIENT_IDENT, bp_type_t::READ}; TestInterceptor interceptor; interceptor.make_stall(bp); return test.run_suite( fmt::format("test_v2_stale_accept -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_established(); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_stale_establishing(FailoverTest& test) { auto bp = Breakpoint{Tag::SERVER_IDENT, bp_type_t::WRITE}; TestInterceptor interceptor; interceptor.make_stall(bp); return test.run_suite( fmt::format("test_v2_stale_establishing -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_blocked(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_replaced(1); }).then([&suite] { suite.unblock(); return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0); results[1].assert_reset(0, 0); }); }); } seastar::future<> test_v2_stale_reaccept(FailoverTest& test) { auto bp = Breakpoint{Tag::SESSION_RECONNECT_OK, bp_type_t::WRITE}; TestInterceptor interceptor; interceptor.make_fault({Tag::MESSAGE, bp_type_t::READ}); interceptor.make_stall(bp); return test.run_suite( fmt::format("test_v2_stale_reaccept -- {}", bp), interceptor, policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { return test.peer_send_me(); }).then([&test] { return test.peer_connect_me(); }).then([&suite] { return suite.wait_blocked(); }).then([] { logger().info("[Test] block the broken REPLACING for 210ms..."); return seastar::sleep(210ms); }).then([&suite] { suite.unblock(); return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 3); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 0, 1, 0); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::replaced); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 0); results[2].assert_reset(0, 0); ceph_assert(results[2].server_reconnect_attempts >= 1); }); }); } seastar::future<> test_v2_lossy_client(FailoverTest& test) { return test.run_suite( "test_v2_lossy_client", TestInterceptor(), policy_t::lossy_client, policy_t::stateless_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return suite.connect_peer(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }).then([&suite] { logger().info("-- 1 --"); logger().info("[Test] client markdown..."); return suite.markdown(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 2 --"); logger().info("[Test] server markdown..."); return test.markdown_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::closed); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(1, 0); }).then([&suite] { logger().info("-- 3 --"); logger().info("[Test] client reconnect..."); return suite.connect_peer(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::closed); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(1, 0); results[2].assert_state_at(conn_state_t::established); results[2].assert_connect(1, 1, 0, 1); results[2].assert_accept(0, 0, 0, 0); results[2].assert_reset(0, 0); }); }); } seastar::future<> test_v2_stateless_server(FailoverTest& test) { return test.run_suite( "test_v2_stateless_server", TestInterceptor(), policy_t::stateless_server, policy_t::lossy_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return test.peer_connect_me(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(0, 0); }).then([&test] { logger().info("-- 1 --"); logger().info("[Test] client markdown..."); return test.markdown_peer(); }).then([&test] { return test.peer_connect_me(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(1, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }).then([&suite] { logger().info("-- 2 --"); logger().info("[Test] server markdown..."); return suite.markdown(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(1, 0); results[1].assert_state_at(conn_state_t::closed); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 3 --"); logger().info("[Test] client reconnect..."); return test.peer_connect_me(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(1, 0); results[1].assert_state_at(conn_state_t::closed); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 1); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::established); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 1, 0, 1); results[2].assert_reset(0, 0); }); }); } seastar::future<> test_v2_lossless_client(FailoverTest& test) { return test.run_suite( "test_v2_lossless_client", TestInterceptor(), policy_t::lossless_client, policy_t::stateful_server, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return suite.connect_peer(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }).then([&suite] { logger().info("-- 1 --"); logger().info("[Test] client markdown..."); return suite.markdown(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 2 --"); logger().info("[Test] server markdown..."); return test.markdown_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(2, 2, 1, 2); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 1); }).then([&suite] { logger().info("-- 3 --"); logger().info("[Test] client reconnect..."); return suite.connect_peer(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(2, 2, 1, 2); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 1); }); }); } seastar::future<> test_v2_stateful_server(FailoverTest& test) { return test.run_suite( "test_v2_stateful_server", TestInterceptor(), policy_t::stateful_server, policy_t::lossless_client, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return test.peer_connect_me(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(0, 0); }).then([&test] { logger().info("-- 1 --"); logger().info("[Test] client markdown..."); return test.markdown_peer(); }).then([&test] { return test.peer_connect_me(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 1); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }).then([&suite] { logger().info("-- 2 --"); logger().info("[Test] server markdown..."); return suite.markdown(); }).then([&suite] { return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 1); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::established); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 1, 1, 1); results[2].assert_reset(0, 0); }).then([&test] { logger().info("-- 3 --"); logger().info("[Test] client reconnect..."); return test.peer_connect_me(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 1); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::established); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 1, 1, 1); results[2].assert_reset(0, 0); }); }); } seastar::future<> test_v2_peer_reuse_connector(FailoverTest& test) { return test.run_suite( "test_v2_peer_reuse_connector", TestInterceptor(), policy_t::lossless_peer_reuse, policy_t::lossless_peer_reuse, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return suite.connect_peer(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }).then([&suite] { logger().info("-- 1 --"); logger().info("[Test] connector markdown..."); return suite.markdown(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 2 --"); logger().info("[Test] acceptor markdown..."); return test.markdown_peer(); }).then([&suite] { ceph_assert(suite.is_standby()); logger().info("-- 3 --"); logger().info("[Test] connector reconnect..."); return suite.connect_peer(); }).then([&suite] { return suite.try_send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(2, 2, 1, 2); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 1); }); }); } seastar::future<> test_v2_peer_reuse_acceptor(FailoverTest& test) { return test.run_suite( "test_v2_peer_reuse_acceptor", TestInterceptor(), policy_t::lossless_peer_reuse, policy_t::lossless_peer_reuse, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return test.peer_connect_me(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(0, 0); }).then([&test] { logger().info("-- 1 --"); logger().info("[Test] connector markdown..."); return test.markdown_peer(); }).then([&test] { return test.peer_connect_me(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 1); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }).then([&suite] { logger().info("-- 2 --"); logger().info("[Test] acceptor markdown..."); return suite.markdown(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 1); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 3 --"); logger().info("[Test] connector reconnect..."); return test.peer_connect_me(); }).then([&test] { return test.try_peer_send_me(); }).then([&suite] { return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 1); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::established); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 1, 1, 1); results[2].assert_reset(0, 0); }); }); } seastar::future<> test_v2_lossless_peer_connector(FailoverTest& test) { return test.run_suite( "test_v2_lossless_peer_connector", TestInterceptor(), policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&suite] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return suite.connect_peer(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); }).then([&suite] { logger().info("-- 1 --"); logger().info("[Test] connector markdown..."); return suite.markdown(); }).then([&suite] { return suite.connect_peer(); }).then([&suite] { return suite.send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(1, 1, 0, 1); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 2 --"); logger().info("[Test] acceptor markdown..."); return test.markdown_peer(); }).then([&suite] { ceph_assert(suite.is_standby()); logger().info("-- 3 --"); logger().info("[Test] connector reconnect..."); return suite.connect_peer(); }).then([&suite] { return suite.try_send_peer(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(1, 1, 0, 1); results[0].assert_accept(0, 0, 0, 0); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::established); results[1].assert_connect(2, 2, 1, 2); results[1].assert_accept(0, 0, 0, 0); results[1].assert_reset(0, 1); }); }); } seastar::future<> test_v2_lossless_peer_acceptor(FailoverTest& test) { return test.run_suite( "test_v2_lossless_peer_acceptor", TestInterceptor(), policy_t::lossless_peer, policy_t::lossless_peer, [&test] (FailoverSuite& suite) { return seastar::futurize_invoke([&test] { logger().info("-- 0 --"); logger().info("[Test] setup connection..."); return test.peer_connect_me(); }).then([&test] { return test.send_bidirectional(); }).then([&suite] { return suite.wait_results(1); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 1); results[0].assert_reset(0, 0); }).then([&test] { logger().info("-- 1 --"); logger().info("[Test] connector markdown..."); return test.markdown_peer(); }).then([&test] { return test.peer_connect_me(); }).then([&test] { return test.peer_send_me(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::established); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }).then([&suite] { logger().info("-- 2 --"); logger().info("[Test] acceptor markdown..."); return suite.markdown(); }).then([&suite] { return suite.wait_results(2); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); }).then([&test] { logger().info("-- 3 --"); logger().info("[Test] connector reconnect..."); return test.peer_connect_me(); }).then([&test] { return test.try_peer_send_me(); }).then([&suite] { return suite.wait_results(3); }).then([] (ConnResults& results) { results[0].assert_state_at(conn_state_t::closed); results[0].assert_connect(0, 0, 0, 0); results[0].assert_accept(1, 1, 0, 2); results[0].assert_reset(0, 0); results[1].assert_state_at(conn_state_t::replaced); results[1].assert_connect(0, 0, 0, 0); results[1].assert_accept(1, 1, 0, 0); results[1].assert_reset(0, 0); results[2].assert_state_at(conn_state_t::established); results[2].assert_connect(0, 0, 0, 0); results[2].assert_accept(1, 1, 1, 1); results[2].assert_reset(0, 0); }); }); } seastar::future<> test_v2_protocol(entity_addr_t test_addr, entity_addr_t cmd_peer_addr, entity_addr_t test_peer_addr, bool test_peer_islocal, bool peer_wins) { ceph_assert_always(test_addr.is_msgr2()); ceph_assert_always(cmd_peer_addr.is_msgr2()); ceph_assert_always(test_peer_addr.is_msgr2()); if (test_peer_islocal) { // initiate crimson test peer locally logger().info("test_v2_protocol: start local TestPeer at {}...", cmd_peer_addr); return FailoverTestPeer::create(cmd_peer_addr, test_peer_addr ).then([test_addr, cmd_peer_addr, test_peer_addr, peer_wins](auto peer) { return test_v2_protocol( test_addr, cmd_peer_addr, test_peer_addr, false, peer_wins ).then([peer = std::move(peer)] () mutable { return peer->wait().then([peer = std::move(peer)] {}); }); }).handle_exception([] (auto eptr) { logger().error("FailoverTestPeer failed: got exception {}", eptr); throw; }); } return FailoverTest::create(test_addr, cmd_peer_addr, test_peer_addr ).then([peer_wins](auto test) { return seastar::futurize_invoke([test] { return test_v2_lossy_early_connect_fault(*test); }).then([test] { return test_v2_lossy_connect_fault(*test); }).then([test] { return test_v2_lossy_connected_fault(*test); }).then([test] { return test_v2_lossy_early_accept_fault(*test); }).then([test] { return test_v2_lossy_accept_fault(*test); }).then([test] { return test_v2_lossy_establishing_fault(*test); }).then([test] { return test_v2_lossy_accepted_fault(*test); }).then([test] { return test_v2_lossless_connect_fault(*test); }).then([test] { return test_v2_lossless_connected_fault(*test); }).then([test] { return test_v2_lossless_connected_fault2(*test); }).then([test] { return test_v2_lossless_reconnect_fault(*test); }).then([test] { return test_v2_lossless_accept_fault(*test); }).then([test] { return test_v2_lossless_establishing_fault(*test); }).then([test] { return test_v2_lossless_accepted_fault(*test); }).then([test] { return test_v2_lossless_reaccept_fault(*test); }).then([test] { return test_v2_peer_connect_fault(*test); }).then([test] { return test_v2_peer_accept_fault(*test); }).then([test] { return test_v2_peer_establishing_fault(*test); }).then([test] { return test_v2_peer_connected_fault_reconnect(*test); }).then([test] { return test_v2_peer_connected_fault_reaccept(*test); }).then([test] { return check_peer_wins(*test); }).then([test, peer_wins](bool ret_peer_wins) { ceph_assert(peer_wins == ret_peer_wins); if (ret_peer_wins) { return seastar::futurize_invoke([test] { return test_v2_racing_connect_acceptor_win(*test); }).then([test] { return test_v2_racing_reconnect_acceptor_win(*test); }); } else { return seastar::futurize_invoke([test] { return test_v2_racing_connect_acceptor_lose(*test); }).then([test] { return test_v2_racing_reconnect_acceptor_lose(*test); }); } }).then([test] { return test_v2_racing_connect_reconnect_win(*test); }).then([test] { return test_v2_racing_connect_reconnect_lose(*test); }).then([test] { return test_v2_stale_connect(*test); }).then([test] { return test_v2_stale_reconnect(*test); }).then([test] { return test_v2_stale_accept(*test); }).then([test] { return test_v2_stale_establishing(*test); }).then([test] { return test_v2_stale_reaccept(*test); }).then([test] { return test_v2_lossy_client(*test); }).then([test] { return test_v2_stateless_server(*test); }).then([test] { return test_v2_lossless_client(*test); }).then([test] { return test_v2_stateful_server(*test); }).then([test] { return test_v2_peer_reuse_connector(*test); }).then([test] { return test_v2_peer_reuse_acceptor(*test); }).then([test] { return test_v2_lossless_peer_connector(*test); }).then([test] { return test_v2_lossless_peer_acceptor(*test); }).then([test] { return test->shutdown().then([test] {}); }); }).handle_exception([] (auto eptr) { logger().error("FailoverTest failed: got exception {}", eptr); throw; }); } } seastar::future<int> do_test(seastar::app_template& app) { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster) .then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([&app] { auto&& config = app.configuration(); verbose = config["verbose"].as<bool>(); auto rounds = config["rounds"].as<unsigned>(); auto keepalive_ratio = config["keepalive-ratio"].as<double>(); auto testpeer_islocal = config["testpeer-islocal"].as<bool>(); entity_addr_t test_addr; ceph_assert(test_addr.parse( config["test-addr"].as<std::string>().c_str(), nullptr)); test_addr.set_nonce(TEST_NONCE); entity_addr_t cmd_peer_addr; ceph_assert(cmd_peer_addr.parse( config["testpeer-addr"].as<std::string>().c_str(), nullptr)); cmd_peer_addr.set_nonce(CMD_SRV_NONCE); entity_addr_t test_peer_addr = get_test_peer_addr(cmd_peer_addr); bool peer_wins = (test_addr > test_peer_addr); logger().info("test configuration: verbose={}, rounds={}, keepalive_ratio={}, " "test_addr={}, cmd_peer_addr={}, test_peer_addr={}, " "testpeer_islocal={}, peer_wins={}", verbose, rounds, keepalive_ratio, test_addr, cmd_peer_addr, test_peer_addr, testpeer_islocal, peer_wins); return test_echo(rounds, keepalive_ratio ).then([] { return test_concurrent_dispatch(); }).then([] { return test_preemptive_shutdown(); }).then([test_addr, cmd_peer_addr, test_peer_addr, testpeer_islocal, peer_wins] { return test_v2_protocol( test_addr, cmd_peer_addr, test_peer_addr, testpeer_islocal, peer_wins); }).then([] { logger().info("All tests succeeded"); // Seastar has bugs to have events undispatched during shutdown, // which will result in memory leak and thus fail LeakSanitizer. return seastar::sleep(100ms); }); }).then([] { return crimson::common::sharded_conf().stop(); }).then([] { return 0; }).handle_exception([] (auto eptr) { logger().error("Test failed: got exception {}", eptr); return 1; }); } int main(int argc, char** argv) { seastar::app_template app; app.add_options() ("verbose,v", bpo::value<bool>()->default_value(false), "chatty if true") ("rounds", bpo::value<unsigned>()->default_value(512), "number of pingpong rounds") ("keepalive-ratio", bpo::value<double>()->default_value(0.1), "ratio of keepalive in ping messages") ("test-addr", bpo::value<std::string>()->default_value("v2:127.0.0.1:9014"), "address of v2 failover tests") ("testpeer-addr", bpo::value<std::string>()->default_value("v2:127.0.0.1:9012"), "addresses of v2 failover testpeer" " (This is CmdSrv address, and TestPeer address is at port+=1)") ("testpeer-islocal", bpo::value<bool>()->default_value(true), "create a local crimson testpeer, or connect to a remote testpeer"); return app.run(argc, argv, [&app] { // This test normally succeeds within 60 seconds, so kill it after 300 // seconds in case it is blocked forever due to unaddressed bugs. return seastar::with_timeout(seastar::lowres_clock::now() + 300s, do_test(app)) .handle_exception_type([](seastar::timed_out_error&) { logger().error("test_messenger timeout after 300s, abort! " "Consider to extend the period if the test is still running."); // use the retcode of timeout(1) return 124; }); }); }
130,632
33.92861
102
cc
null
ceph-main/src/test/crimson/test_messenger.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include "msg/msg_types.h" namespace ceph::net::test { constexpr uint64_t CMD_CLI_NONCE = 1; constexpr int64_t CMD_CLI_OSD = 1; constexpr uint64_t TEST_NONCE = 2; constexpr int64_t TEST_OSD = 2; constexpr uint64_t CMD_SRV_NONCE = 3; constexpr int64_t CMD_SRV_OSD = 3; constexpr uint64_t TEST_PEER_NONCE = 2; constexpr int64_t TEST_PEER_OSD = 4; inline entity_addr_t get_test_peer_addr( const entity_addr_t &cmd_peer_addr) { entity_addr_t test_peer_addr = cmd_peer_addr; test_peer_addr.set_port(cmd_peer_addr.get_port() + 1); test_peer_addr.set_nonce(TEST_PEER_NONCE); return test_peer_addr; } enum class cmd_t : char { none = '\0', shutdown, suite_start, suite_stop, suite_connect_me, suite_send_me, suite_keepalive_me, suite_markdown, suite_recv_op }; enum class policy_t : char { none = '\0', stateful_server, stateless_server, lossless_peer, lossless_peer_reuse, lossy_client, lossless_client }; inline std::ostream& operator<<(std::ostream& out, const cmd_t& cmd) { switch(cmd) { case cmd_t::none: return out << "none"; case cmd_t::shutdown: return out << "shutdown"; case cmd_t::suite_start: return out << "suite_start"; case cmd_t::suite_stop: return out << "suite_stop"; case cmd_t::suite_connect_me: return out << "suite_connect_me"; case cmd_t::suite_send_me: return out << "suite_send_me"; case cmd_t::suite_keepalive_me: return out << "suite_keepalive_me"; case cmd_t::suite_markdown: return out << "suite_markdown"; case cmd_t::suite_recv_op: return out << "suite_recv_op"; default: ceph_abort(); } } inline std::ostream& operator<<(std::ostream& out, const policy_t& policy) { switch(policy) { case policy_t::none: return out << "none"; case policy_t::stateful_server: return out << "stateful_server"; case policy_t::stateless_server: return out << "stateless_server"; case policy_t::lossless_peer: return out << "lossless_peer"; case policy_t::lossless_peer_reuse: return out << "lossless_peer_reuse"; case policy_t::lossy_client: return out << "lossy_client"; case policy_t::lossless_client: return out << "lossless_client"; default: ceph_abort(); } } } // namespace ceph::net::test
2,397
23.979167
76
h
null
ceph-main/src/test/crimson/test_messenger_peer.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- #include <boost/pointer_cast.hpp> #include <boost/program_options/variables_map.hpp> #include <boost/program_options/parsers.hpp> #include "auth/DummyAuth.h" #include "common/dout.h" #include "global/global_init.h" #include "messages/MPing.h" #include "messages/MCommand.h" #include "messages/MCommandReply.h" #include "messages/MOSDOp.h" #include "msg/Dispatcher.h" #include "msg/Messenger.h" #include "test_messenger.h" namespace { #define dout_subsys ceph_subsys_test using namespace ceph::net::test; using SocketPolicy = Messenger::Policy; constexpr int CEPH_OSD_PROTOCOL = 10; class FailoverSuitePeer : public Dispatcher { using cb_t = std::function<void()>; DummyAuthClientServer dummy_auth; std::unique_ptr<Messenger> peer_msgr; cb_t op_callback; Connection* tracked_conn = nullptr; unsigned pending_send = 0; bool ms_can_fast_dispatch_any() const override { return true; } bool ms_can_fast_dispatch(const Message* m) const override { return true; } void ms_fast_dispatch(Message* m) override { auto conn = m->get_connection().get(); if (tracked_conn == nullptr) { ldout(cct, 0) << "[!TestPeer] got op from Test(conn " << conn << "not tracked yet)" << dendl; tracked_conn = conn; } else if (tracked_conn != conn) { lderr(cct) << "[TestPeer] got op from Test: conn(" << conn << ") != tracked_conn(" << tracked_conn << ")" << dendl; ceph_abort(); } else { ldout(cct, 0) << "[TestPeer] got op from Test" << dendl; } op_callback(); } bool ms_dispatch(Message* m) override { ceph_abort(); } void ms_handle_fast_connect(Connection* conn) override { if (tracked_conn == conn) { ldout(cct, 0) << "[TestPeer] connected: " << conn << dendl; } else { lderr(cct) << "[TestPeer] connected: conn(" << conn << ") != tracked_conn(" << tracked_conn << ")" << dendl; ceph_abort(); } } void ms_handle_fast_accept(Connection* conn) override { if (tracked_conn == nullptr) { ldout(cct, 0) << "[TestPeer] accepted: " << conn << dendl; tracked_conn = conn; } else if (tracked_conn != conn) { lderr(cct) << "[TestPeer] accepted: conn(" << conn << ") != tracked_conn(" << tracked_conn << ")" << dendl; ceph_abort(); } else { ldout(cct, 0) << "[!TestPeer] accepted(stale event): " << conn << dendl; } flush_pending_send(); } bool ms_handle_reset(Connection* conn) override { if (tracked_conn == conn) { ldout(cct, 0) << "[TestPeer] reset: " << conn << dendl; tracked_conn = nullptr; } else { ldout(cct, 0) << "[!TestPeer] reset(invalid event): conn(" << conn << ") != tracked_conn(" << tracked_conn << ")" << dendl; } return true; } void ms_handle_remote_reset(Connection* conn) override { if (tracked_conn == conn) { ldout(cct, 0) << "[TestPeer] remote reset: " << conn << dendl; } else { ldout(cct, 0) << "[!TestPeer] reset(invalid event): conn(" << conn << ") != tracked_conn(" << tracked_conn << ")" << dendl; } } bool ms_handle_refused(Connection* conn) override { ldout(cct, 0) << "[!TestPeer] refused: " << conn << dendl; return true; } private: void init(entity_addr_t test_peer_addr, SocketPolicy policy) { peer_msgr.reset(Messenger::create( cct, "async", entity_name_t::OSD(TEST_PEER_OSD), "TestPeer", TEST_PEER_NONCE)); dummy_auth.auth_registry.refresh_config(); peer_msgr->set_cluster_protocol(CEPH_OSD_PROTOCOL); peer_msgr->set_default_policy(policy); peer_msgr->set_auth_client(&dummy_auth); peer_msgr->set_auth_server(&dummy_auth); peer_msgr->bind(test_peer_addr); peer_msgr->add_dispatcher_head(this); peer_msgr->start(); } void send_op() { ceph_assert(tracked_conn); pg_t pgid; object_locator_t oloc; hobject_t hobj(object_t(), oloc.key, CEPH_NOSNAP, pgid.ps(), pgid.pool(), oloc.nspace); spg_t spgid(pgid); tracked_conn->send_message2(make_message<MOSDOp>(0, 0, hobj, spgid, 0, 0, 0)); } void flush_pending_send() { if (pending_send != 0) { ldout(cct, 0) << "[TestPeer] flush sending " << pending_send << " ops" << dendl; } ceph_assert(tracked_conn); while (pending_send) { send_op(); --pending_send; } } public: FailoverSuitePeer(CephContext* cct, cb_t op_callback) : Dispatcher(cct), dummy_auth(cct), op_callback(op_callback) { } void shutdown() { peer_msgr->shutdown(); peer_msgr->wait(); } void connect_peer(entity_addr_t test_addr) { ldout(cct, 0) << "[TestPeer] connect_peer(" << test_addr << ")" << dendl; auto conn = peer_msgr->connect_to_osd(entity_addrvec_t{test_addr}); if (tracked_conn) { if (tracked_conn == conn.get()) { ldout(cct, 0) << "[TestPeer] this is not a new session " << conn.get() << dendl; } else { ldout(cct, 0) << "[TestPeer] this is a new session " << conn.get() << ", replacing old one " << tracked_conn << dendl; } } else { ldout(cct, 0) << "[TestPeer] this is a new session " << conn.get() << dendl; } tracked_conn = conn.get(); flush_pending_send(); } void send_peer() { if (tracked_conn) { ldout(cct, 0) << "[TestPeer] send_peer()" << dendl; send_op(); } else { ++pending_send; ldout(cct, 0) << "[TestPeer] send_peer() (pending " << pending_send << ")" << dendl; } } void keepalive_peer() { ldout(cct, 0) << "[TestPeer] keepalive_peer()" << dendl; ceph_assert(tracked_conn); tracked_conn->send_keepalive(); } void markdown() { ldout(cct, 0) << "[TestPeer] markdown()" << dendl; ceph_assert(tracked_conn); tracked_conn->mark_down(); tracked_conn = nullptr; } static std::unique_ptr<FailoverSuitePeer> create(CephContext* cct, entity_addr_t test_peer_addr, SocketPolicy policy, cb_t op_callback) { auto suite = std::make_unique<FailoverSuitePeer>(cct, op_callback); suite->init(test_peer_addr, policy); return suite; } }; SocketPolicy to_socket_policy(CephContext* cct, policy_t policy) { switch (policy) { case policy_t::stateful_server: return SocketPolicy::stateful_server(0); case policy_t::stateless_server: return SocketPolicy::stateless_server(0); case policy_t::lossless_peer: return SocketPolicy::lossless_peer(0); case policy_t::lossless_peer_reuse: return SocketPolicy::lossless_peer_reuse(0); case policy_t::lossy_client: return SocketPolicy::lossy_client(0); case policy_t::lossless_client: return SocketPolicy::lossless_client(0); default: lderr(cct) << "[CmdSrv] unexpected policy type" << dendl; ceph_abort(); } } class FailoverTestPeer : public Dispatcher { DummyAuthClientServer dummy_auth; std::unique_ptr<Messenger> cmd_msgr; Connection *cmd_conn = nullptr; const entity_addr_t test_peer_addr; std::unique_ptr<FailoverSuitePeer> test_suite; const bool nonstop; bool ms_can_fast_dispatch_any() const override { return false; } bool ms_can_fast_dispatch(const Message* m) const override { return false; } void ms_fast_dispatch(Message* m) override { ceph_abort(); } bool ms_dispatch(Message* m) override { auto conn = m->get_connection().get(); if (cmd_conn == nullptr) { ldout(cct, 0) << "[!CmdSrv] got msg from CmdCli(conn " << conn << "not tracked yet)" << dendl; cmd_conn = conn; } else if (cmd_conn != conn) { lderr(cct) << "[CmdSrv] got msg from CmdCli: conn(" << conn << ") != cmd_conn(" << cmd_conn << ")" << dendl; ceph_abort(); } else { // good! } switch (m->get_type()) { case CEPH_MSG_PING: { ldout(cct, 0) << "[CmdSrv] got PING, sending PONG ..." << dendl; cmd_conn->send_message2(make_message<MPing>()); break; } case MSG_COMMAND: { auto m_cmd = boost::static_pointer_cast<MCommand>(m); auto cmd = static_cast<cmd_t>(m_cmd->cmd[0][0]); if (cmd == cmd_t::shutdown) { ldout(cct, 0) << "All tests succeeded" << dendl; if (!nonstop) { ldout(cct, 0) << "[CmdSrv] shutdown ..." << dendl; cmd_msgr->shutdown(); } else { ldout(cct, 0) << "[CmdSrv] nonstop set ..." << dendl; } } else { ldout(cct, 0) << "[CmdSrv] got cmd " << cmd << dendl; handle_cmd(cmd, m_cmd); ldout(cct, 0) << "[CmdSrv] done, send cmd reply ..." << dendl; cmd_conn->send_message2(make_message<MCommandReply>()); } break; } default: lderr(cct) << "[CmdSrv] " << __func__ << " " << cmd_conn << " got unexpected msg from CmdCli: " << m << dendl; ceph_abort(); } m->put(); return true; } void ms_handle_fast_connect(Connection*) override { ceph_abort(); } void ms_handle_fast_accept(Connection *conn) override { if (cmd_conn == nullptr) { ldout(cct, 0) << "[CmdSrv] accepted: " << conn << dendl; cmd_conn = conn; } else if (cmd_conn != conn) { lderr(cct) << "[CmdSrv] accepted: conn(" << conn << ") != cmd_conn(" << cmd_conn << ")" << dendl; ceph_abort(); } else { ldout(cct, 0) << "[!CmdSrv] accepted(stale event): " << conn << dendl; } } bool ms_handle_reset(Connection* conn) override { if (cmd_conn == conn) { ldout(cct, 0) << "[CmdSrv] reset: " << conn << dendl; cmd_conn = nullptr; } else { ldout(cct, 0) << "[!CmdSrv] reset(invalid event): conn(" << conn << ") != cmd_conn(" << cmd_conn << ")" << dendl; } return true; } void ms_handle_remote_reset(Connection*) override { ceph_abort(); } bool ms_handle_refused(Connection*) override { ceph_abort(); } private: void notify_recv_op() { ceph_assert(cmd_conn); auto m = make_message<MCommand>(); m->cmd.emplace_back(1, static_cast<char>(cmd_t::suite_recv_op)); cmd_conn->send_message2(m); } void handle_cmd(cmd_t cmd, MRef<MCommand> m_cmd) { switch (cmd) { case cmd_t::suite_start: { if (test_suite) { test_suite->shutdown(); test_suite.reset(); ldout(cct, 0) << "-------- suite stopped (force) --------\n\n" << dendl; } auto p = static_cast<policy_t>(m_cmd->cmd[1][0]); ldout(cct, 0) << "[CmdSrv] suite starting (" << p <<", " << test_peer_addr << ") ..." << dendl; auto policy = to_socket_policy(cct, p); auto suite = FailoverSuitePeer::create(cct, test_peer_addr, policy, [this] { notify_recv_op(); }); test_suite.swap(suite); return; } case cmd_t::suite_stop: ceph_assert(test_suite); test_suite->shutdown(); test_suite.reset(); ldout(cct, 0) << "-------- suite stopped --------\n\n" << dendl; return; case cmd_t::suite_connect_me: { ceph_assert(test_suite); entity_addr_t test_addr = entity_addr_t(); test_addr.parse(m_cmd->cmd[1].c_str(), nullptr); test_suite->connect_peer(test_addr); return; } case cmd_t::suite_send_me: ceph_assert(test_suite); test_suite->send_peer(); return; case cmd_t::suite_keepalive_me: ceph_assert(test_suite); test_suite->keepalive_peer(); return; case cmd_t::suite_markdown: ceph_assert(test_suite); test_suite->markdown(); return; default: lderr(cct) << "[CmdSrv] got unexpected command " << m_cmd << " from CmdCli" << dendl; ceph_abort(); } } void init(entity_addr_t cmd_peer_addr) { cmd_msgr.reset(Messenger::create( cct, "async", entity_name_t::OSD(CMD_SRV_OSD), "CmdSrv", CMD_SRV_NONCE)); dummy_auth.auth_registry.refresh_config(); cmd_msgr->set_cluster_protocol(CEPH_OSD_PROTOCOL); cmd_msgr->set_default_policy(Messenger::Policy::stateless_server(0)); cmd_msgr->set_auth_client(&dummy_auth); cmd_msgr->set_auth_server(&dummy_auth); cmd_msgr->bind(cmd_peer_addr); cmd_msgr->add_dispatcher_head(this); cmd_msgr->start(); } public: FailoverTestPeer(CephContext* cct, entity_addr_t test_peer_addr, bool nonstop) : Dispatcher(cct), dummy_auth(cct), test_peer_addr(test_peer_addr), nonstop(nonstop) { } void wait() { cmd_msgr->wait(); } static std::unique_ptr<FailoverTestPeer> create(CephContext* cct, entity_addr_t cmd_peer_addr, entity_addr_t test_peer_addr, bool nonstop) { auto test_peer = std::make_unique<FailoverTestPeer>( cct, test_peer_addr, nonstop); test_peer->init(cmd_peer_addr); ldout(cct, 0) << "[CmdSrv] ready" << dendl; return test_peer; } }; } int main(int argc, char** argv) { namespace po = boost::program_options; po::options_description desc{"Allowed options"}; desc.add_options() ("help,h", "show help message") ("addr", po::value<std::string>()->default_value("v2:127.0.0.1:9012"), "This is CmdSrv address, and TestPeer address is at port+=1") ("nonstop", po::value<bool>()->default_value(false), "Do not shutdown TestPeer when all tests are successful"); po::variables_map vm; std::vector<std::string> unrecognized_options; try { auto parsed = po::command_line_parser(argc, argv) .options(desc) .allow_unregistered() .run(); po::store(parsed, vm); if (vm.count("help")) { std::cout << desc << std::endl; return 0; } po::notify(vm); unrecognized_options = po::collect_unrecognized(parsed.options, po::include_positional); } catch(const po::error& e) { std::cerr << "error: " << e.what() << std::endl; return 1; } std::vector<const char*> args(argv, argv + argc); auto cct = global_init(nullptr, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_MON_CONFIG); common_init_finish(cct.get()); auto addr = vm["addr"].as<std::string>(); entity_addr_t cmd_peer_addr; cmd_peer_addr.parse(addr.c_str(), nullptr); cmd_peer_addr.set_nonce(CMD_SRV_NONCE); ceph_assert_always(cmd_peer_addr.is_msgr2()); auto test_peer_addr = get_test_peer_addr(cmd_peer_addr); auto nonstop = vm["nonstop"].as<bool>(); ldout(cct, 0) << "test configuration: cmd_peer_addr=" << cmd_peer_addr << ", test_peer_addr=" << test_peer_addr << ", nonstop=" << nonstop << dendl; auto test_peer = FailoverTestPeer::create( cct.get(), cmd_peer_addr, test_peer_addr, nonstop); test_peer->wait(); }
15,161
31.7473
92
cc
null
ceph-main/src/test/crimson/test_messenger_thrash.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <map> #include <random> #include <fmt/format.h> #include <fmt/ostream.h> #include <seastar/core/app-template.hh> #include <seastar/core/do_with.hh> #include <seastar/core/future-util.hh> #include <seastar/core/reactor.hh> #include <seastar/core/sleep.hh> #include <seastar/core/with_timeout.hh> #include "common/ceph_argparse.h" #include "messages/MPing.h" #include "messages/MCommand.h" #include "crimson/auth/DummyAuth.h" #include "crimson/common/log.h" #include "crimson/net/Connection.h" #include "crimson/net/Dispatcher.h" #include "crimson/net/Messenger.h" using namespace std::chrono_literals; namespace bpo = boost::program_options; using crimson::common::local_conf; using payload_seq_t = uint64_t; struct Payload { enum Who : uint8_t { PING = 0, PONG = 1, }; uint8_t who = 0; payload_seq_t seq = 0; bufferlist data; Payload(Who who, uint64_t seq, const bufferlist& data) : who(who), seq(seq), data(data) {} Payload() = default; DENC(Payload, v, p) { DENC_START(1, 1, p); denc(v.who, p); denc(v.seq, p); denc(v.data, p); DENC_FINISH(p); } }; WRITE_CLASS_DENC(Payload) template<> struct fmt::formatter<Payload> : fmt::formatter<std::string_view> { template <typename FormatContext> auto format(const Payload& pl, FormatContext& ctx) const { return fmt::format_to(ctx.out(), "reply={} i={}", pl.who, pl.seq); } }; namespace { seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } std::random_device rd; std::default_random_engine rng{rd()}; std::uniform_int_distribution<> prob(0,99); bool verbose = false; entity_addr_t get_server_addr() { static int port = 16800; ++port; entity_addr_t saddr; saddr.parse("127.0.0.1", nullptr); saddr.set_port(port); return saddr; } uint64_t get_nonce() { static uint64_t nonce = 1; ++nonce; return nonce; } struct thrash_params_t { std::size_t servers; std::size_t clients; std::size_t connections; std::size_t random_op; }; class SyntheticWorkload; class SyntheticDispatcher final : public crimson::net::Dispatcher { public: std::map<crimson::net::Connection*, std::deque<payload_seq_t> > conn_sent; std::map<payload_seq_t, bufferlist> sent; unsigned index; SyntheticWorkload *workload; SyntheticDispatcher(bool s, SyntheticWorkload *wl): index(0), workload(wl) { } std::optional<seastar::future<>> ms_dispatch(crimson::net::ConnectionRef con, MessageRef m) final { if (verbose) { logger().warn("{}: con = {}", __func__, *con); } // MSG_COMMAND is used to disorganize regular message flow if (m->get_type() == MSG_COMMAND) { return seastar::now(); } Payload pl; auto p = m->get_data().cbegin(); decode(pl, p); if (pl.who == Payload::PING) { logger().info(" {} conn= {} {}", __func__, *con, pl); return reply_message(m, con, pl); } else { ceph_assert(pl.who == Payload::PONG); if (sent.count(pl.seq)) { logger().info(" {} conn= {} {}", __func__, *con, pl); ceph_assert(conn_sent[&*con].front() == pl.seq); ceph_assert(pl.data.contents_equal(sent[pl.seq])); conn_sent[&*con].pop_front(); sent.erase(pl.seq); } return seastar::now(); } } void ms_handle_accept( crimson::net::ConnectionRef conn, seastar::shard_id new_shard, bool is_replace) final { logger().info("{} - Connection:{}", __func__, *conn); assert(new_shard == seastar::this_shard_id()); } void ms_handle_connect( crimson::net::ConnectionRef conn, seastar::shard_id new_shard) final { logger().info("{} - Connection:{}", __func__, *conn); assert(new_shard == seastar::this_shard_id()); } void ms_handle_reset(crimson::net::ConnectionRef con, bool is_replace) final; void ms_handle_remote_reset(crimson::net::ConnectionRef con) final { clear_pending(con); } std::optional<seastar::future<>> reply_message( const MessageRef m, crimson::net::ConnectionRef con, Payload& pl) { pl.who = Payload::PONG; bufferlist bl; encode(pl, bl); auto rm = crimson::make_message<MPing>(); rm->set_data(bl); if (verbose) { logger().info("{} conn= {} reply i= {}", __func__, *con, pl.seq); } return con->send(std::move(rm)); } seastar::future<> send_message_wrap(crimson::net::ConnectionRef con, const bufferlist& data) { auto m = crimson::make_message<MPing>(); Payload pl{Payload::PING, index++, data}; bufferlist bl; encode(pl, bl); m->set_data(bl); sent[pl.seq] = pl.data; conn_sent[&*con].push_back(pl.seq); logger().info("{} conn= {} send i= {}", __func__, *con, pl.seq); return con->send(std::move(m)); } uint64_t get_num_pending_msgs() { return sent.size(); } void clear_pending(crimson::net::ConnectionRef con) { for (std::deque<uint64_t>::iterator it = conn_sent[&*con].begin(); it != conn_sent[&*con].end(); ++it) sent.erase(*it); conn_sent.erase(&*con); } void print() { for (auto && [connptr, list] : conn_sent) { if (!list.empty()) { logger().info("{} {} wait {}", __func__, (void*)connptr, list.size()); } } } }; class SyntheticWorkload { // messengers must be freed after its connections std::set<crimson::net::MessengerRef> available_servers; std::set<crimson::net::MessengerRef> available_clients; crimson::net::SocketPolicy server_policy; crimson::net::SocketPolicy client_policy; std::map<crimson::net::ConnectionRef, std::pair<crimson::net::MessengerRef, crimson::net::MessengerRef>> available_connections; SyntheticDispatcher dispatcher; std::vector<bufferlist> rand_data; crimson::auth::DummyAuthClientServer dummy_auth; seastar::future<crimson::net::ConnectionRef> get_random_connection() { return seastar::do_until( [this] { return dispatcher.get_num_pending_msgs() <= max_in_flight; }, [] { return seastar::sleep(100ms); } ).then([this] { boost::uniform_int<> choose(0, available_connections.size() - 1); int index = choose(rng); std::map<crimson::net::ConnectionRef, std::pair<crimson::net::MessengerRef, crimson::net::MessengerRef>>::iterator i = available_connections.begin(); for (; index > 0; --index, ++i) ; return seastar::make_ready_future<crimson::net::ConnectionRef>(i->first); }); } public: const unsigned min_connections = 10; const unsigned max_in_flight = 64; const unsigned max_connections = 128; const unsigned max_message_len = 1024 * 1024 * 4; const uint64_t servers, clients; SyntheticWorkload(int servers, int clients, int random_num, crimson::net::SocketPolicy srv_policy, crimson::net::SocketPolicy cli_policy) : server_policy(srv_policy), client_policy(cli_policy), dispatcher(false, this), servers(servers), clients(clients) { for (int i = 0; i < random_num; i++) { bufferlist bl; boost::uniform_int<> u(32, max_message_len); uint64_t value_len = u(rng); bufferptr bp(value_len); bp.zero(); for (uint64_t j = 0; j < value_len-sizeof(i); ) { memcpy(bp.c_str()+j, &i, sizeof(i)); j += 4096; } bl.append(bp); rand_data.push_back(bl); } } bool can_create_connection() { return available_connections.size() < max_connections; } seastar::future<> maybe_generate_connection() { if (!can_create_connection()) { return seastar::now(); } crimson::net::MessengerRef server, client; { boost::uniform_int<> choose(0, available_servers.size() - 1); int index = choose(rng); std::set<crimson::net::MessengerRef>::iterator i = available_servers.begin(); for (; index > 0; --index, ++i) ; server = *i; } { boost::uniform_int<> choose(0, available_clients.size() - 1); int index = choose(rng); std::set<crimson::net::MessengerRef>::iterator i = available_clients.begin(); for (; index > 0; --index, ++i) ; client = *i; } std::pair<crimson::net::MessengerRef, crimson::net::MessengerRef> connected_pair; { crimson::net::ConnectionRef conn = client->connect( server->get_myaddr(), entity_name_t::TYPE_OSD); connected_pair = std::make_pair(client, server); available_connections[conn] = connected_pair; } return seastar::now(); } seastar::future<> random_op (const uint64_t& iter) { return seastar::do_with(iter, [this] (uint64_t& iter) { return seastar::do_until( [&] { return iter == 0; }, [&, this] { if (!(iter % 10)) { logger().info("{} Op {} : ", __func__ ,iter); print_internal_state(); } --iter; int val = prob(rng); if(val > 90) { return maybe_generate_connection(); } else if (val > 80) { return drop_connection(); } else if (val > 10) { return send_message(); } else { return seastar::sleep( std::chrono::milliseconds(rand() % 1000 + 500)); } }); }); } seastar::future<> generate_connections (const uint64_t& iter) { return seastar::do_with(iter, [this] (uint64_t& iter) { return seastar::do_until( [&] { return iter == 0; }, [&, this] { --iter; if (!(connections_count() % 10)) { logger().info("seeding connection {}", connections_count()); } return maybe_generate_connection(); }); }); } seastar::future<> init_server(const entity_name_t& name, const std::string& lname, const uint64_t nonce, const entity_addr_t& addr) { crimson::net::MessengerRef msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(server_policy); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); available_servers.insert(msgr); return msgr->bind(entity_addrvec_t{addr}).safe_then( [this, msgr] { return msgr->start({&dispatcher}); }, crimson::net::Messenger::bind_ertr::all_same_way( [addr] (const std::error_code& e) { logger().error("{} test_messenger_thrash(): " "there is another instance running at {}", __func__, addr); ceph_abort(); })); } seastar::future<> init_client(const entity_name_t& name, const std::string& lname, const uint64_t nonce) { crimson::net::MessengerRef msgr = crimson::net::Messenger::create( name, lname, nonce, true); msgr->set_default_policy(client_policy); msgr->set_auth_client(&dummy_auth); msgr->set_auth_server(&dummy_auth); available_clients.insert(msgr); return msgr->start({&dispatcher}); } seastar::future<> send_message() { return get_random_connection() .then([this] (crimson::net::ConnectionRef conn) { boost::uniform_int<> true_false(0, 99); int val = true_false(rng); if (val >= 95) { uuid_d uuid; uuid.generate_random(); auto m = crimson::make_message<MCommand>(uuid); std::vector<std::string> cmds; cmds.push_back("command"); m->cmd = cmds; m->set_priority(200); return conn->send(std::move(m)); } else { boost::uniform_int<> u(0, rand_data.size()-1); return dispatcher.send_message_wrap(conn, rand_data[u(rng)]); } }); } seastar::future<> drop_connection() { if (available_connections.size() < min_connections) { return seastar::now(); } return get_random_connection() .then([this] (crimson::net::ConnectionRef conn) { dispatcher.clear_pending(conn); conn->mark_down(); if (!client_policy.server && client_policy.standby) { // it's a lossless policy, so we need to mark down each side std::pair<crimson::net::MessengerRef, crimson::net::MessengerRef> &p = available_connections[conn]; if (!p.first->get_default_policy().server && !p.second->get_default_policy().server) { //verify that equal-to operator applies here ceph_assert(p.first->owns_connection(*conn)); crimson::net::ConnectionRef peer = p.second->connect( p.first->get_myaddr(), p.first->get_mytype()); peer->mark_down(); dispatcher.clear_pending(peer); available_connections.erase(peer); } } ceph_assert(available_connections.erase(conn) == 1U); return seastar::now(); }); } void print_internal_state(bool detail=false) { logger().info("available_connections: {} inflight messages: {}", available_connections.size(), dispatcher.get_num_pending_msgs()); if (detail && !available_connections.empty()) { dispatcher.print(); } } seastar::future<> wait_for_done() { int i = 0; return seastar::do_until( [this] { return !dispatcher.get_num_pending_msgs(); }, [this, &i] { if (i++ % 50 == 0){ print_internal_state(true); } return seastar::sleep(100ms); }).then([this] { return seastar::do_for_each(available_servers, [] (auto server) { if (verbose) { logger().info("server {} shutdown" , server->get_myaddrs()); } server->stop(); return server->shutdown(); }); }).then([this] { return seastar::do_for_each(available_clients, [] (auto client) { if (verbose) { logger().info("client {} shutdown" , client->get_myaddrs()); } client->stop(); return client->shutdown(); }); }); } void handle_reset(crimson::net::ConnectionRef con) { available_connections.erase(con); } uint64_t servers_count() { return available_servers.size(); } uint64_t clients_count() { return available_clients.size(); } uint64_t connections_count() { return available_connections.size(); } }; void SyntheticDispatcher::ms_handle_reset(crimson::net::ConnectionRef con, bool is_replace) { workload->handle_reset(con); clear_pending(con); } seastar::future<> reset_conf() { return seastar::when_all_succeed( local_conf().set_val("ms_inject_socket_failures", "0"), local_conf().set_val("ms_inject_internal_delays", "0"), local_conf().set_val("ms_inject_delay_probability", "0"), local_conf().set_val("ms_inject_delay_max", "0") ).then_unpack([] { return seastar::now(); }); } // Testing Crimson messenger (with msgr-v2 protocol) robustness against // network delays and failures. The test includes stress tests and // socket level delays/failures injection tests, letting time // and randomness achieve the best test coverage. // Test Parameters: // Clients: 8 (stateful) // Servers: 32 (lossless) // Connections: 100 (Generated between random clients/server) // Random Operations: 120 (Generate/Drop Connection, Send Message, Sleep) seastar::future<> test_stress(thrash_params_t tp) { logger().info("test_stress():"); SyntheticWorkload test_msg(tp.servers, tp.clients, 100, crimson::net::SocketPolicy::stateful_server(0), crimson::net::SocketPolicy::lossless_client(0)); return seastar::do_with(test_msg, [tp] (SyntheticWorkload& test_msg) { return seastar::do_until([&test_msg] { return test_msg.servers_count() == test_msg.servers; }, [&test_msg] { entity_addr_t bind_addr = get_server_addr(); bind_addr.set_type(entity_addr_t::TYPE_MSGR2); uint64_t server_num = get_nonce(); return test_msg.init_server(entity_name_t::OSD(server_num), "server", server_num , bind_addr); }).then([&test_msg] { return seastar::do_until([&test_msg] { return test_msg.clients_count() == test_msg.clients; }, [&test_msg] { return test_msg.init_client(entity_name_t::CLIENT(-1), "client", get_nonce()); }); }).then([&test_msg, tp] { return test_msg.generate_connections(tp.connections); }).then([&test_msg, tp] { return test_msg.random_op(tp.random_op); }).then([&test_msg] { return test_msg.wait_for_done(); }).then([] { logger().info("test_stress() DONE"); }).handle_exception([] (auto eptr) { logger().error( "test_stress() failed: got exception {}", eptr); throw; }); }); } // Test Parameters: // Clients: 8 (statefull) // Servers: 32 (loseless) // Connections: 100 (Generated between random clients/server) // Random Operations: 120 (Generate/Drop Connection, Send Message, Sleep) seastar::future<> test_injection(thrash_params_t tp) { logger().info("test_injection():"); SyntheticWorkload test_msg(tp.servers, tp.clients, 100, crimson::net::SocketPolicy::stateful_server(0), crimson::net::SocketPolicy::lossless_client(0)); return seastar::do_with(test_msg, [tp] (SyntheticWorkload& test_msg) { return seastar::do_until([&test_msg] { return test_msg.servers_count() == test_msg.servers; }, [&test_msg] { entity_addr_t bind_addr = get_server_addr(); bind_addr.set_type(entity_addr_t::TYPE_MSGR2); uint64_t server_num = get_nonce(); return test_msg.init_server(entity_name_t::OSD(server_num), "server", server_num , bind_addr); }).then([&test_msg] { return seastar::do_until([&test_msg] { return test_msg.clients_count() == test_msg.clients; }, [&test_msg] { return test_msg.init_client(entity_name_t::CLIENT(-1), "client", get_nonce()); }); }).then([] { return seastar::when_all_succeed( local_conf().set_val("ms_inject_socket_failures", "30"), local_conf().set_val("ms_inject_internal_delays", "0.1"), local_conf().set_val("ms_inject_delay_probability", "1"), local_conf().set_val("ms_inject_delay_max", "5")); }).then_unpack([] { return seastar::now(); }).then([&test_msg, tp] { return test_msg.generate_connections(tp.connections); }).then([&test_msg, tp] { return test_msg.random_op(tp.random_op); }).then([&test_msg] { return test_msg.wait_for_done(); }).then([] { logger().info("test_inejction() DONE"); return seastar::now(); }).then([] { return reset_conf(); }).handle_exception([] (auto eptr) { logger().error( "test_injection() failed: got exception {}", eptr); throw; }); }); } } seastar::future<int> do_test(seastar::app_template& app) { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster) .then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([&app] { auto&& config = app.configuration(); verbose = config["verbose"].as<bool>(); return test_stress(thrash_params_t{8, 32, 50, 120}) .then([] { return test_injection(thrash_params_t{16, 32, 50, 120}); }).then([] { logger().info("All tests succeeded"); // Seastar has bugs to have events undispatched during shutdown, // which will result in memory leak and thus fail LeakSanitizer. return seastar::sleep(100ms); }); }).then([] { return crimson::common::sharded_conf().stop(); }).then([] { return 0; }).handle_exception([] (auto eptr) { logger().error("Test failed: got exception {}", eptr); return 1; }); } int main(int argc, char** argv) { seastar::app_template app; app.add_options() ("verbose,v", bpo::value<bool>()->default_value(false), "chatty if true"); return app.run(argc, argv, [&app] { return do_test(app); }); }
21,085
30.471642
86
cc
null
ceph-main/src/test/crimson/test_monc.cc
#include <seastar/core/app-template.hh> #include "common/ceph_argparse.h" #include "crimson/common/auth_handler.h" #include "crimson/common/config_proxy.h" #include "crimson/mon/MonClient.h" #include "crimson/net/Connection.h" #include "crimson/net/Messenger.h" using Config = crimson::common::ConfigProxy; using MonClient = crimson::mon::Client; namespace { class DummyAuthHandler : public crimson::common::AuthHandler { public: void handle_authentication(const EntityName& name, const AuthCapsInfo& caps) final {} }; DummyAuthHandler dummy_handler; } using namespace std::literals; static seastar::future<> test_monc() { return crimson::common::sharded_conf().start(EntityName{}, "ceph"sv).then([] { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); auto& conf = crimson::common::local_conf(); conf->name = init_params.name; conf->cluster = cluster; return conf.parse_config_files(conf_file_list); }).then([] { return crimson::common::sharded_perf_coll().start(); }).then([]() mutable { auto msgr = crimson::net::Messenger::create(entity_name_t::OSD(0), "monc", 0, true); return seastar::do_with(MonClient{*msgr, dummy_handler}, [msgr](auto& monc) mutable { return msgr->start({&monc}).then([&monc] { return seastar::with_timeout( seastar::lowres_clock::now() + std::chrono::seconds{10}, monc.start()); }).then([&monc] { return monc.stop(); }); }).finally([msgr] { return msgr->shutdown(); }); }).finally([] { return crimson::common::sharded_perf_coll().stop().then([] { return crimson::common::sharded_conf().stop(); }); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [&] { return test_monc().then([] { std::cout << "All tests succeeded" << std::endl; }).handle_exception([] (auto eptr) { std::cout << "Test failure" << std::endl; return seastar::make_exception_future<>(eptr); }); }); } /* * Local Variables: * compile-command: "make -j4 \ * -C ../../../build \ * unittest_seastar_monc" * End: */
2,474
28.117647
88
cc
null
ceph-main/src/test/crimson/test_perfcounters.cc
#include <pthread.h> #include <stdlib.h> #include <iostream> #include <fmt/format.h> #include "common/Formatter.h" #include "common/perf_counters.h" #include "crimson/common/perf_counters_collection.h" #include <seastar/core/app-template.hh> #include <seastar/core/sharded.hh> enum { PERFTEST_FIRST = 1000000, PERFTEST_INDEX, PERFTEST_LAST, }; static constexpr uint64_t PERF_VAL = 42; static seastar::future<> test_perfcounters(){ return crimson::common::sharded_perf_coll().start().then([] { return crimson::common::sharded_perf_coll().invoke_on_all([] (auto& s){ std::string name =fmt::format("seastar-osd::shard-{}",seastar::this_shard_id()); PerfCountersBuilder plb(NULL, name, PERFTEST_FIRST,PERFTEST_LAST); plb.add_u64_counter(PERFTEST_INDEX, "perftest_count", "count perftest"); auto perf_logger = plb.create_perf_counters(); perf_logger->inc(PERFTEST_INDEX,PERF_VAL); s.get_perf_collection()->add(perf_logger); }); }).then([]{ return crimson::common::sharded_perf_coll().invoke_on_all([] (auto& s){ auto pcc = s.get_perf_collection(); pcc->with_counters([](auto& by_path){ for (auto& perf_counter : by_path) { if (PERF_VAL != perf_counter.second.perf_counters->get(PERFTEST_INDEX)) { throw std::runtime_error("perf counter does not match"); } } }); }); }).finally([] { return crimson::common::sharded_perf_coll().stop(); }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [&] { return test_perfcounters().then([] { std::cout << "All tests succeeded" << std::endl; }).handle_exception([] (auto eptr) { std::cout << "Test failure" << std::endl; return seastar::make_exception_future<>(eptr); }); }); }
1,836
28.15873
86
cc
null
ceph-main/src/test/crimson/test_socket.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "common/ceph_argparse.h" #include <fmt/os.h> #include <seastar/core/app-template.hh> #include <seastar/core/gate.hh> #include <seastar/core/sharded.hh> #include <seastar/core/sleep.hh> #include <seastar/core/when_all.hh> #include <seastar/util/later.hh> #include "crimson/common/log.h" #include "crimson/net/Errors.h" #include "crimson/net/Fwd.h" #include "crimson/net/Socket.h" using crimson::common::local_conf; namespace { using namespace std::chrono_literals; using seastar::engine; using seastar::future; using crimson::net::error; using crimson::net::listen_ertr; using crimson::net::ShardedServerSocket; using crimson::net::Socket; using crimson::net::SocketRef; using crimson::net::stop_t; using SocketFRef = seastar::foreign_ptr<SocketRef>; seastar::logger &logger() { return crimson::get_logger(ceph_subsys_test); } entity_addr_t get_server_addr() { entity_addr_t saddr; saddr.parse("127.0.0.1", nullptr); saddr.set_port(9020); return saddr; } future<SocketRef> socket_connect(const entity_addr_t& saddr) { logger().debug("socket_connect() to {} ...", saddr); return Socket::connect(saddr).then([](auto socket) { logger().debug("socket_connect() connected"); return socket; }); } future<> test_refused() { logger().info("test_refused()..."); auto saddr = get_server_addr(); return socket_connect(saddr).discard_result().then([saddr] { logger().error("test_refused(): connection to {} is not refused", saddr); ceph_abort(); }).handle_exception_type([](const std::system_error& e) { if (e.code() != std::errc::connection_refused) { logger().error("test_refused() got unexpeted error {}", e); ceph_abort(); } else { logger().info("test_refused() ok\n"); } }).handle_exception([](auto eptr) { logger().error("test_refused() got unexpeted exception {}", eptr); ceph_abort(); }); } future<> test_bind_same(bool is_fixed_cpu) { logger().info("test_bind_same()..."); return ShardedServerSocket::create(is_fixed_cpu ).then([is_fixed_cpu](auto pss1) { auto saddr = get_server_addr(); return pss1->listen(saddr).safe_then([saddr, is_fixed_cpu] { // try to bind the same address return ShardedServerSocket::create(is_fixed_cpu ).then([saddr](auto pss2) { return pss2->listen(saddr).safe_then([] { logger().error("test_bind_same() should raise address_in_use"); ceph_abort(); }, listen_ertr::all_same_way( [](const std::error_code& e) { if (e == std::errc::address_in_use) { // successful! logger().info("test_bind_same() ok\n"); } else { logger().error("test_bind_same() got unexpected error {}", e); ceph_abort(); } // Note: need to return a explicit ready future, or there will be a // runtime error: member access within null pointer of type 'struct promise_base' return seastar::now(); })).then([pss2] { return pss2->shutdown_destroy(); }); }); }, listen_ertr::all_same_way( [saddr](const std::error_code& e) { logger().error("test_bind_same(): there is another instance running at {}", saddr); ceph_abort(); })).then([pss1] { return pss1->shutdown_destroy(); }).handle_exception([](auto eptr) { logger().error("test_bind_same() got unexpeted exception {}", eptr); ceph_abort(); }); }); } future<> test_accept(bool is_fixed_cpu) { logger().info("test_accept()"); return ShardedServerSocket::create(is_fixed_cpu ).then([](auto pss) { auto saddr = get_server_addr(); return pss->listen(saddr ).safe_then([pss] { return pss->accept([](auto socket, auto paddr) { logger().info("test_accept(): accepted at shard {}", seastar::this_shard_id()); // simple accept return seastar::sleep(100ms ).then([socket = std::move(socket)]() mutable { return socket->close( ).finally([cleanup = std::move(socket)] {}); }); }); }, listen_ertr::all_same_way( [saddr](const std::error_code& e) { logger().error("test_accept(): there is another instance running at {}", saddr); ceph_abort(); })).then([saddr] { return seastar::when_all( socket_connect(saddr).then([](auto socket) { return socket->close().finally([cleanup = std::move(socket)] {}); }), socket_connect(saddr).then([](auto socket) { return socket->close().finally([cleanup = std::move(socket)] {}); }), socket_connect(saddr).then([](auto socket) { return socket->close().finally([cleanup = std::move(socket)] {}); }) ).discard_result(); }).then([] { // should be enough to be connected locally return seastar::sleep(50ms); }).then([] { logger().info("test_accept() ok\n"); }).then([pss] { return pss->shutdown_destroy(); }).handle_exception([](auto eptr) { logger().error("test_accept() got unexpeted exception {}", eptr); ceph_abort(); }); }); } class SocketFactory { static constexpr seastar::shard_id CLIENT_CPU = 0u; SocketRef client_socket; seastar::promise<> server_connected; static constexpr seastar::shard_id SERVER_CPU = 1u; ShardedServerSocket *pss = nullptr; seastar::shard_id server_socket_CPU; SocketFRef server_socket; public: template <typename FuncC, typename FuncS> static future<> dispatch_sockets( bool is_fixed_cpu, FuncC&& cb_client, FuncS&& cb_server) { ceph_assert_always(seastar::this_shard_id() == CLIENT_CPU); auto owner = std::make_unique<SocketFactory>(); auto psf = owner.get(); auto saddr = get_server_addr(); return seastar::smp::submit_to(SERVER_CPU, [psf, saddr, is_fixed_cpu] { return ShardedServerSocket::create(is_fixed_cpu ).then([psf, saddr](auto pss) { psf->pss = pss; return pss->listen(saddr ).safe_then([] { }, listen_ertr::all_same_way([saddr](const std::error_code& e) { logger().error("dispatch_sockets(): there is another instance running at {}", saddr); ceph_abort(); })); }); }).then([psf, saddr] { return seastar::when_all_succeed( seastar::smp::submit_to(CLIENT_CPU, [psf, saddr] { return socket_connect(saddr).then([psf](auto socket) { ceph_assert_always(seastar::this_shard_id() == CLIENT_CPU); psf->client_socket = std::move(socket); }); }), seastar::smp::submit_to(SERVER_CPU, [psf] { return psf->pss->accept([psf](auto _socket, auto paddr) { logger().info("dispatch_sockets(): accepted at shard {}", seastar::this_shard_id()); psf->server_socket_CPU = seastar::this_shard_id(); if (psf->pss->is_fixed_shard_dispatching()) { ceph_assert_always(SERVER_CPU == seastar::this_shard_id()); } SocketFRef socket = seastar::make_foreign(std::move(_socket)); psf->server_socket = std::move(socket); return seastar::smp::submit_to(CLIENT_CPU, [psf] { psf->server_connected.set_value(); }); }); }) ); }).then_unpack([] { return seastar::now(); }).then([psf] { return psf->server_connected.get_future(); }).then([psf] { if (psf->pss) { return seastar::smp::submit_to(SERVER_CPU, [psf] { return psf->pss->shutdown_destroy(); }); } return seastar::now(); }).then([psf, cb_client = std::move(cb_client), cb_server = std::move(cb_server)]() mutable { logger().debug("dispatch_sockets(): client/server socket are ready"); return seastar::when_all_succeed( seastar::smp::submit_to(CLIENT_CPU, [socket = psf->client_socket.get(), cb_client = std::move(cb_client)] { return cb_client(socket).then([socket] { logger().debug("closing client socket..."); return socket->close(); }).handle_exception([](auto eptr) { logger().error("dispatch_sockets():" " cb_client() got unexpeted exception {}", eptr); ceph_abort(); }); }), seastar::smp::submit_to(psf->server_socket_CPU, [socket = psf->server_socket.get(), cb_server = std::move(cb_server)] { return cb_server(socket).then([socket] { logger().debug("closing server socket..."); return socket->close(); }).handle_exception([](auto eptr) { logger().error("dispatch_sockets():" " cb_server() got unexpeted exception {}", eptr); ceph_abort(); }); }) ); }).then_unpack([] { return seastar::now(); }).finally([cleanup = std::move(owner)] {}); } }; class Connection { static const uint64_t DATA_TAIL = 5327; static const unsigned DATA_SIZE = 4096; std::array<uint64_t, DATA_SIZE> data = {0}; void verify_data_read(const uint64_t read_data[]) { ceph_assert(read_data[0] == read_count); ceph_assert(data[DATA_SIZE - 1] = DATA_TAIL); } Socket* socket = nullptr; uint64_t write_count = 0; uint64_t read_count = 0; Connection(Socket* socket) : socket{socket} { assert(socket); data[DATA_SIZE - 1] = DATA_TAIL; } future<> dispatch_write(unsigned round = 0, bool force_shut = false) { logger().debug("dispatch_write(round={}, force_shut={})...", round, force_shut); return seastar::repeat([this, round, force_shut] { if (round != 0 && round <= write_count) { return seastar::futurize_invoke([this, force_shut] { if (force_shut) { logger().debug("dispatch_write() done, force shutdown output"); socket->force_shutdown_out(); } else { logger().debug("dispatch_write() done"); } }).then([] { return seastar::make_ready_future<stop_t>(stop_t::yes); }); } else { data[0] = write_count; bufferlist bl; bl.append(buffer::copy( reinterpret_cast<const char*>(&data), sizeof(data))); return socket->write(bl ).then([this] { return socket->flush(); }).then([this] { write_count += 1; return seastar::make_ready_future<stop_t>(stop_t::no); }); } }); } future<> dispatch_write_unbounded() { return dispatch_write( ).then([] { ceph_abort(); }).handle_exception_type([this](const std::system_error& e) { if (e.code() != std::errc::broken_pipe && e.code() != std::errc::connection_reset) { logger().error("dispatch_write_unbounded(): " "unexpected error {}", e); throw; } // successful logger().debug("dispatch_write_unbounded(): " "expected error {}", e); shutdown(); }); } future<> dispatch_read(unsigned round = 0, bool force_shut = false) { logger().debug("dispatch_read(round={}, force_shut={})...", round, force_shut); return seastar::repeat([this, round, force_shut] { if (round != 0 && round <= read_count) { return seastar::futurize_invoke([this, force_shut] { if (force_shut) { logger().debug("dispatch_read() done, force shutdown input"); socket->force_shutdown_in(); } else { logger().debug("dispatch_read() done"); } }).then([] { return seastar::make_ready_future<stop_t>(stop_t::yes); }); } else { return seastar::futurize_invoke([this] { // we want to test both Socket::read() and Socket::read_exactly() if (read_count % 2) { return socket->read(DATA_SIZE * sizeof(uint64_t) ).then([this](ceph::bufferlist bl) { uint64_t read_data[DATA_SIZE]; auto p = bl.cbegin(); ::ceph::decode_raw(read_data, p); verify_data_read(read_data); }); } else { return socket->read_exactly(DATA_SIZE * sizeof(uint64_t) ).then([this](auto bptr) { uint64_t read_data[DATA_SIZE]; std::memcpy(read_data, bptr.c_str(), DATA_SIZE * sizeof(uint64_t)); verify_data_read(read_data); }); } }).then([this] { ++read_count; return seastar::make_ready_future<stop_t>(stop_t::no); }); } }); } future<> dispatch_read_unbounded() { return dispatch_read( ).then([] { ceph_abort(); }).handle_exception_type([this](const std::system_error& e) { if (e.code() != error::read_eof && e.code() != std::errc::connection_reset) { logger().error("dispatch_read_unbounded(): " "unexpected error {}", e); throw; } // successful logger().debug("dispatch_read_unbounded(): " "expected error {}", e); shutdown(); }); } void shutdown() { socket->shutdown(); } public: static future<> dispatch_rw_bounded(Socket* socket, unsigned round, bool force_shut = false) { logger().debug("dispatch_rw_bounded(round={}, force_shut={})...", round, force_shut); return seastar::do_with(Connection{socket}, [round, force_shut](auto& conn) { ceph_assert(round != 0); return seastar::when_all_succeed( conn.dispatch_write(round, force_shut), conn.dispatch_read(round, force_shut) ).then_unpack([] { return seastar::now(); }); }); } static future<> dispatch_rw_unbounded(Socket* socket, bool preemptive_shut = false) { logger().debug("dispatch_rw_unbounded(preemptive_shut={})...", preemptive_shut); return seastar::do_with(Connection{socket}, [preemptive_shut](auto& conn) { return seastar::when_all_succeed( conn.dispatch_write_unbounded(), conn.dispatch_read_unbounded(), seastar::futurize_invoke([&conn, preemptive_shut] { if (preemptive_shut) { return seastar::sleep(100ms).then([&conn] { logger().debug("dispatch_rw_unbounded() shutdown socket preemptively(100ms)"); conn.shutdown(); }); } else { return seastar::now(); } }) ).then_unpack([] { return seastar::now(); }); }); } }; future<> test_read_write(bool is_fixed_cpu) { logger().info("test_read_write()..."); return SocketFactory::dispatch_sockets( is_fixed_cpu, [](auto cs) { return Connection::dispatch_rw_bounded(cs, 128); }, [](auto ss) { return Connection::dispatch_rw_bounded(ss, 128); } ).then([] { logger().info("test_read_write() ok\n"); }).handle_exception([](auto eptr) { logger().error("test_read_write() got unexpeted exception {}", eptr); ceph_abort(); }); } future<> test_unexpected_down(bool is_fixed_cpu) { logger().info("test_unexpected_down()..."); return SocketFactory::dispatch_sockets( is_fixed_cpu, [](auto cs) { return Connection::dispatch_rw_bounded(cs, 128, true ).handle_exception_type([](const std::system_error& e) { logger().debug("test_unexpected_down(): client get error {}", e); ceph_assert(e.code() == error::read_eof); }); }, [](auto ss) { return Connection::dispatch_rw_unbounded(ss); } ).then([] { logger().info("test_unexpected_down() ok\n"); }).handle_exception([](auto eptr) { logger().error("test_unexpected_down() got unexpeted exception {}", eptr); ceph_abort(); }); } future<> test_shutdown_propagated(bool is_fixed_cpu) { logger().info("test_shutdown_propagated()..."); return SocketFactory::dispatch_sockets( is_fixed_cpu, [](auto cs) { logger().debug("test_shutdown_propagated() shutdown client socket"); cs->shutdown(); return seastar::now(); }, [](auto ss) { return Connection::dispatch_rw_unbounded(ss); } ).then([] { logger().info("test_shutdown_propagated() ok\n"); }).handle_exception([](auto eptr) { logger().error("test_shutdown_propagated() got unexpeted exception {}", eptr); ceph_abort(); }); } future<> test_preemptive_down(bool is_fixed_cpu) { logger().info("test_preemptive_down()..."); return SocketFactory::dispatch_sockets( is_fixed_cpu, [](auto cs) { return Connection::dispatch_rw_unbounded(cs, true); }, [](auto ss) { return Connection::dispatch_rw_unbounded(ss); } ).then([] { logger().info("test_preemptive_down() ok\n"); }).handle_exception([](auto eptr) { logger().error("test_preemptive_down() got unexpeted exception {}", eptr); ceph_abort(); }); } future<> do_test_with_type(bool is_fixed_cpu) { return test_bind_same(is_fixed_cpu ).then([is_fixed_cpu] { return test_accept(is_fixed_cpu); }).then([is_fixed_cpu] { return test_read_write(is_fixed_cpu); }).then([is_fixed_cpu] { return test_unexpected_down(is_fixed_cpu); }).then([is_fixed_cpu] { return test_shutdown_propagated(is_fixed_cpu); }).then([is_fixed_cpu] { return test_preemptive_down(is_fixed_cpu); }); } } seastar::future<int> do_test(seastar::app_template& app) { std::vector<const char*> args; std::string cluster; std::string conf_file_list; auto init_params = ceph_argparse_early_args(args, CEPH_ENTITY_TYPE_CLIENT, &cluster, &conf_file_list); return crimson::common::sharded_conf().start(init_params.name, cluster ).then([conf_file_list] { return local_conf().parse_config_files(conf_file_list); }).then([] { return local_conf().set_val("ms_inject_internal_delays", "0"); }).then([] { return test_refused(); }).then([] { return do_test_with_type(true); }).then([] { return do_test_with_type(false); }).then([] { logger().info("All tests succeeded"); // Seastar has bugs to have events undispatched during shutdown, // which will result in memory leak and thus fail LeakSanitizer. return seastar::sleep(100ms); }).then([] { return crimson::common::sharded_conf().stop(); }).then([] { return 0; }).handle_exception([](auto eptr) { logger().error("Test failed: got exception {}", eptr); return 1; }); } int main(int argc, char** argv) { seastar::app_template app; return app.run(argc, argv, [&app] { return do_test(app); }); }
18,961
33.104317
92
cc
null
ceph-main/src/test/crimson/seastore/test_block.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/seastore/test_block.h" namespace crimson::os::seastore { ceph::bufferlist TestBlock::get_delta() { ceph::bufferlist bl; encode(delta, bl); return bl; } void TestBlock::apply_delta(const ceph::bufferlist &bl) { auto biter = bl.begin(); decltype(delta) deltas; decode(deltas, biter); for (auto &&d : deltas) { set_contents(d.val, d.offset, d.len); } } ceph::bufferlist TestBlockPhysical::get_delta() { ceph::bufferlist bl; encode(delta, bl); return bl; } void TestBlockPhysical::apply_delta_and_adjust_crc( paddr_t, const ceph::bufferlist &bl) { auto biter = bl.begin(); decltype(delta) deltas; decode(deltas, biter); for (auto &&d : deltas) { set_contents(d.val, d.offset, d.len); } } }
860
19.5
70
cc
null
ceph-main/src/test/crimson/seastore/test_block.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include <random> #include "crimson/os/seastore/transaction_manager.h" namespace crimson::os::seastore { struct test_extent_desc_t { size_t len = 0; unsigned checksum = 0; bool operator==(const test_extent_desc_t &rhs) const { return (len == rhs.len && checksum == rhs.checksum); } bool operator!=(const test_extent_desc_t &rhs) const { return !(*this == rhs); } }; struct test_block_delta_t { int8_t val = 0; uint16_t offset = 0; uint16_t len = 0; DENC(test_block_delta_t, v, p) { DENC_START(1, 1, p); denc(v.val, p); denc(v.offset, p); denc(v.len, p); DENC_FINISH(p); } }; inline std::ostream &operator<<( std::ostream &lhs, const test_extent_desc_t &rhs) { return lhs << "test_extent_desc_t(len=" << rhs.len << ", checksum=" << rhs.checksum << ")"; } struct TestBlock : crimson::os::seastore::LogicalCachedExtent { constexpr static extent_len_t SIZE = 4<<10; using Ref = TCachedExtentRef<TestBlock>; std::vector<test_block_delta_t> delta = {}; TestBlock(ceph::bufferptr &&ptr) : LogicalCachedExtent(std::move(ptr)) {} TestBlock(const TestBlock &other) : LogicalCachedExtent(other) {} CachedExtentRef duplicate_for_write(Transaction&) final { return CachedExtentRef(new TestBlock(*this)); }; static constexpr extent_types_t TYPE = extent_types_t::TEST_BLOCK; extent_types_t get_type() const final { return TYPE; } ceph::bufferlist get_delta() final; void set_contents(char c, uint16_t offset, uint16_t len) { ::memset(get_bptr().c_str() + offset, c, len); delta.push_back({c, offset, len}); } void set_contents(char c) { set_contents(c, 0, get_length()); } test_extent_desc_t get_desc() { return { get_length(), get_crc32c() }; } void apply_delta(const ceph::bufferlist &bl) final; }; using TestBlockRef = TCachedExtentRef<TestBlock>; struct TestBlockPhysical : crimson::os::seastore::CachedExtent{ constexpr static extent_len_t SIZE = 4<<10; using Ref = TCachedExtentRef<TestBlockPhysical>; std::vector<test_block_delta_t> delta = {}; TestBlockPhysical(ceph::bufferptr &&ptr) : CachedExtent(std::move(ptr)) {} TestBlockPhysical(const TestBlockPhysical &other) : CachedExtent(other) {} CachedExtentRef duplicate_for_write(Transaction&) final { return CachedExtentRef(new TestBlockPhysical(*this)); }; static constexpr extent_types_t TYPE = extent_types_t::TEST_BLOCK_PHYSICAL; extent_types_t get_type() const final { return TYPE; } void set_contents(char c, uint16_t offset, uint16_t len) { ::memset(get_bptr().c_str() + offset, c, len); delta.push_back({c, offset, len}); } void set_contents(char c) { set_contents(c, 0, get_length()); } ceph::bufferlist get_delta() final; void apply_delta_and_adjust_crc(paddr_t, const ceph::bufferlist &bl) final; }; using TestBlockPhysicalRef = TCachedExtentRef<TestBlockPhysical>; struct test_block_mutator_t { std::uniform_int_distribution<int8_t> contents_distribution = std::uniform_int_distribution<int8_t>( std::numeric_limits<int8_t>::min(), std::numeric_limits<int8_t>::max()); std::uniform_int_distribution<uint16_t> offset_distribution = std::uniform_int_distribution<uint16_t>( 0, TestBlock::SIZE - 1); std::uniform_int_distribution<uint16_t> length_distribution(uint16_t offset) { return std::uniform_int_distribution<uint16_t>( 0, TestBlock::SIZE - offset - 1); } template <typename generator_t> void mutate(TestBlock &block, generator_t &gen) { auto offset = offset_distribution(gen); block.set_contents( contents_distribution(gen), offset, length_distribution(offset)(gen)); } }; } WRITE_CLASS_DENC_BOUNDED(crimson::os::seastore::test_block_delta_t) #if FMT_VERSION >= 90000 template <> struct fmt::formatter<crimson::os::seastore::test_extent_desc_t> : fmt::ostream_formatter {}; template <> struct fmt::formatter<crimson::os::seastore::TestBlock> : fmt::ostream_formatter {}; template <> struct fmt::formatter<crimson::os::seastore::TestBlockPhysical> : fmt::ostream_formatter {}; #endif
4,252
26.43871
105
h
null
ceph-main/src/test/crimson/seastore/test_btree_lba_manager.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include "crimson/common/log.h" #include "crimson/os/seastore/journal.h" #include "crimson/os/seastore/cache.h" #include "crimson/os/seastore/segment_manager/ephemeral.h" #include "crimson/os/seastore/lba_manager/btree/btree_lba_manager.h" #include "test/crimson/seastore/test_block.h" namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; using namespace crimson::os::seastore::lba_manager; using namespace crimson::os::seastore::lba_manager::btree; struct btree_test_base : public seastar_test_suite_t, SegmentProvider, JournalTrimmer { segment_manager::EphemeralSegmentManagerRef segment_manager; SegmentManagerGroupRef sms; JournalRef journal; ExtentPlacementManagerRef epm; CacheRef cache; size_t block_size; WritePipeline pipeline; segment_id_t next; std::map<segment_id_t, segment_seq_t> segment_seqs; std::map<segment_id_t, segment_type_t> segment_types; journal_seq_t dummy_tail; mutable segment_info_t tmp_info; btree_test_base() = default; /* * JournalTrimmer interfaces */ journal_seq_t get_journal_head() const final { return dummy_tail; } void set_journal_head(journal_seq_t) final {} journal_seq_t get_dirty_tail() const final { return dummy_tail; } journal_seq_t get_alloc_tail() const final { return dummy_tail; } void update_journal_tails(journal_seq_t, journal_seq_t) final {} bool try_reserve_inline_usage(std::size_t) final { return true; } void release_inline_usage(std::size_t) final {} std::size_t get_trim_size_per_cycle() const final { return 0; } /* * SegmentProvider interfaces */ const segment_info_t& get_seg_info(segment_id_t id) const final { tmp_info = {}; tmp_info.seq = segment_seqs.at(id); tmp_info.type = segment_types.at(id); return tmp_info; } segment_id_t allocate_segment( segment_seq_t seq, segment_type_t type, data_category_t, rewrite_gen_t ) final { auto ret = next; next = segment_id_t{ segment_manager->get_device_id(), next.device_segment_id() + 1}; segment_seqs[ret] = seq; segment_types[ret] = type; return ret; } void close_segment(segment_id_t) final {} void update_segment_avail_bytes(segment_type_t, paddr_t) final {} void update_modify_time(segment_id_t, sea_time_point, std::size_t) final {} SegmentManagerGroup* get_segment_manager_group() final { return sms.get(); } virtual void complete_commit(Transaction &t) {} seastar::future<> submit_transaction(TransactionRef t) { auto record = cache->prepare_record(*t, JOURNAL_SEQ_NULL, JOURNAL_SEQ_NULL); return journal->submit_record(std::move(record), t->get_handle()).safe_then( [this, t=std::move(t)](auto submit_result) mutable { cache->complete_commit( *t, submit_result.record_block_base, submit_result.write_result.start_seq); complete_commit(*t); }).handle_error(crimson::ct_error::assert_all{}); } virtual LBAManager::mkfs_ret test_structure_setup(Transaction &t) = 0; seastar::future<> set_up_fut() final { segment_manager = segment_manager::create_test_ephemeral(); return segment_manager->init( ).safe_then([this] { return segment_manager->mkfs( segment_manager::get_ephemeral_device_config(0, 1, 0)); }).safe_then([this] { sms.reset(new SegmentManagerGroup()); journal = journal::make_segmented(*this, *this); epm.reset(new ExtentPlacementManager()); cache.reset(new Cache(*epm)); block_size = segment_manager->get_block_size(); next = segment_id_t{segment_manager->get_device_id(), 0}; sms->add_segment_manager(segment_manager.get()); epm->test_init_no_background(segment_manager.get()); journal->set_write_pipeline(&pipeline); return journal->open_for_mkfs().discard_result(); }).safe_then([this] { dummy_tail = journal_seq_t{0, paddr_t::make_seg_paddr(segment_id_t(segment_manager->get_device_id(), 0), 0)}; return epm->open_for_write(); }).safe_then([this] { return seastar::do_with( cache->create_transaction( Transaction::src_t::MUTATE, "test_set_up_fut", false), [this](auto &ref_t) { return with_trans_intr(*ref_t, [&](auto &t) { cache->init(); return cache->mkfs(t ).si_then([this, &t] { return test_structure_setup(t); }); }).safe_then([this, &ref_t] { return submit_transaction(std::move(ref_t)); }); }); }).handle_error( crimson::ct_error::all_same_way([] { ceph_assert(0 == "error"); }) ); } virtual void test_structure_reset() {} seastar::future<> tear_down_fut() final { return cache->close( ).safe_then([this] { return journal->close(); }).safe_then([this] { return epm->close(); }).safe_then([this] { test_structure_reset(); segment_manager.reset(); sms.reset(); journal.reset(); epm.reset(); cache.reset(); }).handle_error( crimson::ct_error::all_same_way([] { ASSERT_FALSE("Unable to close"); }) ); } }; struct lba_btree_test : btree_test_base { std::map<laddr_t, lba_map_val_t> check; auto get_op_context(Transaction &t) { return op_context_t<laddr_t>{*cache, t}; } LBAManager::mkfs_ret test_structure_setup(Transaction &t) final { return cache->get_root( t ).si_then([this, &t](RootBlockRef croot) { auto mut_croot = cache->duplicate_for_write( t, croot )->cast<RootBlock>(); mut_croot->root.lba_root = LBABtree::mkfs(mut_croot, get_op_context(t)); }); } template <typename F> auto lba_btree_update(F &&f) { auto tref = cache->create_transaction( Transaction::src_t::MUTATE, "test_btree_update", false); auto &t = *tref; with_trans_intr( t, [this, tref=std::move(tref), f=std::forward<F>(f)](auto &t) mutable { return cache->get_root( t ).si_then([f=std::move(f), &t](RootBlockRef croot) { return seastar::do_with( LBABtree(croot), [f=std::move(f), &t](auto &btree) mutable { return std::invoke( std::move(f), btree, t ); }); }).si_then([this, tref=std::move(tref)]() mutable { return submit_transaction(std::move(tref)); }); }).unsafe_get0(); } template <typename F> auto lba_btree_read(F &&f) { auto t = cache->create_transaction( Transaction::src_t::READ, "test_btree_read", false); return with_trans_intr( *t, [this, f=std::forward<F>(f)](auto &t) mutable { return cache->get_root( t ).si_then([f=std::move(f), &t](RootBlockRef croot) mutable { return seastar::do_with( LBABtree(croot), [f=std::move(f), &t](auto &btree) mutable { return std::invoke( std::move(f), btree, t ); }); }); }).unsafe_get0(); } static auto get_map_val(extent_len_t len) { return lba_map_val_t{0, P_ADDR_NULL, len, 0}; } device_off_t next_off = 0; paddr_t get_paddr() { next_off += block_size; return make_fake_paddr(next_off); } void insert(laddr_t addr, extent_len_t len) { ceph_assert(check.count(addr) == 0); check.emplace(addr, get_map_val(len)); lba_btree_update([=, this](auto &btree, auto &t) { auto extent = cache->alloc_new_extent<TestBlock>( t, TestBlock::SIZE, placement_hint_t::HOT, 0, get_paddr()); return btree.insert( get_op_context(t), addr, get_map_val(len), extent.get() ).si_then([addr, extent](auto p){ auto& [iter, inserted] = p; assert(inserted); extent->set_laddr(addr); }); }); } void remove(laddr_t addr) { auto iter = check.find(addr); ceph_assert(iter != check.end()); auto len = iter->second.len; check.erase(iter++); lba_btree_update([=, this](auto &btree, auto &t) { return btree.lower_bound( get_op_context(t), addr ).si_then([this, len, addr, &btree, &t](auto iter) { EXPECT_FALSE(iter.is_end()); EXPECT_TRUE(iter.get_key() == addr); EXPECT_TRUE(iter.get_val().len == len); return btree.remove( get_op_context(t), iter ); }); }); } void check_lower_bound(laddr_t addr) { auto iter = check.lower_bound(addr); auto result = lba_btree_read([=, this](auto &btree, auto &t) { return btree.lower_bound( get_op_context(t), addr ).si_then([](auto iter) -> std::optional<std::pair<const laddr_t, const lba_map_val_t>> { if (iter.is_end()) { return std::nullopt; } else { return std::make_optional( std::make_pair(iter.get_key(), iter.get_val())); } }); }); if (iter == check.end()) { EXPECT_FALSE(result); } else { EXPECT_TRUE(result); decltype(result) to_check = *iter; EXPECT_EQ(to_check, *result); } } }; TEST_F(lba_btree_test, basic) { run_async([this] { constexpr unsigned total = 16<<10; for (unsigned i = 0; i < total; i += 16) { insert(i, 8); } for (unsigned i = 0; i < total; i += 16) { check_lower_bound(i); check_lower_bound(i + 4); check_lower_bound(i + 8); check_lower_bound(i + 12); } }); } struct btree_lba_manager_test : btree_test_base { BtreeLBAManagerRef lba_manager; btree_lba_manager_test() = default; void complete_commit(Transaction &t) final {} LBAManager::mkfs_ret test_structure_setup(Transaction &t) final { lba_manager.reset(new BtreeLBAManager(*cache)); return lba_manager->mkfs(t); } void test_structure_reset() final { lba_manager.reset(); } struct test_extent_t { paddr_t addr; size_t len = 0; unsigned refcount = 0; }; using test_lba_mapping_t = std::map<laddr_t, test_extent_t>; test_lba_mapping_t test_lba_mappings; struct test_transaction_t { TransactionRef t; test_lba_mapping_t mappings; }; auto create_transaction(bool create_fake_extent=true) { auto t = test_transaction_t{ cache->create_transaction( Transaction::src_t::MUTATE, "test_mutate_lba", false), test_lba_mappings }; if (create_fake_extent) { cache->alloc_new_extent<TestBlockPhysical>( *t.t, TestBlockPhysical::SIZE, placement_hint_t::HOT, 0); }; return t; } auto create_weak_transaction() { auto t = test_transaction_t{ cache->create_transaction( Transaction::src_t::READ, "test_read_weak", true), test_lba_mappings }; return t; } void submit_test_transaction(test_transaction_t t) { submit_transaction(std::move(t.t)).get(); test_lba_mappings.swap(t.mappings); } auto get_overlap(test_transaction_t &t, laddr_t addr, size_t len) { auto bottom = t.mappings.upper_bound(addr); if (bottom != t.mappings.begin()) --bottom; if (bottom != t.mappings.end() && bottom->first + bottom->second.len <= addr) ++bottom; auto top = t.mappings.lower_bound(addr + len); return std::make_pair( bottom, top ); } device_off_t next_off = 0; paddr_t get_paddr() { next_off += block_size; return make_fake_paddr(next_off); } auto alloc_mapping( test_transaction_t &t, laddr_t hint, size_t len) { auto ret = with_trans_intr( *t.t, [=, this](auto &t) { auto extent = cache->alloc_new_extent<TestBlock>( t, TestBlock::SIZE, placement_hint_t::HOT, 0, get_paddr()); return lba_manager->alloc_extent( t, hint, len, extent->get_paddr(), extent.get()); }).unsafe_get0(); logger().debug("alloc'd: {}", *ret); EXPECT_EQ(len, ret->get_length()); auto [b, e] = get_overlap(t, ret->get_key(), len); EXPECT_EQ(b, e); t.mappings.emplace( std::make_pair( ret->get_key(), test_extent_t{ ret->get_val(), ret->get_length(), 1 } )); return ret; } auto decref_mapping( test_transaction_t &t, laddr_t addr) { return decref_mapping(t, t.mappings.find(addr)); } void decref_mapping( test_transaction_t &t, test_lba_mapping_t::iterator target) { ceph_assert(target != t.mappings.end()); ceph_assert(target->second.refcount > 0); target->second.refcount--; (void) with_trans_intr( *t.t, [=, this](auto &t) { return lba_manager->decref_extent( t, target->first ).si_then([this, &t, target](auto result) { EXPECT_EQ(result.refcount, target->second.refcount); if (result.refcount == 0) { return cache->retire_extent_addr(t, result.addr, result.length); } return Cache::retire_extent_iertr::now(); }); }).unsafe_get0(); if (target->second.refcount == 0) { t.mappings.erase(target); } } auto incref_mapping( test_transaction_t &t, laddr_t addr) { return incref_mapping(t, t.mappings.find(addr)); } void incref_mapping( test_transaction_t &t, test_lba_mapping_t::iterator target) { ceph_assert(target->second.refcount > 0); target->second.refcount++; auto refcnt = with_trans_intr( *t.t, [=, this](auto &t) { return lba_manager->incref_extent( t, target->first); }).unsafe_get0().refcount; EXPECT_EQ(refcnt, target->second.refcount); } std::vector<laddr_t> get_mapped_addresses() { std::vector<laddr_t> addresses; addresses.reserve(test_lba_mappings.size()); for (auto &i: test_lba_mappings) { addresses.push_back(i.first); } return addresses; } std::vector<laddr_t> get_mapped_addresses(test_transaction_t &t) { std::vector<laddr_t> addresses; addresses.reserve(t.mappings.size()); for (auto &i: t.mappings) { addresses.push_back(i.first); } return addresses; } void check_mappings() { auto t = create_transaction(); check_mappings(t); } void check_mappings(test_transaction_t &t) { (void)with_trans_intr( *t.t, [=, this](auto &t) { return lba_manager->check_child_trackers(t); }).unsafe_get0(); for (auto &&i: t.mappings) { auto laddr = i.first; auto len = i.second.len; auto ret_list = with_trans_intr( *t.t, [=, this](auto &t) { return lba_manager->get_mappings( t, laddr, len); }).unsafe_get0(); EXPECT_EQ(ret_list.size(), 1); auto &ret = *ret_list.begin(); EXPECT_EQ(i.second.addr, ret->get_val()); EXPECT_EQ(laddr, ret->get_key()); EXPECT_EQ(len, ret->get_length()); auto ret_pin = with_trans_intr( *t.t, [=, this](auto &t) { return lba_manager->get_mapping( t, laddr); }).unsafe_get0(); EXPECT_EQ(i.second.addr, ret_pin->get_val()); EXPECT_EQ(laddr, ret_pin->get_key()); EXPECT_EQ(len, ret_pin->get_length()); } with_trans_intr( *t.t, [=, &t, this](auto &) { return lba_manager->scan_mappings( *t.t, 0, L_ADDR_MAX, [iter=t.mappings.begin(), &t](auto l, auto p, auto len) mutable { EXPECT_NE(iter, t.mappings.end()); EXPECT_EQ(l, iter->first); EXPECT_EQ(p, iter->second.addr); EXPECT_EQ(len, iter->second.len); ++iter; }); }).unsafe_get(); } }; TEST_F(btree_lba_manager_test, basic) { run_async([this] { laddr_t laddr = 0x12345678 * block_size; { // write initial mapping auto t = create_transaction(); check_mappings(t); // check in progress transaction sees mapping check_mappings(); // check concurrent does not auto ret = alloc_mapping(t, laddr, block_size); submit_test_transaction(std::move(t)); } check_mappings(); // check new transaction post commit sees it }); } TEST_F(btree_lba_manager_test, force_split) { run_async([this] { for (unsigned i = 0; i < 40; ++i) { auto t = create_transaction(); logger().debug("opened transaction"); for (unsigned j = 0; j < 5; ++j) { auto ret = alloc_mapping(t, 0, block_size); if ((i % 10 == 0) && (j == 3)) { check_mappings(t); check_mappings(); } } logger().debug("submitting transaction"); submit_test_transaction(std::move(t)); check_mappings(); } }); } TEST_F(btree_lba_manager_test, force_split_merge) { run_async([this] { for (unsigned i = 0; i < 80; ++i) { auto t = create_transaction(); logger().debug("opened transaction"); for (unsigned j = 0; j < 5; ++j) { auto ret = alloc_mapping(t, 0, block_size); // just to speed things up a bit if ((i % 100 == 0) && (j == 3)) { check_mappings(t); check_mappings(); } incref_mapping(t, ret->get_key()); decref_mapping(t, ret->get_key()); } logger().debug("submitting transaction"); submit_test_transaction(std::move(t)); if (i % 50 == 0) { check_mappings(); } } { auto addresses = get_mapped_addresses(); auto t = create_transaction(); for (unsigned i = 0; i != addresses.size(); ++i) { if (i % 2 == 0) { incref_mapping(t, addresses[i]); decref_mapping(t, addresses[i]); decref_mapping(t, addresses[i]); } logger().debug("submitting transaction"); if (i % 7 == 0) { submit_test_transaction(std::move(t)); t = create_transaction(); } if (i % 13 == 0) { check_mappings(); check_mappings(t); } } submit_test_transaction(std::move(t)); } { auto addresses = get_mapped_addresses(); auto t = create_transaction(); for (unsigned i = 0; i != addresses.size(); ++i) { incref_mapping(t, addresses[i]); decref_mapping(t, addresses[i]); decref_mapping(t, addresses[i]); } check_mappings(t); submit_test_transaction(std::move(t)); check_mappings(); } }); } TEST_F(btree_lba_manager_test, single_transaction_split_merge) { run_async([this] { { auto t = create_transaction(); for (unsigned i = 0; i < 400; ++i) { alloc_mapping(t, 0, block_size); } check_mappings(t); submit_test_transaction(std::move(t)); } check_mappings(); { auto addresses = get_mapped_addresses(); auto t = create_transaction(); for (unsigned i = 0; i != addresses.size(); ++i) { if (i % 4 != 0) { decref_mapping(t, addresses[i]); } } check_mappings(t); submit_test_transaction(std::move(t)); } check_mappings(); { auto t = create_transaction(); for (unsigned i = 0; i < 600; ++i) { alloc_mapping(t, 0, block_size); } auto addresses = get_mapped_addresses(t); for (unsigned i = 0; i != addresses.size(); ++i) { decref_mapping(t, addresses[i]); } check_mappings(t); submit_test_transaction(std::move(t)); } check_mappings(); }); } TEST_F(btree_lba_manager_test, split_merge_multi) { run_async([this] { auto iterate = [&](auto f) { for (uint64_t i = 0; i < (1<<10); ++i) { auto t = create_transaction(false); logger().debug("opened transaction"); for (unsigned j = 0; j < 5; ++j) { f(t, (i * 5) + j); } logger().debug("submitting transaction"); submit_test_transaction(std::move(t)); } }; iterate([&](auto &t, auto idx) { alloc_mapping(t, idx * block_size, block_size); }); check_mappings(); iterate([&](auto &t, auto idx) { if ((idx % 32) > 0) { decref_mapping(t, idx * block_size); } }); check_mappings(); iterate([&](auto &t, auto idx) { if ((idx % 32) > 0) { alloc_mapping(t, idx * block_size, block_size); } }); check_mappings(); iterate([&](auto &t, auto idx) { decref_mapping(t, idx * block_size); }); check_mappings(); }); }
19,787
25.348868
87
cc
null
ceph-main/src/test/crimson/seastore/test_cbjournal.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include <random> #include "crimson/common/log.h" #include "crimson/os/seastore/async_cleaner.h" #include "crimson/os/seastore/journal.h" #include "crimson/os/seastore/journal/circular_bounded_journal.h" #include "crimson/os/seastore/random_block_manager.h" #include "crimson/os/seastore/random_block_manager/rbm_device.h" #include "crimson/os/seastore/seastore_types.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/seastore/random_block_manager/block_rb_manager.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; using namespace crimson::os::seastore::journal; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } std::optional<record_t> decode_record( bufferlist& bl) { record_t record; record_group_header_t r_header; auto bliter = bl.cbegin(); decode(r_header, bliter); logger().debug(" decode_record mdlength {} records {}", r_header.mdlength, r_header.records); device_id_t d_id = 1 << (std::numeric_limits<device_id_t>::digits - 1); auto del_infos = try_decode_deltas(r_header, bl, paddr_t::make_blk_paddr(d_id, 0)); for (auto &iter : *del_infos) { for (auto r : iter.deltas) { record.deltas.push_back(r.second); } } auto ex_infos = try_decode_extent_infos(r_header, bl); auto bliter_ex = bl.cbegin(); bliter_ex += r_header.mdlength; for (auto &iter: *ex_infos) { for (auto e : iter.extent_infos) { extent_t ex; auto bptr = bufferptr(ceph::buffer::create_page_aligned(e.len)); logger().debug(" exten len {} remaining {} ", e.len, bliter_ex.get_remaining()); bliter_ex.copy(e.len, bptr.c_str()); ex.bl.append(bptr); record.extents.push_back(ex); } } return record; } struct entry_validator_t { bufferlist bl; int entries; journal_seq_t last_seq; record_t record; rbm_abs_addr addr = 0; template <typename... T> entry_validator_t(T&&... entry) : record(std::forward<T>(entry)...) {} void validate(record_t read) { auto iter = read.extents.begin(); for (auto &&block : record.extents) { ASSERT_EQ( iter->bl.length(), block.bl.length()); ASSERT_EQ( iter->bl.begin().crc32c(iter->bl.length(), 1), block.bl.begin().crc32c(block.bl.length(), 1)); ++iter; } auto iter_delta = read.deltas.begin(); for (auto &&block : record.deltas) { ASSERT_EQ( iter_delta->bl.length(), block.bl.length()); ASSERT_EQ( iter_delta->bl.begin().crc32c(iter_delta->bl.length(), 1), block.bl.begin().crc32c(block.bl.length(), 1)); ++iter_delta; } } void validate(CircularBoundedJournal &cbj) { rbm_abs_addr offset = 0; for (int i = 0; i < entries; i++) { paddr_t paddr = convert_abs_addr_to_paddr( addr + offset, cbj.get_device_id()); auto [header, buf] = *(cbj.read_record(paddr, NULL_SEG_SEQ).unsafe_get0()); auto record = decode_record(buf); validate(*record); offset += header.mdlength + header.dlength; } } bool validate_delta(bufferlist bl) { for (auto &&block : record.deltas) { if (bl.begin().crc32c(bl.length(), 1) == block.bl.begin().crc32c(block.bl.length(), 1)) { return true; } } return false; } }; struct cbjournal_test_t : public seastar_test_suite_t, JournalTrimmer { std::vector<entry_validator_t> entries; std::unique_ptr<CircularBoundedJournal> cbj; random_block_device::EphemeralRBMDeviceRef device; std::default_random_engine generator; uint64_t block_size; WritePipeline pipeline; cbjournal_test_t() = default; /* * JournalTrimmer interfaces */ journal_seq_t get_journal_head() const { return JOURNAL_SEQ_NULL; } journal_seq_t get_dirty_tail() const final { return JOURNAL_SEQ_NULL; } journal_seq_t get_alloc_tail() const final { return JOURNAL_SEQ_NULL; } void set_journal_head(journal_seq_t head) final {} void update_journal_tails( journal_seq_t dirty_tail, journal_seq_t alloc_tail) final {} bool try_reserve_inline_usage(std::size_t) final { return true; } void release_inline_usage(std::size_t) final {} std::size_t get_trim_size_per_cycle() const final { return 0; } auto submit_record(record_t&& record) { entries.push_back(record); OrderingHandle handle = get_dummy_ordering_handle(); auto [addr, w_result] = cbj->submit_record( std::move(record), handle).unsafe_get0(); entries.back().addr = convert_paddr_to_abs_addr(w_result.start_seq.offset); entries.back().entries = 1; logger().debug("submit entry to addr {}", entries.back().addr); return entries.back().addr; } seastar::future<> tear_down_fut() final { return close(); } extent_t generate_extent(size_t blocks) { std::uniform_int_distribution<char> distribution( std::numeric_limits<char>::min(), std::numeric_limits<char>::max() ); char contents = distribution(generator); bufferlist bl; bl.append(buffer::ptr(buffer::create(blocks * block_size, contents))); return extent_t{extent_types_t::TEST_BLOCK, L_ADDR_NULL, bl}; } delta_info_t generate_delta(size_t bytes) { std::uniform_int_distribution<char> distribution( std::numeric_limits<char>::min(), std::numeric_limits<char>::max() ); char contents = distribution(generator); bufferlist bl; bl.append(buffer::ptr(buffer::create(bytes, contents))); return delta_info_t{ extent_types_t::TEST_BLOCK, paddr_t{}, L_ADDR_NULL, 0, 0, device->get_block_size(), 1, 0, segment_type_t::JOURNAL, bl }; } auto replay_and_check() { for (auto &i : entries) { i.validate(*(cbj.get())); } } auto replay() { return cbj->replay( [this](const auto &offsets, const auto &e, auto &dirty_seq, auto &alloc_seq, auto last_modified) { bool found = false; for (auto &i : entries) { paddr_t base = offsets.write_result.start_seq.offset; rbm_abs_addr addr = convert_paddr_to_abs_addr(base); if (addr == i.addr) { logger().debug(" compare addr: {} and i.addr {} ", base, i.addr); found = i.validate_delta(e.bl); break; } } assert(found == true); return Journal::replay_ertr::make_ready_future<bool>(true); }); } auto mkfs() { device_config_t config = get_rbm_ephemeral_device_config(0, 1); return device->mkfs(config ).safe_then([this]() { return device->mount( ).safe_then([this]() { return cbj->open_for_mkfs( ).safe_then([](auto q) { return seastar::now(); }); }); }).safe_then([this] { return cbj->close(); }); } auto open() { return cbj->open_for_mount( ).safe_then([](auto q) { return seastar::now(); }); } seastar::future<> close() { return cbj->close().handle_error(crimson::ct_error::assert_all{}); } auto get_records_available_size() { return cbj->get_cjs().get_records_available_size(); } auto get_records_total_size() { return cbj->get_cjs().get_records_total_size(); } auto get_block_size() { return device->get_block_size(); } auto get_written_to_rbm_addr() { return cbj->get_rbm_addr(cbj->get_cjs().get_written_to()); } auto get_written_to() { return cbj->get_cjs().get_written_to(); } auto get_journal_tail() { return cbj->get_dirty_tail(); } auto get_records_used_size() { return cbj->get_cjs().get_records_used_size(); } bool is_available_size(uint64_t size) { return cbj->get_cjs().is_available_size(size); } void update_journal_tail(rbm_abs_addr addr, uint32_t len) { paddr_t paddr = convert_abs_addr_to_paddr( addr + len, cbj->get_device_id()); journal_seq_t seq = {0, paddr}; cbj->update_journal_tail( seq, seq ).get0(); } void set_written_to(journal_seq_t seq) { cbj->set_written_to(seq); } seastar::future<> set_up_fut() final { device = random_block_device::create_test_ephemeral( random_block_device::DEFAULT_TEST_CBJOURNAL_SIZE, 0); cbj.reset(new CircularBoundedJournal(*this, device.get(), std::string())); block_size = device->get_block_size(); cbj->set_write_pipeline(&pipeline); return mkfs( ).safe_then([this] { return replay( ).safe_then([this] { return open(); }); }).handle_error(crimson::ct_error::assert_all{}); } }; TEST_F(cbjournal_test_t, submit_one_record) { run_async([this] { submit_record( record_t{ { generate_extent(1), generate_extent(2) }, { generate_delta(3), generate_delta(4) } }); replay_and_check(); }); } TEST_F(cbjournal_test_t, submit_three_records) { run_async([this] { submit_record( record_t{ { generate_extent(1), generate_extent(2) }, { generate_delta(3), generate_delta(4) } }); submit_record( record_t{ { generate_extent(8), generate_extent(9) }, { generate_delta(20), generate_delta(21) } }); submit_record( record_t{ { generate_extent(5), generate_extent(6) }, { generate_delta(200), generate_delta(210) } }); replay_and_check(); }); } TEST_F(cbjournal_test_t, submit_full_records) { run_async([this] { record_t rec { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }; auto r_size = record_group_size_t(rec.size, block_size); auto record_total_size = r_size.get_encoded_length(); submit_record(std::move(rec)); while (is_available_size(record_total_size)) { submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); } update_journal_tail(entries.back().addr, record_total_size); ASSERT_EQ(get_records_total_size(), get_records_available_size()); // will be appended at the begining of log submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); while (is_available_size(record_total_size)) { submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); } ASSERT_TRUE(record_total_size > get_records_available_size()); }); } TEST_F(cbjournal_test_t, boudary_check_verify) { run_async([this] { record_t rec { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }; auto r_size = record_group_size_t(rec.size, block_size); auto record_total_size = r_size.get_encoded_length(); submit_record(std::move(rec)); while (is_available_size(record_total_size)) { submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); } uint64_t avail = get_records_available_size(); // forward 2 recod size here because 1 block is reserved between head and tail update_journal_tail(entries.front().addr, record_total_size * 2); entries.erase(entries.begin()); entries.erase(entries.begin()); ASSERT_EQ(avail + (record_total_size * 2), get_records_available_size()); avail = get_records_available_size(); // will be appended at the begining of WAL submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); ASSERT_TRUE(avail - record_total_size >= get_records_available_size()); replay_and_check(); }); } TEST_F(cbjournal_test_t, update_header) { run_async([this] { auto [header, _buf] = *(cbj->get_cjs().read_header().unsafe_get0()); record_t rec { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }; auto r_size = record_group_size_t(rec.size, block_size); auto record_total_size = r_size.get_encoded_length(); submit_record(std::move(rec)); update_journal_tail(entries.front().addr, record_total_size); cbj->get_cjs().write_header().unsafe_get0(); auto [update_header, update_buf2] = *(cbj->get_cjs().read_header().unsafe_get0()); cbj->close().unsafe_get0(); replay().unsafe_get0(); ASSERT_EQ(update_header.dirty_tail.offset, update_header.dirty_tail.offset); }); } TEST_F(cbjournal_test_t, replay) { run_async([this] { record_t rec { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }; auto r_size = record_group_size_t(rec.size, block_size); auto record_total_size = r_size.get_encoded_length(); submit_record(std::move(rec)); while (is_available_size(record_total_size)) { submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); } // will be appended at the begining of WAL uint64_t avail = get_records_available_size(); update_journal_tail(entries.front().addr, record_total_size * 2); entries.erase(entries.begin()); entries.erase(entries.begin()); ASSERT_EQ(avail + (record_total_size * 2), get_records_available_size()); avail = get_records_available_size(); submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); ASSERT_TRUE(avail - record_total_size >= get_records_available_size()); cbj->close().unsafe_get0(); replay().unsafe_get0(); }); } TEST_F(cbjournal_test_t, replay_after_reset) { run_async([this] { record_t rec { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }; auto r_size = record_group_size_t(rec.size, block_size); auto record_total_size = r_size.get_encoded_length(); submit_record(std::move(rec)); while (is_available_size(record_total_size)) { submit_record( record_t { { generate_extent(1), generate_extent(2) }, { generate_delta(20), generate_delta(21) } }); } auto old_written_to = get_written_to(); auto old_used_size = get_records_used_size(); set_written_to( journal_seq_t{0, convert_abs_addr_to_paddr( cbj->get_records_start(), cbj->get_device_id())}); cbj->close().unsafe_get0(); replay().unsafe_get0(); ASSERT_EQ(old_written_to, get_written_to()); ASSERT_EQ(old_used_size, get_records_used_size()); }); }
14,649
27.391473
86
cc
null
ceph-main/src/test/crimson/seastore/test_collection_manager.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "os/ObjectStore.h" #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/seastore/cache.h" #include "crimson/os/seastore/transaction_manager.h" #include "crimson/os/seastore/segment_manager.h" #include "crimson/os/seastore/collection_manager.h" #include "test/crimson/seastore/test_block.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } #define TEST_COLL_FORWARD(METHOD) \ template <typename... Args> \ auto METHOD(coll_root_t &root, Transaction &t, Args&&... args) const { \ return with_trans_intr( \ t, \ [this](auto &t, auto &root, auto&&... args) { \ return collection_manager->METHOD( \ root, \ t, \ std::forward<decltype(args)>(args)...); \ }, \ root, \ std::forward<Args>(args)...).unsafe_get0(); \ } struct collection_manager_test_t : public seastar_test_suite_t, TMTestState { CollectionManagerRef collection_manager; collection_manager_test_t() {} seastar::future<> set_up_fut() final { return tm_setup().then([this] { collection_manager = collection_manager::create_coll_manager(*tm); return seastar::now(); }); } seastar::future<> tear_down_fut() final { return tm_teardown().then([this] { collection_manager.reset(); return seastar::now(); }); } using test_collection_t = std::map<coll_t, coll_info_t>; test_collection_t test_coll_mappings; void replay() { restart(); collection_manager = collection_manager::create_coll_manager(*tm); } auto get_root() { auto tref = create_mutate_transaction(); auto coll_root = with_trans_intr( *tref, [this](auto &t) { return collection_manager->mkfs(t); }).unsafe_get0(); submit_transaction(std::move(tref)); return coll_root; } TEST_COLL_FORWARD(remove) TEST_COLL_FORWARD(list) TEST_COLL_FORWARD(create) TEST_COLL_FORWARD(update) void checking_mappings(coll_root_t &coll_root, Transaction &t) { auto coll_list = list(coll_root, t); EXPECT_EQ(test_coll_mappings.size(), coll_list.size()); for (std::pair<coll_t, coll_info_t> p : test_coll_mappings) { EXPECT_NE( std::find(coll_list.begin(), coll_list.end(), p), coll_list.end()); } } void checking_mappings(coll_root_t &coll_root) { auto t = create_read_transaction(); checking_mappings(coll_root, *t); } }; TEST_F(collection_manager_test_t, basic) { run_async([this] { coll_root_t coll_root = get_root(); { auto t = create_mutate_transaction(); for (int i = 0; i < 20; i++) { coll_t cid(spg_t(pg_t(i+1,i+2), shard_id_t::NO_SHARD)); create(coll_root, *t, cid, coll_info_t(i)); test_coll_mappings.emplace(cid, coll_info_t(i)); } checking_mappings(coll_root, *t); submit_transaction(std::move(t)); EXPECT_EQ(test_coll_mappings.size(), 20); } replay(); checking_mappings(coll_root); { auto t = create_mutate_transaction(); for (auto iter = test_coll_mappings.begin(); iter != test_coll_mappings.end();) { remove(coll_root, *t, iter->first); iter = test_coll_mappings.erase(iter); } submit_transaction(std::move(t)); } replay(); { auto t = create_mutate_transaction(); auto list_ret = list(coll_root, *t); submit_transaction(std::move(t)); EXPECT_EQ(list_ret.size(), test_coll_mappings.size()); } }); } TEST_F(collection_manager_test_t, overflow) { run_async([this] { coll_root_t coll_root = get_root(); auto old_location = coll_root.get_location(); auto t = create_mutate_transaction(); for (int i = 0; i < 412; i++) { coll_t cid(spg_t(pg_t(i+1,i+2), shard_id_t::NO_SHARD)); create(coll_root, *t, cid, coll_info_t(i)); test_coll_mappings.emplace(cid, coll_info_t(i)); } submit_transaction(std::move(t)); EXPECT_NE(old_location, coll_root.get_location()); checking_mappings(coll_root); replay(); checking_mappings(coll_root); }); } TEST_F(collection_manager_test_t, update) { run_async([this] { coll_root_t coll_root = get_root(); { auto t = create_mutate_transaction(); for (int i = 0; i < 2; i++) { coll_t cid(spg_t(pg_t(1,i+1), shard_id_t::NO_SHARD)); create(coll_root, *t, cid, coll_info_t(i)); test_coll_mappings.emplace(cid, coll_info_t(i)); } submit_transaction(std::move(t)); } { auto iter1= test_coll_mappings.begin(); auto iter2 = std::next(test_coll_mappings.begin(), 1); EXPECT_NE(iter1->second.split_bits, iter2->second.split_bits); auto t = create_mutate_transaction(); update(coll_root, *t, iter1->first, iter2->second); submit_transaction(std::move(t)); iter1->second.split_bits = iter2->second.split_bits; } replay(); checking_mappings(coll_root); }); }
5,293
27.31016
74
cc
null
ceph-main/src/test/crimson/seastore/test_extent_allocator.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <random> #include <boost/iterator/counting_iterator.hpp> #include "test/crimson/gtest_seastar.h" #include "crimson/os/seastore/random_block_manager.h" #include "crimson/os/seastore/random_block_manager/extent_allocator.h" #include "crimson/os/seastore/random_block_manager/avlallocator.h" #include "include/interval_set.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } struct allocator_test_t : public seastar_test_suite_t, ::testing::WithParamInterface<const char*> { std::random_device rd; std::mt19937 gen; ExtentAllocatorRef allocator; allocator_test_t() : gen(rd()) {} seastar::future<> set_up_fut() final { std::string a_type = GetParam(); if (a_type == "avl") { allocator.reset(new AvlAllocator(false)); return seastar::now(); } ceph_assert(0 == "no support"); } seastar::future<> tear_down_fut() final { if (allocator) { allocator->close(); } return seastar::now(); } void init_alloc(uint64_t block_size, uint64_t total_size) { assert(allocator); allocator->init(0, total_size, block_size); } void close() { assert(allocator); allocator->close(); } auto allocate(size_t size) { return allocator->alloc_extent(size); } void free(uint64_t start, uint64_t length) { allocator->free_extent(start, length); } rbm_abs_addr get_random_addr(size_t block_size, size_t capacity) { return block_size * std::uniform_int_distribution<>(0, (capacity / block_size) - 1)(gen); } }; TEST_P(allocator_test_t, test_alloc_init) { init_alloc(4096, 4096 * 64); ASSERT_EQ((4096 * 64), allocator->get_available_size()); close(); init_alloc(8192, 8192 * 32); allocate(8192); ASSERT_EQ(8192 * 32 - 8192, allocator->get_available_size()); close(); init_alloc(4096, 4096 * 128); allocate(8192); ASSERT_EQ(4096 * 128 - 8192, allocator->get_available_size()); } TEST_P(allocator_test_t, test_init_alloc_free) { uint64_t block_size = 4096; uint64_t capacity = 4 * 1024 * block_size; { init_alloc(block_size, capacity); auto free_length = allocator->get_available_size(); allocate(allocator->get_max_alloc_size()); ASSERT_EQ(free_length - allocator->get_max_alloc_size(), allocator->get_available_size()); free(0, allocator->get_max_alloc_size()); ASSERT_EQ(free_length, allocator->get_available_size()); } } TEST_P(allocator_test_t, test_alloc_failure) { uint64_t block_size = 8192; uint64_t capacity = 1024 * block_size; { init_alloc(block_size, capacity); allocator->mark_extent_used(0, block_size * 256); allocator->mark_extent_used(block_size * 512, block_size * 256); auto result = allocate(block_size * 512); ASSERT_EQ(false, result.has_value()); free(0, block_size * 256); allocator->mark_extent_used(0, block_size * 512); result = allocate(block_size * 512); ASSERT_EQ(false, result.has_value()); } } TEST_P(allocator_test_t, test_random_alloc_verify) { uint64_t block_size = 4096; uint64_t capacity = 64 * 1024 * block_size; uint64_t avail = capacity; interval_set<rbm_abs_addr> alloc_map; init_alloc(block_size, capacity); { for (int i = 0; i < 256; i++) { auto addr = get_random_addr(block_size, capacity); auto size = get_random_addr(block_size, capacity) % (4 << 20); if (addr + size > capacity || size == 0 || alloc_map.intersects(addr, size) ) continue; allocator->mark_extent_used(addr, size); alloc_map.insert(addr, size); avail -= size; } ASSERT_EQ(avail, allocator->get_available_size()); for (auto p : alloc_map) { free(p.first, p.second); avail += p.second; alloc_map.erase(p.first, p.second); ASSERT_EQ(avail, allocator->get_available_size()); } ASSERT_EQ(capacity, allocator->get_available_size()); for (int i = 0; i < 100; i++) { auto addr = get_random_addr(block_size, capacity); auto size = get_random_addr(block_size, capacity) % (4 << 20); if (addr + size > capacity || size == 0 || alloc_map.intersects(addr, size) ) continue; allocator->mark_extent_used(addr, size); alloc_map.insert(addr, size); avail -= size; } for (int i = 0; i < 50; i++) { free((*alloc_map.begin()).first, (*alloc_map.begin()).second); avail += (*alloc_map.begin()).second; alloc_map.erase((*alloc_map.begin()).first, (*alloc_map.begin()).second); ASSERT_EQ(avail, allocator->get_available_size()); auto addr = get_random_addr(block_size, capacity); auto size = get_random_addr(block_size, capacity) % (4 << 20); if (addr + size > capacity || size == 0 || alloc_map.intersects(addr, size) ) continue; allocator->mark_extent_used(addr, size); alloc_map.insert(addr, size); avail -= size; } ASSERT_EQ(avail, allocator->get_available_size()); } } INSTANTIATE_TEST_SUITE_P( allocator_test, allocator_test_t, ::testing::Values("avl"));
5,261
27.912088
79
cc
null
ceph-main/src/test/crimson/seastore/test_object_data_handler.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/seastore/onode.h" #include "crimson/os/seastore/object_data_handler.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; #define MAX_OBJECT_SIZE (16<<20) #define DEFAULT_OBJECT_DATA_RESERVATION (16<<20) #define DEFAULT_OBJECT_METADATA_RESERVATION (16<<20) namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } class TestOnode final : public Onode { onode_layout_t layout; bool dirty = false; public: TestOnode(uint32_t ddr, uint32_t dmr) : Onode(ddr, dmr) {} const onode_layout_t &get_layout() const final { return layout; } onode_layout_t &get_mutable_layout(Transaction &t) final { dirty = true; return layout; } bool is_dirty() const { return dirty; } laddr_t get_hint() const final {return L_ADDR_MIN; } ~TestOnode() final = default; }; struct object_data_handler_test_t: public seastar_test_suite_t, TMTestState { OnodeRef onode; bufferptr known_contents; extent_len_t size = 0; object_data_handler_test_t() {} void write(Transaction &t, objaddr_t offset, extent_len_t len, char fill) { ceph_assert(offset + len <= known_contents.length()); size = std::max<extent_len_t>(size, offset + len); memset( known_contents.c_str() + offset, fill, len); bufferlist bl; bl.append( bufferptr( known_contents, offset, len)); with_trans_intr(t, [&](auto &t) { return ObjectDataHandler(MAX_OBJECT_SIZE).write( ObjectDataHandler::context_t{ *tm, t, *onode, }, offset, bl); }).unsafe_get0(); } void write(objaddr_t offset, extent_len_t len, char fill) { auto t = create_mutate_transaction(); write(*t, offset, len, fill); return submit_transaction(std::move(t)); } void truncate(Transaction &t, objaddr_t offset) { if (size > offset) { memset( known_contents.c_str() + offset, 0, size - offset); with_trans_intr(t, [&](auto &t) { return ObjectDataHandler(MAX_OBJECT_SIZE).truncate( ObjectDataHandler::context_t{ *tm, t, *onode }, offset); }).unsafe_get0(); } size = offset; } void truncate(objaddr_t offset) { auto t = create_mutate_transaction(); truncate(*t, offset); return submit_transaction(std::move(t)); } void read(Transaction &t, objaddr_t offset, extent_len_t len) { bufferlist bl = with_trans_intr(t, [&](auto &t) { return ObjectDataHandler(MAX_OBJECT_SIZE).read( ObjectDataHandler::context_t{ *tm, t, *onode }, offset, len); }).unsafe_get0(); bufferlist known; known.append( bufferptr( known_contents, offset, len)); EXPECT_EQ(bl.length(), known.length()); EXPECT_EQ(bl, known); } void read(objaddr_t offset, extent_len_t len) { auto t = create_read_transaction(); read(*t, offset, len); } void read_near(objaddr_t offset, extent_len_t len, extent_len_t fuzz) { auto fuzzes = std::vector<int32_t>{-1 * (int32_t)fuzz, 0, (int32_t)fuzz}; for (auto left_fuzz : fuzzes) { for (auto right_fuzz : fuzzes) { read(offset + left_fuzz, len - left_fuzz + right_fuzz); } } } std::list<LBAMappingRef> get_mappings(objaddr_t offset, extent_len_t length) { auto t = create_mutate_transaction(); auto ret = with_trans_intr(*t, [&](auto &t) { return tm->get_pins(t, offset, length); }).unsafe_get0(); return ret; } seastar::future<> set_up_fut() final { onode = new TestOnode( DEFAULT_OBJECT_DATA_RESERVATION, DEFAULT_OBJECT_METADATA_RESERVATION); known_contents = buffer::create(4<<20 /* 4MB */); memset(known_contents.c_str(), 0, known_contents.length()); size = 0; return tm_setup(); } seastar::future<> tear_down_fut() final { onode.reset(); size = 0; return tm_teardown(); } }; TEST_F(object_data_handler_test_t, single_write) { run_async([this] { write(1<<20, 8<<10, 'c'); read_near(1<<20, 8<<10, 1); read_near(1<<20, 8<<10, 512); }); } TEST_F(object_data_handler_test_t, multi_write) { run_async([this] { write((1<<20) - (4<<10), 4<<10, 'a'); write(1<<20, 4<<10, 'b'); write((1<<20) + (4<<10), 4<<10, 'c'); read_near(1<<20, 4<<10, 1); read_near(1<<20, 4<<10, 512); read_near((1<<20)-(4<<10), 12<<10, 1); read_near((1<<20)-(4<<10), 12<<10, 512); }); } TEST_F(object_data_handler_test_t, write_hole) { run_async([this] { write((1<<20) - (4<<10), 4<<10, 'a'); // hole at 1<<20 write((1<<20) + (4<<10), 4<<10, 'c'); read_near(1<<20, 4<<10, 1); read_near(1<<20, 4<<10, 512); read_near((1<<20)-(4<<10), 12<<10, 1); read_near((1<<20)-(4<<10), 12<<10, 512); }); } TEST_F(object_data_handler_test_t, overwrite_single) { run_async([this] { write((1<<20), 4<<10, 'a'); write((1<<20), 4<<10, 'c'); read_near(1<<20, 4<<10, 1); read_near(1<<20, 4<<10, 512); }); } TEST_F(object_data_handler_test_t, overwrite_double) { run_async([this] { write((1<<20), 4<<10, 'a'); write((1<<20)+(4<<10), 4<<10, 'c'); write((1<<20), 8<<10, 'b'); read_near(1<<20, 8<<10, 1); read_near(1<<20, 8<<10, 512); read_near(1<<20, 4<<10, 1); read_near(1<<20, 4<<10, 512); read_near((1<<20) + (4<<10), 4<<10, 1); read_near((1<<20) + (4<<10), 4<<10, 512); }); } TEST_F(object_data_handler_test_t, overwrite_partial) { run_async([this] { write((1<<20), 12<<10, 'a'); read_near(1<<20, 12<<10, 1); write((1<<20)+(8<<10), 4<<10, 'b'); read_near(1<<20, 12<<10, 1); write((1<<20)+(4<<10), 4<<10, 'c'); read_near(1<<20, 12<<10, 1); write((1<<20), 4<<10, 'd'); read_near(1<<20, 12<<10, 1); read_near(1<<20, 12<<10, 512); read_near(1<<20, 4<<10, 1); read_near(1<<20, 4<<10, 512); read_near((1<<20) + (4<<10), 4<<10, 1); read_near((1<<20) + (4<<10), 4<<10, 512); }); } TEST_F(object_data_handler_test_t, unaligned_write) { run_async([this] { objaddr_t base = 1<<20; write(base, (4<<10)+(1<<10), 'a'); read_near(base-(4<<10), 12<<10, 512); base = (1<<20) + (64<<10); write(base+(1<<10), (4<<10)+(1<<10), 'b'); read_near(base-(4<<10), 12<<10, 512); base = (1<<20) + (128<<10); write(base-(1<<10), (4<<10)+(2<<20), 'c'); read_near(base-(4<<10), 12<<10, 512); }); } TEST_F(object_data_handler_test_t, unaligned_overwrite) { run_async([this] { objaddr_t base = 1<<20; write(base, (128<<10) + (16<<10), 'x'); write(base, (4<<10)+(1<<10), 'a'); read_near(base-(4<<10), 12<<10, 2<<10); base = (1<<20) + (64<<10); write(base+(1<<10), (4<<10)+(1<<10), 'b'); read_near(base-(4<<10), 12<<10, 2<<10); base = (1<<20) + (128<<10); write(base-(1<<10), (4<<10)+(2<<20), 'c'); read_near(base-(4<<10), 12<<10, 2<<10); read(base, (128<<10) + (16<<10)); }); } TEST_F(object_data_handler_test_t, truncate) { run_async([this] { objaddr_t base = 1<<20; write(base, 8<<10, 'a'); write(base+(8<<10), 8<<10, 'b'); write(base+(16<<10), 8<<10, 'c'); truncate(base + (32<<10)); read(base, 64<<10); truncate(base + (24<<10)); read(base, 64<<10); truncate(base + (12<<10)); read(base, 64<<10); truncate(base - (12<<10)); read(base, 64<<10); }); } TEST_F(object_data_handler_test_t, no_split) { run_async([this] { write(0, 8<<10, 'x'); write(0, 8<<10, 'a'); auto pins = get_mappings(0, 8<<10); EXPECT_EQ(pins.size(), 1); read(0, 8<<10); }); } TEST_F(object_data_handler_test_t, split_left) { run_async([this] { write(0, 128<<10, 'x'); write(64<<10, 60<<10, 'a'); auto pins = get_mappings(0, 128<<10); EXPECT_EQ(pins.size(), 2); size_t res[2] = {0, 64<<10}; auto base = pins.front()->get_key(); int i = 0; for (auto &pin : pins) { EXPECT_EQ(pin->get_key() - base, res[i]); i++; } read(0, 128<<10); }); } TEST_F(object_data_handler_test_t, split_right) { run_async([this] { write(0, 128<<10, 'x'); write(4<<10, 60<<10, 'a'); auto pins = get_mappings(0, 128<<10); EXPECT_EQ(pins.size(), 2); size_t res[2] = {0, 64<<10}; auto base = pins.front()->get_key(); int i = 0; for (auto &pin : pins) { EXPECT_EQ(pin->get_key() - base, res[i]); i++; } read(0, 128<<10); }); } TEST_F(object_data_handler_test_t, split_left_right) { run_async([this] { write(0, 128<<10, 'x'); write(48<<10, 32<<10, 'a'); auto pins = get_mappings(0, 128<<10); EXPECT_EQ(pins.size(), 3); size_t res[3] = {0, 48<<10, 80<<10}; auto base = pins.front()->get_key(); int i = 0; for (auto &pin : pins) { EXPECT_EQ(pin->get_key() - base, res[i]); i++; } }); } TEST_F(object_data_handler_test_t, multiple_split) { run_async([this] { write(0, 128<<10, 'x'); auto t = create_mutate_transaction(); // normal split write(*t, 120<<10, 4<<10, 'a'); // not aligned right write(*t, 4<<10, 5<<10, 'b'); // split right extent of last split result write(*t, 32<<10, 4<<10, 'c'); // non aligned overwrite write(*t, 13<<10, 4<<10, 'd'); write(*t, 64<<10, 32<<10, 'e'); // not split right write(*t, 60<<10, 8<<10, 'f'); submit_transaction(std::move(t)); auto pins = get_mappings(0, 128<<10); EXPECT_EQ(pins.size(), 10); size_t res[10] = {0, 4<<10, 12<<10, 20<<10, 32<<10, 36<<10, 60<<10, 96<<10, 120<<10, 124<<10}; auto base = pins.front()->get_key(); int i = 0; for (auto &pin : pins) { EXPECT_EQ(pin->get_key() - base, res[i]); i++; } read(0, 128<<10); }); }
10,080
23.117225
80
cc
null
ceph-main/src/test/crimson/seastore/test_omap_manager.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/seastore/cache.h" #include "crimson/os/seastore/transaction_manager.h" #include "crimson/os/seastore/segment_manager.h" #include "crimson/os/seastore/omap_manager.h" #include "test/crimson/seastore/test_block.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; using namespace std; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } const int STR_LEN = 50; std::string rand_name(const int len) { std::string ret; ret.reserve(len); for (int i = 0; i < len; ++i) { ret.append(1, (char)(rand() % ('z' - '0')) + '0'); } return ret; } bufferlist rand_buffer(const int len) { bufferptr ptr(len); for (auto i = ptr.c_str(); i < ptr.c_str() + len; ++i) { *i = (char)rand(); } bufferlist bl; bl.append(ptr); return bl; } struct omap_manager_test_t : public seastar_test_suite_t, TMTestState { OMapManagerRef omap_manager; omap_manager_test_t() {} seastar::future<> set_up_fut() final { return tm_setup().then([this] { omap_manager = omap_manager::create_omap_manager(*tm); return seastar::now(); }); } seastar::future<> tear_down_fut() final { return tm_teardown().then([this] { omap_manager.reset(); return seastar::now(); }); } using test_omap_t = std::map<std::string, ceph::bufferlist>; test_omap_t test_omap_mappings; void set_key( omap_root_t &omap_root, Transaction &t, const string &key, const bufferlist &val) { with_trans_intr( t, [&, this](auto &t) { return omap_manager->omap_set_key(omap_root, t, key, val); }).unsafe_get0(); test_omap_mappings[key] = val; } void set_key( omap_root_t &omap_root, Transaction &t, const string &key, const string &val) { bufferlist bl; bl.append(val); set_key(omap_root, t, key, bl); } std::string set_random_key( omap_root_t &omap_root, Transaction &t) { auto key = rand_name(STR_LEN); set_key( omap_root, t, key, rand_buffer(STR_LEN)); return key; } void get_value( omap_root_t &omap_root, Transaction &t, const string &key) { auto ret = with_trans_intr( t, [&, this](auto &t) { return omap_manager->omap_get_value(omap_root, t, key); }).unsafe_get0(); auto iter = test_omap_mappings.find(key); if (iter == test_omap_mappings.end()) { EXPECT_FALSE(ret); } else { EXPECT_TRUE(ret); if (ret) { EXPECT_TRUE(*ret == iter->second); } } } void rm_key( omap_root_t &omap_root, Transaction &t, const string &key) { with_trans_intr( t, [&, this](auto &t) { return omap_manager->omap_rm_key(omap_root, t, key); }).unsafe_get0(); test_omap_mappings.erase(test_omap_mappings.find(key)); } std::vector<std::string> rm_key_range( omap_root_t &omap_root, Transaction &t, const std::string &first, const std::string &last) { logger().debug("rm keys in range {} ~ {}", first, last); auto config = OMapManager::omap_list_config_t() .with_max(3000) .with_inclusive(true, false); with_trans_intr( t, [&, this](auto &t) { return omap_manager->omap_rm_key_range( omap_root, t, first, last, config); }).unsafe_get0(); std::vector<std::string> keys; size_t count = 0; for (auto iter = test_omap_mappings.begin(); iter != test_omap_mappings.end(); ) { if (iter->first >= first && iter->first < last) { keys.push_back(iter->first); iter = test_omap_mappings.erase(iter); count++; } else { iter++; } if (count == config.max_result_size) { break; } } return keys; } void list( const omap_root_t &omap_root, Transaction &t, const std::optional<std::string> &first, const std::optional<std::string> &last, size_t max = 128, bool inclusive = false) { if (first && last) { logger().debug("list on {} ~ {}", *first, *last); } else if (first) { logger().debug("list on {} ~ end", *first); } else if (last) { logger().debug("list on start ~ {}", *last); } else { logger().debug("list on start ~ end"); } auto config = OMapManager::omap_list_config_t() .with_max(max) .with_inclusive(inclusive, false); auto [complete, results] = with_trans_intr( t, [&, this](auto &t) { return omap_manager->omap_list(omap_root, t, first, last, config); }).unsafe_get0(); test_omap_t::iterator it, lit; if (first) { it = config.first_inclusive ? test_omap_mappings.lower_bound(*first) : test_omap_mappings.upper_bound(*first); } else { it = test_omap_mappings.begin(); } if (last) { lit = config.last_inclusive ? test_omap_mappings.upper_bound(*last) : test_omap_mappings.lower_bound(*last); } else { lit = test_omap_mappings.end(); } for (auto &&[k, v]: results) { EXPECT_NE(it, test_omap_mappings.end()); if (it == test_omap_mappings.end()) { return; } EXPECT_EQ(k, it->first); EXPECT_EQ(v, it->second); it++; } if (it == lit) { EXPECT_TRUE(complete); } else { EXPECT_EQ(results.size(), max); } } void clear( omap_root_t &omap_root, Transaction &t) { with_trans_intr( t, [&, this](auto &t) { return omap_manager->omap_clear(omap_root, t); }).unsafe_get0(); EXPECT_EQ(omap_root.get_location(), L_ADDR_NULL); } void check_mappings(omap_root_t &omap_root, Transaction &t) { for (const auto &i: test_omap_mappings){ get_value(omap_root, t, i.first); } } void check_mappings(omap_root_t &omap_root) { auto t = create_read_transaction(); check_mappings(omap_root, *t); } std::vector<std::string> get_mapped_keys() { std::vector<std::string> mkeys; mkeys.reserve(test_omap_mappings.size()); for (auto &k: test_omap_mappings) { mkeys.push_back(k.first); } return mkeys; } void replay() { restart(); omap_manager = omap_manager::create_omap_manager(*tm); } auto initialize() { auto t = create_mutate_transaction(); omap_root_t omap_root = with_trans_intr( *t, [this](auto &t) { return omap_manager->initialize_omap(t, L_ADDR_MIN); }).unsafe_get0(); submit_transaction(std::move(t)); return omap_root; } }; TEST_F(omap_manager_test_t, basic) { run_async([this] { omap_root_t omap_root = initialize(); string key = "owner"; string val = "test"; { auto t = create_mutate_transaction(); logger().debug("first transaction"); set_key(omap_root, *t, key, val); get_value(omap_root, *t, key); submit_transaction(std::move(t)); } { auto t = create_mutate_transaction(); logger().debug("second transaction"); get_value(omap_root, *t, key); rm_key(omap_root, *t, key); get_value(omap_root, *t, key); submit_transaction(std::move(t)); } { auto t = create_mutate_transaction(); logger().debug("third transaction"); get_value(omap_root, *t, key); submit_transaction(std::move(t)); } }); } TEST_F(omap_manager_test_t, force_leafnode_split) { run_async([this] { omap_root_t omap_root = initialize(); for (unsigned i = 0; i < 40; i++) { auto t = create_mutate_transaction(); logger().debug("opened transaction"); for (unsigned j = 0; j < 10; ++j) { set_random_key(omap_root, *t); if ((i % 20 == 0) && (j == 5)) { check_mappings(omap_root, *t); } } logger().debug("force split submit transaction i = {}", i); submit_transaction(std::move(t)); check_mappings(omap_root); } }); } TEST_F(omap_manager_test_t, force_leafnode_split_merge) { run_async([this] { omap_root_t omap_root = initialize(); for (unsigned i = 0; i < 80; i++) { auto t = create_mutate_transaction(); logger().debug("opened split_merge transaction"); for (unsigned j = 0; j < 5; ++j) { set_random_key(omap_root, *t); if ((i % 10 == 0) && (j == 3)) { check_mappings(omap_root, *t); } } logger().debug("submitting transaction"); submit_transaction(std::move(t)); if (i % 50 == 0) { check_mappings(omap_root); } } auto mkeys = get_mapped_keys(); auto t = create_mutate_transaction(); for (unsigned i = 0; i < mkeys.size(); i++) { if (i % 3 != 0) { rm_key(omap_root, *t, mkeys[i]); } if (i % 10 == 0) { logger().debug("submitting transaction i= {}", i); submit_transaction(std::move(t)); t = create_mutate_transaction(); } if (i % 100 == 0) { logger().debug("check_mappings i= {}", i); check_mappings(omap_root, *t); check_mappings(omap_root); } } logger().debug("finally submitting transaction "); submit_transaction(std::move(t)); }); } TEST_F(omap_manager_test_t, force_leafnode_split_merge_fullandbalanced) { run_async([this] { omap_root_t omap_root = initialize(); for (unsigned i = 0; i < 50; i++) { auto t = create_mutate_transaction(); logger().debug("opened split_merge transaction"); for (unsigned j = 0; j < 5; ++j) { set_random_key(omap_root, *t); if ((i % 10 == 0) && (j == 3)) { check_mappings(omap_root, *t); } } logger().debug("submitting transaction"); submit_transaction(std::move(t)); if (i % 50 == 0) { check_mappings(omap_root); } } auto mkeys = get_mapped_keys(); auto t = create_mutate_transaction(); for (unsigned i = 0; i < mkeys.size(); i++) { if (30 < i && i < 100) { rm_key(omap_root, *t, mkeys[i]); } if (i % 10 == 0) { logger().debug("submitting transaction i= {}", i); submit_transaction(std::move(t)); t = create_mutate_transaction(); } if (i % 50 == 0) { logger().debug("check_mappings i= {}", i); check_mappings(omap_root, *t); check_mappings(omap_root); } if (i == 100) { break; } } logger().debug("finally submitting transaction "); submit_transaction(std::move(t)); check_mappings(omap_root); }); } TEST_F(omap_manager_test_t, force_split_listkeys_list_rmkey_range_clear) { run_async([this] { omap_root_t omap_root = initialize(); string first, last; for (unsigned i = 0; i < 40; i++) { auto t = create_mutate_transaction(); logger().debug("opened transaction"); for (unsigned j = 0; j < 10; ++j) { auto key = set_random_key(omap_root, *t); if (i == 10) { first = key; } if (i == 30) { last = key; if (first > last) { std::swap(first, last); } } if ((i % 20 == 0) && (j == 5)) { check_mappings(omap_root, *t); } } logger().debug("force split submit transaction i = {}", i); submit_transaction(std::move(t)); check_mappings(omap_root); } std::optional<std::string> first_temp; std::optional<std::string> last_temp; { auto t = create_read_transaction(); first_temp = std::nullopt; last_temp = std::nullopt; list(omap_root, *t, first_temp, last_temp); } { auto t = create_read_transaction(); first_temp = first; last_temp = std::nullopt; list(omap_root, *t, first_temp, last_temp, 100); } { auto t = create_read_transaction(); first_temp = first; last_temp = std::nullopt; list(omap_root, *t, first_temp, last_temp, 100, true); } { auto t = create_read_transaction(); first_temp = std::nullopt; last_temp = last; list(omap_root, *t, first_temp, last_temp, 10240); } { auto t = create_read_transaction(); first_temp = first; last_temp = last; list(omap_root, *t, first_temp, last_temp, 10240, true); } { auto t = create_read_transaction(); list(omap_root, *t, first, last, 10240, true); } { auto t = create_mutate_transaction(); auto keys = rm_key_range(omap_root, *t, first, last); for (const auto& key : keys) { get_value(omap_root, *t, key); } submit_transaction(std::move(t)); } { auto t = create_mutate_transaction(); clear(omap_root, *t); submit_transaction(std::move(t)); } }); } TEST_F(omap_manager_test_t, force_inner_node_split_list_rmkey_range) { run_async([this] { omap_root_t omap_root = initialize(); string first = ""; string last; while (cache->get_omap_tree_depth() < 3) { for (unsigned i = 0; i < 40; i++) { auto t = create_mutate_transaction(); logger().debug("opened transaction"); for (unsigned j = 0; j < 10; ++j) { auto key = set_random_key(omap_root, *t); if (key.compare(first) < 0 || !first.length()) { first = key; } if (i == 10) { last = key; } } logger().debug("force split submit transaction i = {}", i); submit_transaction(std::move(t)); } } std::optional<std::string> first_temp; std::optional<std::string> last_temp; { auto t = create_read_transaction(); first_temp = first; last_temp = std::nullopt; list(omap_root, *t, first_temp, last_temp, 10240); } { auto t = create_read_transaction(); first_temp = first; last_temp = std::nullopt; list(omap_root, *t, first_temp, last_temp, 10240, true); } { auto t = create_read_transaction(); first_temp = std::nullopt; last_temp = last; list(omap_root, *t, first_temp, last_temp, 10240); } { auto t = create_read_transaction(); first_temp = first; last_temp = last; list(omap_root, *t, first_temp, last_temp, 10240, true); } { auto t = create_mutate_transaction(); auto keys = rm_key_range(omap_root, *t, first, last); for (const auto& key : keys) { get_value(omap_root, *t, key); } submit_transaction(std::move(t)); } { auto t = create_mutate_transaction(); clear(omap_root, *t); submit_transaction(std::move(t)); } }); } TEST_F(omap_manager_test_t, internal_force_split) { run_async([this] { omap_root_t omap_root = initialize(); for (unsigned i = 0; i < 10; i++) { logger().debug("opened split transaction"); auto t = create_mutate_transaction(); for (unsigned j = 0; j < 80; ++j) { set_random_key(omap_root, *t); if ((i % 2 == 0) && (j % 50 == 0)) { check_mappings(omap_root, *t); } } logger().debug("submitting transaction i = {}", i); submit_transaction(std::move(t)); } check_mappings(omap_root); }); } TEST_F(omap_manager_test_t, internal_force_merge_fullandbalanced) { run_async([this] { omap_root_t omap_root = initialize(); for (unsigned i = 0; i < 8; i++) { logger().debug("opened split transaction"); auto t = create_mutate_transaction(); for (unsigned j = 0; j < 80; ++j) { set_random_key(omap_root, *t); if ((i % 2 == 0) && (j % 50 == 0)) { check_mappings(omap_root, *t); } } logger().debug("submitting transaction"); submit_transaction(std::move(t)); } auto mkeys = get_mapped_keys(); auto t = create_mutate_transaction(); for (unsigned i = 0; i < mkeys.size(); i++) { rm_key(omap_root, *t, mkeys[i]); if (i % 10 == 0) { logger().debug("submitting transaction i= {}", i); submit_transaction(std::move(t)); t = create_mutate_transaction(); } if (i % 50 == 0) { logger().debug("check_mappings i= {}", i); check_mappings(omap_root, *t); check_mappings(omap_root); } } logger().debug("finally submitting transaction "); submit_transaction(std::move(t)); check_mappings(omap_root); }); } TEST_F(omap_manager_test_t, replay) { run_async([this] { omap_root_t omap_root = initialize(); for (unsigned i = 0; i < 8; i++) { logger().debug("opened split transaction"); auto t = create_mutate_transaction(); for (unsigned j = 0; j < 80; ++j) { set_random_key(omap_root, *t); if ((i % 2 == 0) && (j % 50 == 0)) { check_mappings(omap_root, *t); } } logger().debug("submitting transaction i = {}", i); submit_transaction(std::move(t)); } replay(); check_mappings(omap_root); auto mkeys = get_mapped_keys(); auto t = create_mutate_transaction(); for (unsigned i = 0; i < mkeys.size(); i++) { rm_key(omap_root, *t, mkeys[i]); if (i % 10 == 0) { logger().debug("submitting transaction i= {}", i); submit_transaction(std::move(t)); replay(); t = create_mutate_transaction(); } if (i % 50 == 0) { logger().debug("check_mappings i= {}", i); check_mappings(omap_root, *t); check_mappings(omap_root); } } logger().debug("finally submitting transaction "); submit_transaction(std::move(t)); replay(); check_mappings(omap_root); }); } TEST_F(omap_manager_test_t, internal_force_split_to_root) { run_async([this] { omap_root_t omap_root = initialize(); logger().debug("set big keys"); for (unsigned i = 0; i < 53; i++) { auto t = create_mutate_transaction(); for (unsigned j = 0; j < 8; ++j) { set_random_key(omap_root, *t); } logger().debug("submitting transaction i = {}", i); submit_transaction(std::move(t)); } logger().debug("set small keys"); for (unsigned i = 0; i < 100; i++) { auto t = create_mutate_transaction(); for (unsigned j = 0; j < 8; ++j) { set_random_key(omap_root, *t); } logger().debug("submitting transaction last"); submit_transaction(std::move(t)); } check_mappings(omap_root); }); }
18,451
24.556787
72
cc
null
ceph-main/src/test/crimson/seastore/test_randomblock_manager.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include <random> #include "crimson/common/log.h" #include "crimson/os/seastore/random_block_manager/block_rb_manager.h" #include "crimson/os/seastore/random_block_manager/rbm_device.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } constexpr uint64_t DEFAULT_TEST_SIZE = 1 << 20; struct rbm_test_t : public seastar_test_suite_t { std::unique_ptr<BlockRBManager> rbm_manager; std::unique_ptr<random_block_device::RBMDevice> device; struct rbm_transaction { void add_rbm_allocated_blocks(alloc_delta_t &d) { allocated_blocks.push_back(d); } void clear_rbm_allocated_blocks() { if (!allocated_blocks.empty()) { allocated_blocks.clear(); } } const auto &get_rbm_allocated_blocks() { return allocated_blocks; } std::vector<alloc_delta_t> allocated_blocks; }; std::default_random_engine generator; uint64_t block_size = 0; uint64_t size = 0; device_config_t config; rbm_test_t() = default; seastar::future<> set_up_fut() final { device = random_block_device::create_test_ephemeral( random_block_device::DEFAULT_TEST_CBJOURNAL_SIZE, DEFAULT_TEST_SIZE); block_size = device->get_block_size(); size = device->get_available_size(); rbm_manager.reset(new BlockRBManager(device.get(), std::string(), false)); config = get_rbm_ephemeral_device_config(0, 1); return device->mkfs(config).handle_error(crimson::ct_error::assert_all{} ).then([this] { return device->mount().handle_error(crimson::ct_error::assert_all{} ).then([this] { return rbm_manager->open().handle_error(crimson::ct_error::assert_all{}); }); }); } seastar::future<> tear_down_fut() final { rbm_manager->close().unsafe_get0(); device->close().unsafe_get0(); rbm_manager.reset(); device.reset(); return seastar::now(); } auto mkfs() { return device->mkfs(config).unsafe_get0(); } auto read_rbm_header() { return device->read_rbm_header(RBM_START_ADDRESS).unsafe_get0(); } auto open() { device->mount().unsafe_get0(); return rbm_manager->open().unsafe_get0(); } auto write(uint64_t addr, bufferptr &ptr) { paddr_t paddr = convert_abs_addr_to_paddr( addr, rbm_manager->get_device_id()); return rbm_manager->write(paddr, ptr).unsafe_get0(); } auto read(uint64_t addr, bufferptr &ptr) { paddr_t paddr = convert_abs_addr_to_paddr( addr, rbm_manager->get_device_id()); return rbm_manager->read(paddr, ptr).unsafe_get0(); } bufferptr generate_extent(size_t blocks) { std::uniform_int_distribution<char> distribution( std::numeric_limits<char>::min(), std::numeric_limits<char>::max() ); char contents = distribution(generator); return buffer::ptr(buffer::create(blocks * block_size, contents)); } void close() { rbm_manager->close().unsafe_get0(); return; } }; TEST_F(rbm_test_t, mkfs_test) { run_async([this] { auto super = read_rbm_header(); ASSERT_TRUE( super.block_size == block_size && super.size == size ); config.spec.id = DEVICE_ID_NULL; mkfs(); super = read_rbm_header(); ASSERT_TRUE( super.config.spec.id == DEVICE_ID_NULL && super.size == size ); }); } TEST_F(rbm_test_t, open_read_write_test) { run_async([this] { auto content = generate_extent(1); { write( block_size, content ); auto bp = bufferptr(ceph::buffer::create_page_aligned(block_size)); read( block_size, bp ); bufferlist bl; bufferlist block; bl.append(bp); block.append(content); ASSERT_EQ( bl.begin().crc32c(bl.length(), 1), block.begin().crc32c(block.length(), 1)); } close(); open(); { auto bp = bufferptr(ceph::buffer::create_page_aligned(block_size)); read( block_size, bp ); bufferlist bl; bufferlist block; bl.append(bp); block.append(content); ASSERT_EQ( bl.begin().crc32c(bl.length(), 1), block.begin().crc32c(block.length(), 1)); } }); }
4,355
23.335196
78
cc
null
ceph-main/src/test/crimson/seastore/test_seastore.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <string> #include <iostream> #include <sstream> #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/futurized_collection.h" #include "crimson/os/seastore/seastore.h" #include "crimson/os/seastore/onode.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; using SeaStoreShard = FuturizedStore::Shard; using CTransaction = ceph::os::Transaction; using namespace std; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } ghobject_t make_oid(int i) { stringstream ss; ss << "object_" << i; auto ret = ghobject_t( hobject_t( sobject_t(ss.str(), CEPH_NOSNAP))); ret.set_shard(shard_id_t(shard_id_t::NO_SHARD)); ret.hobj.nspace = "asdf"; ret.hobj.pool = 0; uint32_t reverse_hash = hobject_t::_reverse_bits(0); ret.hobj.set_bitwise_key_u32(reverse_hash + i * 100); return ret; } ghobject_t make_temp_oid(int i) { stringstream ss; ss << "temp_object_" << i; auto ret = ghobject_t( hobject_t( sobject_t(ss.str(), CEPH_NOSNAP))); ret.set_shard(shard_id_t(shard_id_t::NO_SHARD)); ret.hobj.nspace = "hjkl"; ret.hobj.pool = -2ll; uint32_t reverse_hash = hobject_t::_reverse_bits(0); ret.hobj.set_bitwise_key_u32(reverse_hash + i * 100); return ret; } struct seastore_test_t : public seastar_test_suite_t, SeaStoreTestState, ::testing::WithParamInterface<const char*> { coll_t coll_name{spg_t{pg_t{0, 0}}}; CollectionRef coll; seastore_test_t() {} seastar::future<> set_up_fut() final { std::string j_type = GetParam(); journal_type_t journal; if (j_type == "segmented") { journal = journal_type_t::SEGMENTED; } else if (j_type == "circularbounded") { journal = journal_type_t::RANDOM_BLOCK; } else { ceph_assert(0 == "no support"); } return tm_setup(journal ).then([this] { return sharded_seastore->create_new_collection(coll_name); }).then([this](auto coll_ref) { coll = coll_ref; CTransaction t; t.create_collection(coll_name, 0); return sharded_seastore->do_transaction( coll, std::move(t)); }); } seastar::future<> tear_down_fut() final { coll.reset(); return tm_teardown(); } void do_transaction(CTransaction &&t) { return sharded_seastore->do_transaction( coll, std::move(t)).get0(); } void set_meta( const std::string& key, const std::string& value) { return seastore->write_meta(key, value).get0(); } std::tuple<int, std::string> get_meta( const std::string& key) { return seastore->read_meta(key).get(); } struct object_state_t { const coll_t cid; const CollectionRef coll; const ghobject_t oid; std::map<string, bufferlist> omap; bufferlist contents; void touch( CTransaction &t) { t.touch(cid, oid); } void touch( SeaStoreShard &sharded_seastore) { CTransaction t; touch(t); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void truncate( CTransaction &t, uint64_t off) { t.truncate(cid, oid, off); } void truncate( SeaStoreShard &sharded_seastore, uint64_t off) { CTransaction t; truncate(t, off); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } std::map<uint64_t, uint64_t> fiemap( SeaStoreShard &sharded_seastore, uint64_t off, uint64_t len) { return sharded_seastore.fiemap(coll, oid, off, len).unsafe_get0(); } bufferlist readv( SeaStoreShard &sharded_seastore, interval_set<uint64_t>&m) { return sharded_seastore.readv(coll, oid, m).unsafe_get0(); } void remove( CTransaction &t) { t.remove(cid, oid); t.remove_collection(cid); } void remove( SeaStoreShard &sharded_seastore) { CTransaction t; remove(t); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void set_omap( CTransaction &t, const string &key, const bufferlist &val) { omap[key] = val; std::map<string, bufferlist> arg; arg[key] = val; t.omap_setkeys( cid, oid, arg); } void set_omap( SeaStoreShard &sharded_seastore, const string &key, const bufferlist &val) { CTransaction t; set_omap(t, key, val); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void write( SeaStoreShard &sharded_seastore, CTransaction &t, uint64_t offset, bufferlist bl) { bufferlist new_contents; if (offset > 0 && contents.length()) { new_contents.substr_of( contents, 0, std::min<size_t>(offset, contents.length()) ); } new_contents.append_zero(offset - new_contents.length()); new_contents.append(bl); auto tail_offset = offset + bl.length(); if (contents.length() > tail_offset) { bufferlist tail; tail.substr_of( contents, tail_offset, contents.length() - tail_offset); new_contents.append(tail); } contents.swap(new_contents); t.write( cid, oid, offset, bl.length(), bl); } void write( SeaStoreShard &sharded_seastore, uint64_t offset, bufferlist bl) { CTransaction t; write(sharded_seastore, t, offset, bl); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void write( SeaStoreShard &sharded_seastore, uint64_t offset, size_t len, char fill) { auto buffer = bufferptr(buffer::create(len)); ::memset(buffer.c_str(), fill, len); bufferlist bl; bl.append(buffer); write(sharded_seastore, offset, bl); } void zero( SeaStoreShard &sharded_seastore, CTransaction &t, uint64_t offset, size_t len) { ceph::buffer::list bl; bl.append_zero(len); bufferlist new_contents; if (offset > 0 && contents.length()) { new_contents.substr_of( contents, 0, std::min<size_t>(offset, contents.length()) ); } new_contents.append_zero(offset - new_contents.length()); new_contents.append(bl); auto tail_offset = offset + bl.length(); if (contents.length() > tail_offset) { bufferlist tail; tail.substr_of( contents, tail_offset, contents.length() - tail_offset); new_contents.append(tail); } contents.swap(new_contents); t.zero( cid, oid, offset, len); } void zero( SeaStoreShard &sharded_seastore, uint64_t offset, size_t len) { CTransaction t; zero(sharded_seastore, t, offset, len); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void read( SeaStoreShard &sharded_seastore, uint64_t offset, uint64_t len) { bufferlist to_check; to_check.substr_of( contents, offset, len); auto ret = sharded_seastore.read( coll, oid, offset, len).unsafe_get0(); EXPECT_EQ(ret.length(), to_check.length()); EXPECT_EQ(ret, to_check); } void check_size(SeaStoreShard &sharded_seastore) { auto st = sharded_seastore.stat( coll, oid).get0(); EXPECT_EQ(contents.length(), st.st_size); } void set_attr( SeaStoreShard &sharded_seastore, std::string key, bufferlist& val) { CTransaction t; t.setattr(cid, oid, key, val); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void rm_attr( SeaStoreShard &sharded_seastore, std::string key) { CTransaction t; t.rmattr(cid, oid, key); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } void rm_attrs( SeaStoreShard &sharded_seastore) { CTransaction t; t.rmattrs(cid, oid); sharded_seastore.do_transaction( coll, std::move(t)).get0(); } SeaStoreShard::attrs_t get_attrs( SeaStoreShard &sharded_seastore) { return sharded_seastore.get_attrs(coll, oid) .handle_error(SeaStoreShard::get_attrs_ertr::discard_all{}) .get(); } ceph::bufferlist get_attr( SeaStoreShard& sharded_seastore, std::string_view name) { return sharded_seastore.get_attr(coll, oid, name) .handle_error( SeaStoreShard::get_attr_errorator::discard_all{}) .get(); } void check_omap_key( SeaStoreShard &sharded_seastore, const string &key) { std::set<string> to_check; to_check.insert(key); auto result = sharded_seastore.omap_get_values( coll, oid, to_check).unsafe_get0(); if (result.empty()) { EXPECT_EQ(omap.find(key), omap.end()); } else { auto iter = omap.find(key); EXPECT_NE(iter, omap.end()); if (iter != omap.end()) { EXPECT_EQ(result.size(), 1); EXPECT_EQ(iter->second, result.begin()->second); } } } void check_omap(SeaStoreShard &sharded_seastore) { auto refiter = omap.begin(); std::optional<std::string> start; while(true) { auto [done, kvs] = sharded_seastore.omap_get_values( coll, oid, start).unsafe_get0(); auto iter = kvs.begin(); while (true) { if ((done && iter == kvs.end()) && refiter == omap.end()) { return; // finished } else if (!done && iter == kvs.end()) { break; // reload kvs } if (iter == kvs.end() || refiter->first < iter->first) { logger().debug( "check_omap: missing omap key {}", refiter->first); GTEST_FAIL() << "missing omap key " << refiter->first; ++refiter; } else if (refiter == omap.end() || refiter->first > iter->first) { logger().debug( "check_omap: extra omap key {}", iter->first); GTEST_FAIL() << "extra omap key " << iter->first; ++iter; } else { EXPECT_EQ(iter->second, refiter->second); ++iter; ++refiter; } } if (!done) { start = kvs.rbegin()->first; } } } }; map<ghobject_t, object_state_t> test_objects; object_state_t &get_object( const ghobject_t &oid) { return test_objects.emplace( std::make_pair( oid, object_state_t{coll_name, coll, oid})).first->second; } void remove_object( object_state_t &sobj) { sobj.remove(*sharded_seastore); auto erased = test_objects.erase(sobj.oid); ceph_assert(erased == 1); } void validate_objects() const { std::vector<ghobject_t> oids; for (auto& [oid, obj] : test_objects) { oids.emplace_back(oid); } auto ret = sharded_seastore->list_objects( coll, ghobject_t(), ghobject_t::get_max(), std::numeric_limits<uint64_t>::max()).get0(); EXPECT_EQ(std::get<1>(ret), ghobject_t::get_max()); EXPECT_EQ(std::get<0>(ret), oids); } // create temp objects struct bound_t { enum class type_t { MIN, MAX, TEMP, TEMP_END, NORMAL_BEGIN, NORMAL, } type = type_t::MIN; unsigned index = 0; static bound_t get_temp(unsigned index) { return bound_t{type_t::TEMP, index}; } static bound_t get_normal(unsigned index) { return bound_t{type_t::NORMAL, index}; } static bound_t get_min() { return bound_t{type_t::MIN}; } static bound_t get_max() { return bound_t{type_t::MAX}; } static bound_t get_temp_end() { return bound_t{type_t::TEMP_END}; } static bound_t get_normal_begin() { return bound_t{type_t::NORMAL_BEGIN}; } ghobject_t get_oid(SeaStore &seastore, CollectionRef &coll) const { switch (type) { case type_t::MIN: return ghobject_t(); case type_t::MAX: return ghobject_t::get_max(); case type_t::TEMP: return make_temp_oid(index); case type_t::TEMP_END: return seastore.get_objs_range(coll, 0).temp_end; case type_t::NORMAL_BEGIN: return seastore.get_objs_range(coll, 0).obj_begin; case type_t::NORMAL: return make_oid(index); default: assert(0 == "impossible"); return ghobject_t(); } } }; struct list_test_case_t { bound_t left; bound_t right; unsigned limit; }; // list_test_cases_t :: [<limit, left_bound, right_bound>] using list_test_cases_t = std::list<std::tuple<unsigned, bound_t, bound_t>>; void test_list( unsigned temp_to_create, /// create temp 0..temp_to_create-1 unsigned normal_to_create, /// create normal 0..normal_to_create-1 list_test_cases_t cases /// cases to test ) { std::vector<ghobject_t> objs; // setup auto create = [this, &objs](ghobject_t hoid) { objs.emplace_back(std::move(hoid)); auto &obj = get_object(objs.back()); obj.touch(*sharded_seastore); obj.check_size(*sharded_seastore); }; for (unsigned i = 0; i < temp_to_create; ++i) { create(make_temp_oid(i)); } for (unsigned i = 0; i < normal_to_create; ++i) { create(make_oid(i)); } // list and validate each case for (auto [limit, in_left_bound, in_right_bound] : cases) { auto left_bound = in_left_bound.get_oid(*seastore, coll); auto right_bound = in_right_bound.get_oid(*seastore, coll); // get results from seastore auto [listed, next] = sharded_seastore->list_objects( coll, left_bound, right_bound, limit).get0(); // compute correct answer auto correct_begin = std::find_if( objs.begin(), objs.end(), [&left_bound](const auto &in) { return in >= left_bound; }); unsigned count = 0; auto correct_end = correct_begin; for (; count < limit && correct_end != objs.end() && *correct_end < right_bound; ++correct_end, ++count); // validate return -- [correct_begin, correct_end) should match listed decltype(objs) correct_listed(correct_begin, correct_end); EXPECT_EQ(listed, correct_listed); if (count < limit) { if (correct_end == objs.end()) { // if listed extends to end of range, next should be >= right_bound EXPECT_GE(next, right_bound); } else { // next <= *correct_end since *correct_end is the next object to list EXPECT_LE(next, *correct_end); // next > *(correct_end - 1) since we already listed it EXPECT_GT(next, *(correct_end - 1)); } } else { // we listed exactly limit objects EXPECT_EQ(limit, listed.size()); EXPECT_GE(next, left_bound); if (limit == 0) { if (correct_end != objs.end()) { // next <= *correct_end since *correct_end is the next object to list EXPECT_LE(next, *correct_end); } } else { // next > *(correct_end - 1) since we already listed it EXPECT_GT(next, *(correct_end - 1)); } } } // teardown for (auto &&hoid : objs) { get_object(hoid).remove(*sharded_seastore); } } }; template <typename T, typename V> auto contains(const T &t, const V &v) { return std::find( t.begin(), t.end(), v) != t.end(); } TEST_P(seastore_test_t, collection_create_list_remove) { run_async([this] { coll_t test_coll{spg_t{pg_t{1, 0}}}; { sharded_seastore->create_new_collection(test_coll).get0(); { CTransaction t; t.create_collection(test_coll, 4); do_transaction(std::move(t)); } auto colls_cores = seastore->list_collections().get0(); std::vector<coll_t> colls; colls.resize(colls_cores.size()); std::transform( colls_cores.begin(), colls_cores.end(), colls.begin(), [](auto p) { return p.first; }); EXPECT_EQ(colls.size(), 2); EXPECT_TRUE(contains(colls, coll_name)); EXPECT_TRUE(contains(colls, test_coll)); } { { CTransaction t; t.remove_collection(test_coll); do_transaction(std::move(t)); } auto colls_cores = seastore->list_collections().get0(); std::vector<coll_t> colls; colls.resize(colls_cores.size()); std::transform( colls_cores.begin(), colls_cores.end(), colls.begin(), [](auto p) { return p.first; }); EXPECT_EQ(colls.size(), 1); EXPECT_TRUE(contains(colls, coll_name)); } }); } TEST_P(seastore_test_t, meta) { run_async([this] { set_meta("key1", "value1"); set_meta("key2", "value2"); const auto [ret1, value1] = get_meta("key1"); const auto [ret2, value2] = get_meta("key2"); EXPECT_EQ(ret1, 0); EXPECT_EQ(ret2, 0); EXPECT_EQ(value1, "value1"); EXPECT_EQ(value2, "value2"); }); } TEST_P(seastore_test_t, touch_stat_list_remove) { run_async([this] { auto &test_obj = get_object(make_oid(0)); test_obj.touch(*sharded_seastore); test_obj.check_size(*sharded_seastore); validate_objects(); remove_object(test_obj); validate_objects(); }); } using bound_t = seastore_test_t::bound_t; constexpr unsigned MAX_LIMIT = std::numeric_limits<unsigned>::max(); static const seastore_test_t::list_test_cases_t temp_list_cases{ // list all temp, maybe overlap to normal on right {MAX_LIMIT, bound_t::get_min() , bound_t::get_max() }, { 5, bound_t::get_min() , bound_t::get_temp_end()}, { 6, bound_t::get_min() , bound_t::get_temp_end()}, { 6, bound_t::get_min() , bound_t::get_max() }, // list temp starting at min up to but not past boundary { 3, bound_t::get_min() , bound_t::get_temp(3) }, { 3, bound_t::get_min() , bound_t::get_temp(4) }, { 3, bound_t::get_min() , bound_t::get_temp(2) }, // list temp starting > min up to or past boundary { 3, bound_t::get_temp(2) , bound_t::get_temp_end()}, { 3, bound_t::get_temp(2) , bound_t::get_max() }, { 3, bound_t::get_temp(3) , bound_t::get_max() }, { 3, bound_t::get_temp(1) , bound_t::get_max() }, // 0 limit { 0, bound_t::get_min() , bound_t::get_max() }, { 0, bound_t::get_temp(1) , bound_t::get_max() }, { 0, bound_t::get_temp_end(), bound_t::get_max() }, }; TEST_P(seastore_test_t, list_objects_temp_only) { run_async([this] { test_list(5, 0, temp_list_cases); }); } TEST_P(seastore_test_t, list_objects_temp_overlap) { run_async([this] { test_list(5, 5, temp_list_cases); }); } static const seastore_test_t::list_test_cases_t normal_list_cases{ // list all normal, maybe overlap to temp on left {MAX_LIMIT, bound_t::get_min() , bound_t::get_max() }, { 5, bound_t::get_normal_begin(), bound_t::get_max() }, { 6, bound_t::get_normal_begin(), bound_t::get_max() }, { 6, bound_t::get_temp(4) , bound_t::get_max() }, // list normal starting <= normal_begin < end { 3, bound_t::get_normal_begin(), bound_t::get_normal(3)}, { 3, bound_t::get_normal_begin(), bound_t::get_normal(4)}, { 3, bound_t::get_normal_begin(), bound_t::get_normal(2)}, { 3, bound_t::get_temp(5) , bound_t::get_normal(2)}, { 3, bound_t::get_temp(4) , bound_t::get_normal(2)}, // list normal starting > min up to end { 3, bound_t::get_normal(2) , bound_t::get_max() }, { 3, bound_t::get_normal(2) , bound_t::get_max() }, { 3, bound_t::get_normal(3) , bound_t::get_max() }, { 3, bound_t::get_normal(1) , bound_t::get_max() }, // 0 limit { 0, bound_t::get_min() , bound_t::get_max() }, { 0, bound_t::get_normal(1) , bound_t::get_max() }, { 0, bound_t::get_normal_begin(), bound_t::get_max() }, }; TEST_P(seastore_test_t, list_objects_normal_only) { run_async([this] { test_list(5, 0, normal_list_cases); }); } TEST_P(seastore_test_t, list_objects_normal_overlap) { run_async([this] { test_list(5, 5, normal_list_cases); }); } bufferlist make_bufferlist(size_t len) { bufferptr ptr(len); bufferlist bl; bl.append(ptr); return bl; } TEST_P(seastore_test_t, omap_test_simple) { run_async([this] { auto &test_obj = get_object(make_oid(0)); test_obj.touch(*sharded_seastore); test_obj.set_omap( *sharded_seastore, "asdf", make_bufferlist(128)); test_obj.check_omap_key( *sharded_seastore, "asdf"); }); } TEST_P(seastore_test_t, attr) { run_async([this] { auto& test_obj = get_object(make_oid(0)); test_obj.touch(*sharded_seastore); { std::string oi("asdfasdfasdf"); bufferlist bl; encode(oi, bl); test_obj.set_attr(*sharded_seastore, OI_ATTR, bl); std::string ss("fdsfdsfs"); bl.clear(); encode(ss, bl); test_obj.set_attr(*sharded_seastore, SS_ATTR, bl); std::string test_val("ssssssssssss"); bl.clear(); encode(test_val, bl); test_obj.set_attr(*sharded_seastore, "test_key", bl); auto attrs = test_obj.get_attrs(*sharded_seastore); std::string oi2; bufferlist bl2 = attrs[OI_ATTR]; decode(oi2, bl2); bl2.clear(); bl2 = attrs[SS_ATTR]; std::string ss2; decode(ss2, bl2); std::string test_val2; bl2.clear(); bl2 = attrs["test_key"]; decode(test_val2, bl2); EXPECT_EQ(ss, ss2); EXPECT_EQ(oi, oi2); EXPECT_EQ(test_val, test_val2); bl2.clear(); bl2 = test_obj.get_attr(*sharded_seastore, "test_key"); test_val2.clear(); decode(test_val2, bl2); EXPECT_EQ(test_val, test_val2); //test rm_attrs test_obj.rm_attrs(*sharded_seastore); attrs = test_obj.get_attrs(*sharded_seastore); EXPECT_EQ(attrs.find(OI_ATTR), attrs.end()); EXPECT_EQ(attrs.find(SS_ATTR), attrs.end()); EXPECT_EQ(attrs.find("test_key"), attrs.end()); std::cout << "test_key passed" << std::endl; //create OI_ATTR with len > onode_layout_t::MAX_OI_LENGTH, rm OI_ATTR //create SS_ATTR with len > onode_layout_t::MAX_SS_LENGTH, rm SS_ATTR char oi_array[onode_layout_t::MAX_OI_LENGTH + 1] = {'a'}; std::string oi_str(&oi_array[0], sizeof(oi_array)); bl.clear(); encode(oi_str, bl); test_obj.set_attr(*sharded_seastore, OI_ATTR, bl); char ss_array[onode_layout_t::MAX_SS_LENGTH + 1] = {'b'}; std::string ss_str(&ss_array[0], sizeof(ss_array)); bl.clear(); encode(ss_str, bl); test_obj.set_attr(*sharded_seastore, SS_ATTR, bl); attrs = test_obj.get_attrs(*sharded_seastore); bl2.clear(); bl2 = attrs[OI_ATTR]; std::string oi_str2; decode(oi_str2, bl2); EXPECT_EQ(oi_str, oi_str2); bl2.clear(); bl2 = attrs[SS_ATTR]; std::string ss_str2; decode(ss_str2, bl2); EXPECT_EQ(ss_str, ss_str2); bl2.clear(); ss_str2.clear(); bl2 = test_obj.get_attr(*sharded_seastore, SS_ATTR); decode(ss_str2, bl2); EXPECT_EQ(ss_str, ss_str2); bl2.clear(); oi_str2.clear(); bl2 = test_obj.get_attr(*sharded_seastore, OI_ATTR); decode(oi_str2, bl2); EXPECT_EQ(oi_str, oi_str2); test_obj.rm_attr(*sharded_seastore, OI_ATTR); test_obj.rm_attr(*sharded_seastore, SS_ATTR); attrs = test_obj.get_attrs(*sharded_seastore); EXPECT_EQ(attrs.find(OI_ATTR), attrs.end()); EXPECT_EQ(attrs.find(SS_ATTR), attrs.end()); } { //create OI_ATTR with len <= onode_layout_t::MAX_OI_LENGTH, rm OI_ATTR //create SS_ATTR with len <= onode_layout_t::MAX_SS_LENGTH, rm SS_ATTR std::string oi("asdfasdfasdf"); bufferlist bl; encode(oi, bl); test_obj.set_attr(*sharded_seastore, OI_ATTR, bl); std::string ss("f"); bl.clear(); encode(ss, bl); test_obj.set_attr(*sharded_seastore, SS_ATTR, bl); std::string test_val("ssssssssssss"); bl.clear(); encode(test_val, bl); test_obj.set_attr(*sharded_seastore, "test_key", bl); auto attrs = test_obj.get_attrs(*sharded_seastore); std::string oi2; bufferlist bl2 = attrs[OI_ATTR]; decode(oi2, bl2); bl2.clear(); bl2 = attrs[SS_ATTR]; std::string ss2; decode(ss2, bl2); std::string test_val2; bl2.clear(); bl2 = attrs["test_key"]; decode(test_val2, bl2); EXPECT_EQ(ss, ss2); EXPECT_EQ(oi, oi2); EXPECT_EQ(test_val, test_val2); test_obj.rm_attr(*sharded_seastore, OI_ATTR); test_obj.rm_attr(*sharded_seastore, SS_ATTR); test_obj.rm_attr(*sharded_seastore, "test_key"); attrs = test_obj.get_attrs(*sharded_seastore); EXPECT_EQ(attrs.find(OI_ATTR), attrs.end()); EXPECT_EQ(attrs.find(SS_ATTR), attrs.end()); EXPECT_EQ(attrs.find("test_key"), attrs.end()); } { // create OI_ATTR with len > onode_layout_t::MAX_OI_LENGTH, then // overwrite it with another OI_ATTR len of which < onode_layout_t::MAX_OI_LENGTH // create SS_ATTR with len > onode_layout_t::MAX_SS_LENGTH, then // overwrite it with another SS_ATTR len of which < onode_layout_t::MAX_SS_LENGTH char oi_array[onode_layout_t::MAX_OI_LENGTH + 1] = {'a'}; std::string oi(&oi_array[0], sizeof(oi_array)); bufferlist bl; encode(oi, bl); test_obj.set_attr(*sharded_seastore, OI_ATTR, bl); oi = "asdfasdfasdf"; bl.clear(); encode(oi, bl); test_obj.set_attr(*sharded_seastore, OI_ATTR, bl); char ss_array[onode_layout_t::MAX_SS_LENGTH + 1] = {'b'}; std::string ss(&ss_array[0], sizeof(ss_array)); bl.clear(); encode(ss, bl); test_obj.set_attr(*sharded_seastore, SS_ATTR, bl); ss = "f"; bl.clear(); encode(ss, bl); test_obj.set_attr(*sharded_seastore, SS_ATTR, bl); auto attrs = test_obj.get_attrs(*sharded_seastore); std::string oi2, ss2; bufferlist bl2 = attrs[OI_ATTR]; decode(oi2, bl2); bl2.clear(); bl2 = attrs[SS_ATTR]; decode(ss2, bl2); EXPECT_EQ(oi, oi2); EXPECT_EQ(ss, ss2); } }); } TEST_P(seastore_test_t, omap_test_iterator) { run_async([this] { auto make_key = [](unsigned i) { std::stringstream ss; ss << "key" << i; return ss.str(); }; auto &test_obj = get_object(make_oid(0)); test_obj.touch(*sharded_seastore); for (unsigned i = 0; i < 20; ++i) { test_obj.set_omap( *sharded_seastore, make_key(i), make_bufferlist(128)); } test_obj.check_omap(*sharded_seastore); }); } TEST_P(seastore_test_t, object_data_omap_remove) { run_async([this] { auto make_key = [](unsigned i) { std::stringstream ss; ss << "key" << i; return ss.str(); }; auto &test_obj = get_object(make_oid(0)); test_obj.touch(*sharded_seastore); for (unsigned i = 0; i < 1024; ++i) { test_obj.set_omap( *sharded_seastore, make_key(i), make_bufferlist(128)); } test_obj.check_omap(*sharded_seastore); for (uint64_t i = 0; i < 16; i++) { test_obj.write( *sharded_seastore, 4096 * i, 4096, 'a'); } test_obj.remove(*sharded_seastore); }); } TEST_P(seastore_test_t, simple_extent_test) { run_async([this] { auto &test_obj = get_object(make_oid(0)); test_obj.write( *sharded_seastore, 1024, 1024, 'a'); test_obj.read( *sharded_seastore, 1024, 1024); test_obj.check_size(*sharded_seastore); }); } TEST_P(seastore_test_t, fiemap_empty) { run_async([this] { auto &test_obj = get_object(make_oid(0)); test_obj.touch(*sharded_seastore); test_obj.truncate(*sharded_seastore, 100000); std::map<uint64_t, uint64_t> m; m = test_obj.fiemap(*sharded_seastore, 0, 100000); EXPECT_TRUE(m.empty()); test_obj.remove(*sharded_seastore); }); } TEST_P(seastore_test_t, fiemap_holes) { run_async([this] { const uint64_t MAX_EXTENTS = 100; // large enough to ensure that seastore will allocate each write seperately const uint64_t SKIP_STEP = 16 << 10; auto &test_obj = get_object(make_oid(0)); bufferlist bl; bl.append("foo"); test_obj.touch(*sharded_seastore); for (uint64_t i = 0; i < MAX_EXTENTS; i++) { test_obj.write(*sharded_seastore, SKIP_STEP * i, bl); } { // fiemap test from 0 to SKIP_STEP * (MAX_EXTENTS - 1) + 3 auto m = test_obj.fiemap( *sharded_seastore, 0, SKIP_STEP * (MAX_EXTENTS - 1) + 3); ASSERT_EQ(m.size(), MAX_EXTENTS); for (uint64_t i = 0; i < MAX_EXTENTS; i++) { ASSERT_TRUE(m.count(SKIP_STEP * i)); ASSERT_GE(m[SKIP_STEP * i], bl.length()); } } { // fiemap test from SKIP_STEP to SKIP_STEP * (MAX_EXTENTS - 2) + 3 auto m = test_obj.fiemap( *sharded_seastore, SKIP_STEP, SKIP_STEP * (MAX_EXTENTS - 3) + 3); ASSERT_EQ(m.size(), MAX_EXTENTS - 2); for (uint64_t i = 1; i < MAX_EXTENTS - 1; i++) { ASSERT_TRUE(m.count(SKIP_STEP * i)); ASSERT_GE(m[SKIP_STEP * i], bl.length()); } } { // fiemap test SKIP_STEP + 1 to 2 * SKIP_STEP + 1 (partial overlap) auto m = test_obj.fiemap( *sharded_seastore, SKIP_STEP + 1, SKIP_STEP + 1); ASSERT_EQ(m.size(), 2); ASSERT_EQ(m.begin()->first, SKIP_STEP + 1); ASSERT_GE(m.begin()->second, bl.length()); ASSERT_LE(m.rbegin()->first, (2 * SKIP_STEP) + 1); ASSERT_EQ(m.rbegin()->first + m.rbegin()->second, 2 * SKIP_STEP + 2); } test_obj.remove(*sharded_seastore); }); } TEST_P(seastore_test_t, sparse_read) { run_async([this] { const uint64_t MAX_EXTENTS = 100; const uint64_t SKIP_STEP = 16 << 10; auto &test_obj = get_object(make_oid(0)); bufferlist wbl; wbl.append("foo"); test_obj.touch(*sharded_seastore); for (uint64_t i = 0; i < MAX_EXTENTS; i++) { test_obj.write(*sharded_seastore, SKIP_STEP * i, wbl); } interval_set<uint64_t> m; m = interval_set<uint64_t>( test_obj.fiemap(*sharded_seastore, 0, SKIP_STEP * (MAX_EXTENTS - 1) + 3)); ASSERT_TRUE(!m.empty()); uint64_t off = 0; auto rbl = test_obj.readv(*sharded_seastore, m); for (auto &&miter : m) { bufferlist subl; subl.substr_of(rbl, off, std::min(miter.second, uint64_t(wbl.length()))); ASSERT_TRUE(subl.contents_equal(wbl)); off += miter.second; } test_obj.remove(*sharded_seastore); }); } TEST_P(seastore_test_t, zero) { run_async([this] { auto test_zero = [this]( // [(off, len, repeat)] std::vector<std::tuple<uint64_t, uint64_t, uint64_t>> writes, uint64_t zero_off, uint64_t zero_len) { // Test zero within a block auto &test_obj = get_object(make_oid(0)); uint64_t size = 0; for (auto &[off, len, repeat]: writes) { for (decltype(repeat) i = 0; i < repeat; ++i) { test_obj.write(*sharded_seastore, off + (len * repeat), len, 'a'); } size = off + (len * (repeat + 1)); } test_obj.read( *sharded_seastore, 0, size); test_obj.check_size(*sharded_seastore); test_obj.zero(*sharded_seastore, zero_off, zero_len); test_obj.read( *sharded_seastore, 0, size); test_obj.check_size(*sharded_seastore); remove_object(test_obj); }; const uint64_t BS = 4<<10; // Test zero within a block test_zero( {{1<<10, 1<<10, 1}}, 1124, 200); // Multiple writes, partial on left, partial on right. test_zero( {{BS, BS, 10}}, BS + 128, BS * 4); // Single large write, block boundary on right, partial on left. test_zero( {{BS, BS * 10, 1}}, BS + 128, (BS * 4) - 128); // Multiple writes, block boundary on left, partial on right. test_zero( {{BS, BS, 10}}, BS, (BS * 4) + 128); }); } INSTANTIATE_TEST_SUITE_P( seastore_test, seastore_test_t, ::testing::Values ( "segmented", "circularbounded" ) );
31,870
26.10119
85
cc
null
ceph-main/src/test/crimson/seastore/test_seastore_cache.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include "crimson/common/log.h" #include "crimson/os/seastore/cache.h" #include "crimson/os/seastore/segment_manager/ephemeral.h" #include "test/crimson/seastore/test_block.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } struct cache_test_t : public seastar_test_suite_t { segment_manager::EphemeralSegmentManagerRef segment_manager; ExtentPlacementManagerRef epm; CacheRef cache; paddr_t current; journal_seq_t seq = JOURNAL_SEQ_MIN; cache_test_t() = default; seastar::future<paddr_t> submit_transaction( TransactionRef t) { auto record = cache->prepare_record(*t, JOURNAL_SEQ_NULL, JOURNAL_SEQ_NULL); bufferlist bl; for (auto &&block : record.extents) { bl.append(block.bl); } ceph_assert((segment_off_t)bl.length() < segment_manager->get_segment_size()); if (current.as_seg_paddr().get_segment_off() + (segment_off_t)bl.length() > segment_manager->get_segment_size()) current = paddr_t::make_seg_paddr( segment_id_t( current.as_seg_paddr().get_segment_id().device_id(), current.as_seg_paddr().get_segment_id().device_segment_id() + 1), 0); auto prev = current; current.as_seg_paddr().set_segment_off( current.as_seg_paddr().get_segment_off() + bl.length()); return segment_manager->segment_write( prev, std::move(bl), true ).safe_then( [this, prev, t=std::move(t)]() mutable { cache->complete_commit(*t, prev, seq /* TODO */); return prev; }, crimson::ct_error::all_same_way([](auto e) { ASSERT_FALSE("failed to submit"); }) ); } auto get_transaction() { return cache->create_transaction( Transaction::src_t::MUTATE, "test_cache", false); } template <typename T, typename... Args> auto get_extent(Transaction &t, Args&&... args) { return with_trans_intr( t, [this](auto &&... args) { return cache->get_extent<T>(args...); }, std::forward<Args>(args)...); } seastar::future<> set_up_fut() final { segment_manager = segment_manager::create_test_ephemeral(); return segment_manager->init( ).safe_then([this] { return segment_manager->mkfs( segment_manager::get_ephemeral_device_config(0, 1, 0)); }).safe_then([this] { epm.reset(new ExtentPlacementManager()); cache.reset(new Cache(*epm)); current = paddr_t::make_seg_paddr(segment_id_t(segment_manager->get_device_id(), 0), 0); epm->test_init_no_background(segment_manager.get()); return seastar::do_with( get_transaction(), [this](auto &ref_t) { cache->init(); return with_trans_intr(*ref_t, [&](auto &t) { return cache->mkfs(t); }).safe_then([this, &ref_t] { return submit_transaction(std::move(ref_t) ).then([](auto p) {}); }); }); }).handle_error( crimson::ct_error::all_same_way([](auto e) { ASSERT_FALSE("failed to submit"); }) ); } seastar::future<> tear_down_fut() final { return cache->close( ).safe_then([this] { segment_manager.reset(); epm.reset(); cache.reset(); }).handle_error( Cache::close_ertr::assert_all{} ); } }; TEST_F(cache_test_t, test_addr_fixup) { run_async([this] { paddr_t addr; int csum = 0; { auto t = get_transaction(); auto extent = cache->alloc_new_extent<TestBlockPhysical>( *t, TestBlockPhysical::SIZE, placement_hint_t::HOT, 0); extent->set_contents('c'); csum = extent->get_crc32c(); submit_transaction(std::move(t)).get0(); addr = extent->get_paddr(); } { auto t = get_transaction(); auto extent = get_extent<TestBlockPhysical>( *t, addr, TestBlockPhysical::SIZE).unsafe_get0(); ASSERT_EQ(extent->get_paddr(), addr); ASSERT_EQ(extent->get_crc32c(), csum); } }); } TEST_F(cache_test_t, test_dirty_extent) { run_async([this] { paddr_t addr; int csum = 0; int csum2 = 0; { // write out initial test block auto t = get_transaction(); auto extent = cache->alloc_new_extent<TestBlockPhysical>( *t, TestBlockPhysical::SIZE, placement_hint_t::HOT, 0); extent->set_contents('c'); csum = extent->get_crc32c(); auto reladdr = extent->get_paddr(); ASSERT_TRUE(reladdr.is_relative()); { // test that read with same transaction sees new block though // uncommitted auto extent = get_extent<TestBlockPhysical>( *t, reladdr, TestBlockPhysical::SIZE).unsafe_get0(); ASSERT_TRUE(extent->is_clean()); ASSERT_TRUE(extent->is_pending()); ASSERT_TRUE(extent->get_paddr().is_relative()); ASSERT_EQ(extent->get_version(), 0); ASSERT_EQ(csum, extent->get_crc32c()); } submit_transaction(std::move(t)).get0(); addr = extent->get_paddr(); } { // test that consecutive reads on the same extent get the same ref auto t = get_transaction(); auto extent = get_extent<TestBlockPhysical>( *t, addr, TestBlockPhysical::SIZE).unsafe_get0(); auto t2 = get_transaction(); auto extent2 = get_extent<TestBlockPhysical>( *t2, addr, TestBlockPhysical::SIZE).unsafe_get0(); ASSERT_EQ(&*extent, &*extent2); } { // read back test block auto t = get_transaction(); auto extent = get_extent<TestBlockPhysical>( *t, addr, TestBlockPhysical::SIZE).unsafe_get0(); // duplicate and reset contents extent = cache->duplicate_for_write(*t, extent)->cast<TestBlockPhysical>(); extent->set_contents('c'); csum2 = extent->get_crc32c(); ASSERT_EQ(extent->get_paddr(), addr); { // test that concurrent read with fresh transaction sees old // block auto t2 = get_transaction(); auto extent = get_extent<TestBlockPhysical>( *t2, addr, TestBlockPhysical::SIZE).unsafe_get0(); ASSERT_TRUE(extent->is_clean()); ASSERT_FALSE(extent->is_pending()); ASSERT_EQ(addr, extent->get_paddr()); ASSERT_EQ(extent->get_version(), 0); ASSERT_EQ(csum, extent->get_crc32c()); } { // test that read with same transaction sees new block auto extent = get_extent<TestBlockPhysical>( *t, addr, TestBlockPhysical::SIZE).unsafe_get0(); ASSERT_TRUE(extent->is_dirty()); ASSERT_TRUE(extent->is_pending()); ASSERT_EQ(addr, extent->get_paddr()); ASSERT_EQ(extent->get_version(), 1); ASSERT_EQ(csum2, extent->get_crc32c()); } // submit transaction submit_transaction(std::move(t)).get0(); ASSERT_TRUE(extent->is_dirty()); ASSERT_EQ(addr, extent->get_paddr()); ASSERT_EQ(extent->get_version(), 1); ASSERT_EQ(extent->get_crc32c(), csum2); } { // test that fresh transaction now sees newly dirty block auto t = get_transaction(); auto extent = get_extent<TestBlockPhysical>( *t, addr, TestBlockPhysical::SIZE).unsafe_get0(); ASSERT_TRUE(extent->is_dirty()); ASSERT_EQ(addr, extent->get_paddr()); ASSERT_EQ(extent->get_version(), 1); ASSERT_EQ(csum2, extent->get_crc32c()); } }); }
7,390
27.318008
94
cc
null
ceph-main/src/test/crimson/seastore/test_seastore_journal.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "test/crimson/gtest_seastar.h" #include <random> #include "crimson/common/log.h" #include "crimson/os/seastore/async_cleaner.h" #include "crimson/os/seastore/journal.h" #include "crimson/os/seastore/segment_manager/ephemeral.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } struct record_validator_t { record_t record; paddr_t record_final_offset; template <typename... T> record_validator_t(T&&... record) : record(std::forward<T>(record)...) {} void validate(SegmentManager &manager) { paddr_t addr = make_record_relative_paddr(0); for (auto &&block : record.extents) { auto test = manager.read( record_final_offset.add_relative(addr), block.bl.length()).unsafe_get0(); addr = addr.add_offset(block.bl.length()); bufferlist bl; bl.push_back(test); ASSERT_EQ( bl.length(), block.bl.length()); ASSERT_EQ( bl.begin().crc32c(bl.length(), 1), block.bl.begin().crc32c(block.bl.length(), 1)); } } auto get_replay_handler() { auto checker = [this, iter=record.deltas.begin()] ( paddr_t base, const delta_info_t &di) mutable { EXPECT_EQ(base, record_final_offset); ceph_assert(iter != record.deltas.end()); EXPECT_EQ(di, *iter++); EXPECT_EQ(base, record_final_offset); return iter != record.deltas.end(); }; if (record.deltas.size()) { return std::make_optional(std::move(checker)); } else { return std::optional<decltype(checker)>(); } } }; struct journal_test_t : seastar_test_suite_t, SegmentProvider, JournalTrimmer { segment_manager::EphemeralSegmentManagerRef segment_manager; WritePipeline pipeline; JournalRef journal; std::vector<record_validator_t> records; std::default_random_engine generator; extent_len_t block_size; SegmentManagerGroupRef sms; segment_id_t next; std::map<segment_id_t, segment_seq_t> segment_seqs; std::map<segment_id_t, segment_type_t> segment_types; journal_seq_t dummy_tail; mutable segment_info_t tmp_info; journal_test_t() = default; /* * JournalTrimmer interfaces */ journal_seq_t get_journal_head() const final { return dummy_tail; } void set_journal_head(journal_seq_t) final {} journal_seq_t get_dirty_tail() const final { return dummy_tail; } journal_seq_t get_alloc_tail() const final { return dummy_tail; } void update_journal_tails(journal_seq_t, journal_seq_t) final {} bool try_reserve_inline_usage(std::size_t) final { return true; } void release_inline_usage(std::size_t) final {} std::size_t get_trim_size_per_cycle() const final { return 0; } /* * SegmentProvider interfaces */ const segment_info_t& get_seg_info(segment_id_t id) const final { tmp_info = {}; tmp_info.seq = segment_seqs.at(id); tmp_info.type = segment_types.at(id); return tmp_info; } segment_id_t allocate_segment( segment_seq_t seq, segment_type_t type, data_category_t, rewrite_gen_t ) final { auto ret = next; next = segment_id_t{ segment_manager->get_device_id(), next.device_segment_id() + 1}; segment_seqs[ret] = seq; segment_types[ret] = type; return ret; } void close_segment(segment_id_t) final {} void update_segment_avail_bytes(segment_type_t, paddr_t) final {} void update_modify_time(segment_id_t, sea_time_point, std::size_t) final {} SegmentManagerGroup* get_segment_manager_group() final { return sms.get(); } seastar::future<> set_up_fut() final { segment_manager = segment_manager::create_test_ephemeral(); return segment_manager->init( ).safe_then([this] { return segment_manager->mkfs( segment_manager::get_ephemeral_device_config(0, 1, 0)); }).safe_then([this] { block_size = segment_manager->get_block_size(); sms.reset(new SegmentManagerGroup()); next = segment_id_t(segment_manager->get_device_id(), 0); journal = journal::make_segmented(*this, *this); journal->set_write_pipeline(&pipeline); sms->add_segment_manager(segment_manager.get()); return journal->open_for_mkfs(); }).safe_then([this](auto) { dummy_tail = journal_seq_t{0, paddr_t::make_seg_paddr(segment_id_t(segment_manager->get_device_id(), 0), 0)}; }, crimson::ct_error::all_same_way([] { ASSERT_FALSE("Unable to mount"); })); } seastar::future<> tear_down_fut() final { return journal->close( ).safe_then([this] { segment_manager.reset(); sms.reset(); journal.reset(); }).handle_error( crimson::ct_error::all_same_way([](auto e) { ASSERT_FALSE("Unable to close"); }) ); } template <typename T> auto replay(T &&f) { return journal->close( ).safe_then([this, f=std::move(f)]() mutable { journal = journal::make_segmented(*this, *this); journal->set_write_pipeline(&pipeline); return journal->replay(std::forward<T>(std::move(f))); }).safe_then([this] { return journal->open_for_mount(); }); } auto replay_and_check() { auto record_iter = records.begin(); decltype(record_iter->get_replay_handler()) delta_checker = std::nullopt; auto advance = [this, &record_iter, &delta_checker] { ceph_assert(!delta_checker); while (record_iter != records.end()) { auto checker = record_iter->get_replay_handler(); record_iter++; if (checker) { delta_checker.emplace(std::move(*checker)); break; } } }; advance(); replay( [&advance, &delta_checker] (const auto &offsets, const auto &di, const journal_seq_t &, const journal_seq_t &, auto t) mutable { if (!delta_checker) { EXPECT_FALSE("No Deltas Left"); } if (!(*delta_checker)(offsets.record_block_base, di)) { delta_checker = std::nullopt; advance(); } return Journal::replay_ertr::make_ready_future<bool>(true); }).unsafe_get0(); ASSERT_EQ(record_iter, records.end()); for (auto &i : records) { i.validate(*segment_manager); } } template <typename... T> auto submit_record(T&&... _record) { auto record{std::forward<T>(_record)...}; records.push_back(record); OrderingHandle handle = get_dummy_ordering_handle(); auto [addr, _] = journal->submit_record( std::move(record), handle).unsafe_get0(); records.back().record_final_offset = addr; return addr; } extent_t generate_extent(size_t blocks) { std::uniform_int_distribution<char> distribution( std::numeric_limits<char>::min(), std::numeric_limits<char>::max() ); char contents = distribution(generator); bufferlist bl; bl.append(buffer::ptr(buffer::create(blocks * block_size, contents))); return extent_t{ extent_types_t::TEST_BLOCK, L_ADDR_NULL, bl}; } delta_info_t generate_delta(size_t bytes) { std::uniform_int_distribution<char> distribution( std::numeric_limits<char>::min(), std::numeric_limits<char>::max() ); char contents = distribution(generator); bufferlist bl; bl.append(buffer::ptr(buffer::create(bytes, contents))); return delta_info_t{ extent_types_t::TEST_BLOCK, paddr_t{}, L_ADDR_NULL, 0, 0, block_size, 1, MAX_SEG_SEQ, segment_type_t::NULL_SEG, bl }; } }; TEST_F(journal_test_t, replay_one_journal_segment) { run_async([this] { submit_record(record_t{ { generate_extent(1), generate_extent(2) }, { generate_delta(23), generate_delta(30) } }); replay_and_check(); }); } TEST_F(journal_test_t, replay_two_records) { run_async([this] { submit_record(record_t{ { generate_extent(1), generate_extent(2) }, { generate_delta(23), generate_delta(30) } }); submit_record(record_t{ { generate_extent(4), generate_extent(1) }, { generate_delta(23), generate_delta(400) } }); replay_and_check(); }); } TEST_F(journal_test_t, replay_twice) { run_async([this] { submit_record(record_t{ { generate_extent(1), generate_extent(2) }, { generate_delta(23), generate_delta(30) } }); submit_record(record_t{ { generate_extent(4), generate_extent(1) }, { generate_delta(23), generate_delta(400) } }); replay_and_check(); submit_record(record_t{ { generate_extent(2), generate_extent(5) }, { generate_delta(230), generate_delta(40) } }); replay_and_check(); }); } TEST_F(journal_test_t, roll_journal_and_replay) { run_async([this] { paddr_t current = submit_record( record_t{ { generate_extent(1), generate_extent(2) }, { generate_delta(23), generate_delta(30) } }); auto starting_segment = current.as_seg_paddr().get_segment_id(); unsigned so_far = 0; while (current.as_seg_paddr().get_segment_id() == starting_segment) { current = submit_record(record_t{ { generate_extent(512), generate_extent(512) }, { generate_delta(23), generate_delta(400) } }); ++so_far; ASSERT_FALSE(so_far > 10); } replay_and_check(); }); }
9,357
26.203488
87
cc
null
ceph-main/src/test/crimson/seastore/test_transaction_manager.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <random> #include <boost/iterator/counting_iterator.hpp> #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/seastore/cache.h" #include "crimson/os/seastore/transaction_manager.h" #include "crimson/os/seastore/segment_manager/ephemeral.h" #include "crimson/os/seastore/segment_manager.h" #include "test/crimson/seastore/test_block.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } struct test_extent_record_t { test_extent_desc_t desc; unsigned refcount = 0; test_extent_record_t() = default; test_extent_record_t( const test_extent_desc_t &desc, unsigned refcount) : desc(desc), refcount(refcount) {} void update(const test_extent_desc_t &to) { desc = to; } bool operator==(const test_extent_desc_t &rhs) const { return desc == rhs; } bool operator!=(const test_extent_desc_t &rhs) const { return desc != rhs; } }; template<> struct fmt::formatter<test_extent_record_t> : fmt::formatter<std::string_view> { template <typename FormatContext> auto format(const test_extent_record_t& r, FormatContext& ctx) const { return fmt::format_to(ctx.out(), "test_extent_record_t({}, refcount={})", r.desc, r.refcount); } }; struct transaction_manager_test_t : public seastar_test_suite_t, TMTestState, ::testing::WithParamInterface<const char*> { std::random_device rd; std::mt19937 gen; transaction_manager_test_t(std::size_t num_main_devices, std::size_t num_cold_devices) : TMTestState(num_main_devices, num_cold_devices), gen(rd()) { } laddr_t get_random_laddr(size_t block_size, laddr_t limit) { return block_size * std::uniform_int_distribution<>(0, (limit / block_size) - 1)(gen); } char get_random_contents() { return static_cast<char>(std::uniform_int_distribution<>(0, 255)(gen)); } seastar::future<> set_up_fut() final { std::string j_type = GetParam(); if (j_type == "segmented") { return tm_setup(journal_type_t::SEGMENTED); } else if (j_type == "circularbounded") { return tm_setup(journal_type_t::RANDOM_BLOCK); } else { ceph_assert(0 == "no support"); } } seastar::future<> tear_down_fut() final { return tm_teardown(); } struct test_extents_t : std::map<laddr_t, test_extent_record_t> { using delta_t = std::map<laddr_t, std::optional<test_extent_record_t>>; std::map<laddr_t, uint64_t> laddr_write_seq; struct delta_overlay_t { const test_extents_t &extents; const delta_t &delta; delta_overlay_t( const test_extents_t &extents, const delta_t &delta) : extents(extents), delta(delta) {} class iterator { friend class test_extents_t; const delta_overlay_t &parent; test_extents_t::const_iterator biter; delta_t::const_iterator oiter; std::optional<std::pair<laddr_t, test_extent_record_t>> cur; iterator( const delta_overlay_t &parent, test_extents_t::const_iterator biter, delta_t::const_iterator oiter) : parent(parent), biter(biter), oiter(oiter) {} laddr_t get_bkey() { return biter == parent.extents.end() ? L_ADDR_MAX : biter->first; } laddr_t get_okey() { return oiter == parent.delta.end() ? L_ADDR_MAX : oiter->first; } bool is_end() { return oiter == parent.delta.end() && biter == parent.extents.end(); } bool is_valid() { return is_end() || ((get_okey() < get_bkey()) && (oiter->second)) || (get_okey() > get_bkey()); } auto get_pair() { assert(is_valid()); assert(!is_end()); auto okey = get_okey(); auto bkey = get_bkey(); return ( bkey < okey ? std::pair<laddr_t, test_extent_record_t>(*biter) : std::make_pair(okey, *(oiter->second))); } void adjust() { while (!is_valid()) { if (get_okey() < get_bkey()) { assert(!oiter->second); ++oiter; } else { assert(get_okey() == get_bkey()); ++biter; } } assert(is_valid()); if (!is_end()) { cur = get_pair(); } else { cur = std::nullopt; } } public: iterator(const iterator &) = default; iterator(iterator &&) = default; iterator &operator++() { assert(is_valid()); assert(!is_end()); if (get_bkey() < get_okey()) { ++biter; } else { ++oiter; } adjust(); return *this; } bool operator==(const iterator &o) const { return o.biter == biter && o.oiter == oiter; } bool operator!=(const iterator &o) const { return !(*this == o); } auto operator*() { assert(!is_end()); return *cur; } auto operator->() { assert(!is_end()); return &*cur; } }; iterator begin() { auto ret = iterator{*this, extents.begin(), delta.begin()}; ret.adjust(); return ret; } iterator end() { auto ret = iterator{*this, extents.end(), delta.end()}; // adjust unnecessary return ret; } iterator lower_bound(laddr_t l) { auto ret = iterator{*this, extents.lower_bound(l), delta.lower_bound(l)}; ret.adjust(); return ret; } iterator upper_bound(laddr_t l) { auto ret = iterator{*this, extents.upper_bound(l), delta.upper_bound(l)}; ret.adjust(); return ret; } iterator find(laddr_t l) { auto ret = lower_bound(l); if (ret == end() || ret->first != l) { return end(); } else { return ret; } } }; private: void check_available( laddr_t addr, extent_len_t len, const delta_t &delta ) const { delta_overlay_t overlay(*this, delta); for (const auto &i: overlay) { if (i.first < addr) { EXPECT_FALSE(i.first + i.second.desc.len > addr); } else { EXPECT_FALSE(addr + len > i.first); } } } void check_hint( laddr_t hint, laddr_t addr, extent_len_t len, delta_t &delta) const { delta_overlay_t overlay(*this, delta); auto iter = overlay.lower_bound(hint); laddr_t last = hint; while (true) { if (iter == overlay.end() || iter->first > addr) { EXPECT_EQ(addr, last); break; } EXPECT_FALSE(iter->first - last > len); last = iter->first + iter->second.desc.len; ++iter; } } std::optional<test_extent_record_t> &populate_delta( laddr_t addr, delta_t &delta, const test_extent_desc_t *desc) const { auto diter = delta.find(addr); if (diter != delta.end()) return diter->second; auto iter = find(addr); if (iter == end()) { assert(desc); auto ret = delta.emplace( std::make_pair(addr, test_extent_record_t{*desc, 0})); assert(ret.second); return ret.first->second; } else { auto ret = delta.emplace(*iter); assert(ret.second); return ret.first->second; } } public: delta_overlay_t get_overlay(const delta_t &delta) const { return delta_overlay_t{*this, delta}; } void insert(TestBlock &extent, delta_t &delta) const { check_available(extent.get_laddr(), extent.get_length(), delta); delta[extent.get_laddr()] = test_extent_record_t{extent.get_desc(), 1}; } void alloced(laddr_t hint, TestBlock &extent, delta_t &delta) const { check_hint(hint, extent.get_laddr(), extent.get_length(), delta); insert(extent, delta); } bool contains(laddr_t addr, const delta_t &delta) const { delta_overlay_t overlay(*this, delta); return overlay.find(addr) != overlay.end(); } test_extent_record_t get(laddr_t addr, const delta_t &delta) const { delta_overlay_t overlay(*this, delta); auto iter = overlay.find(addr); assert(iter != overlay.end()); return iter->second; } void update( laddr_t addr, const test_extent_desc_t &desc, delta_t &delta) const { auto &rec = populate_delta(addr, delta, &desc); assert(rec); rec->desc = desc; } int inc_ref( laddr_t addr, delta_t &delta) const { auto &rec = populate_delta(addr, delta, nullptr); assert(rec); return ++rec->refcount; } int dec_ref( laddr_t addr, delta_t &delta) const { auto &rec = populate_delta(addr, delta, nullptr); assert(rec); assert(rec->refcount > 0); rec->refcount--; if (rec->refcount == 0) { delta[addr] = std::nullopt; return 0; } else { return rec->refcount; } } void consume(const delta_t &delta, const uint64_t write_seq = 0) { for (const auto &i : delta) { if (i.second) { if (laddr_write_seq.find(i.first) == laddr_write_seq.end() || laddr_write_seq[i.first] <= write_seq) { (*this)[i.first] = *i.second; laddr_write_seq[i.first] = write_seq; } } else { erase(i.first); } } } } test_mappings; struct test_transaction_t { TransactionRef t; test_extents_t::delta_t mapping_delta; }; test_transaction_t create_transaction() { return { create_mutate_transaction(), {} }; } test_transaction_t create_read_test_transaction() { return {create_read_transaction(), {} }; } test_transaction_t create_weak_test_transaction() { return { create_weak_transaction(), {} }; } TestBlockRef alloc_extent( test_transaction_t &t, laddr_t hint, extent_len_t len, char contents) { auto extent = with_trans_intr(*(t.t), [&](auto& trans) { return tm->alloc_extent<TestBlock>(trans, hint, len); }).unsafe_get0(); extent->set_contents(contents); EXPECT_FALSE(test_mappings.contains(extent->get_laddr(), t.mapping_delta)); EXPECT_EQ(len, extent->get_length()); test_mappings.alloced(hint, *extent, t.mapping_delta); return extent; } TestBlockRef alloc_extent( test_transaction_t &t, laddr_t hint, extent_len_t len) { return alloc_extent( t, hint, len, get_random_contents()); } bool check_usage() { return epm->check_usage(); } void replay() { EXPECT_TRUE(check_usage()); restart(); } void check() { check_mappings(); check_usage(); } void check_mappings() { auto t = create_weak_test_transaction(); check_mappings(t); } TestBlockRef get_extent( test_transaction_t &t, laddr_t addr, extent_len_t len) { ceph_assert(test_mappings.contains(addr, t.mapping_delta)); ceph_assert(test_mappings.get(addr, t.mapping_delta).desc.len == len); auto ext = with_trans_intr(*(t.t), [&](auto& trans) { return tm->read_extent<TestBlock>(trans, addr, len); }).unsafe_get0(); EXPECT_EQ(addr, ext->get_laddr()); return ext; } TestBlockRef try_get_extent( test_transaction_t &t, laddr_t addr) { ceph_assert(test_mappings.contains(addr, t.mapping_delta)); using ertr = with_trans_ertr<TransactionManager::read_extent_iertr>; using ret = ertr::future<TestBlockRef>; auto ext = with_trans_intr(*(t.t), [&](auto& trans) { return tm->read_extent<TestBlock>(trans, addr); }).safe_then([](auto ext) -> ret { return ertr::make_ready_future<TestBlockRef>(ext); }).handle_error( [](const crimson::ct_error::eagain &e) { return seastar::make_ready_future<TestBlockRef>(); }, crimson::ct_error::assert_all{ "get_extent got invalid error" } ).get0(); if (ext) { EXPECT_EQ(addr, ext->get_laddr()); } return ext; } TestBlockRef try_get_extent( test_transaction_t &t, laddr_t addr, extent_len_t len) { ceph_assert(test_mappings.contains(addr, t.mapping_delta)); ceph_assert(test_mappings.get(addr, t.mapping_delta).desc.len == len); using ertr = with_trans_ertr<TransactionManager::read_extent_iertr>; using ret = ertr::future<TestBlockRef>; auto ext = with_trans_intr(*(t.t), [&](auto& trans) { return tm->read_extent<TestBlock>(trans, addr, len); }).safe_then([](auto ext) -> ret { return ertr::make_ready_future<TestBlockRef>(ext); }).handle_error( [](const crimson::ct_error::eagain &e) { return seastar::make_ready_future<TestBlockRef>(); }, crimson::ct_error::assert_all{ "get_extent got invalid error" } ).get0(); if (ext) { EXPECT_EQ(addr, ext->get_laddr()); } return ext; } TestBlockRef try_read_pin( test_transaction_t &t, LBAMappingRef &&pin) { using ertr = with_trans_ertr<TransactionManager::base_iertr>; using ret = ertr::future<TestBlockRef>; auto addr = pin->get_key(); auto ext = with_trans_intr(*(t.t), [&](auto& trans) { return tm->read_pin<TestBlock>(trans, std::move(pin)); }).safe_then([](auto ext) -> ret { return ertr::make_ready_future<TestBlockRef>(ext); }).handle_error( [](const crimson::ct_error::eagain &e) { return seastar::make_ready_future<TestBlockRef>(); }, crimson::ct_error::assert_all{ "read_pin got invalid error" } ).get0(); if (ext) { EXPECT_EQ(addr, ext->get_laddr()); } if (t.t->is_conflicted()) { return nullptr; } return ext; } test_block_mutator_t mutator; TestBlockRef mutate_extent( test_transaction_t &t, TestBlockRef ref) { ceph_assert(test_mappings.contains(ref->get_laddr(), t.mapping_delta)); ceph_assert( test_mappings.get(ref->get_laddr(), t.mapping_delta).desc.len == ref->get_length()); auto ext = tm->get_mutable_extent(*t.t, ref)->cast<TestBlock>(); EXPECT_EQ(ext->get_laddr(), ref->get_laddr()); EXPECT_EQ(ext->get_desc(), ref->get_desc()); mutator.mutate(*ext, gen); test_mappings.update(ext->get_laddr(), ext->get_desc(), t.mapping_delta); return ext; } TestBlockRef mutate_addr( test_transaction_t &t, laddr_t offset, size_t length) { auto ext = get_extent(t, offset, length); mutate_extent(t, ext); return ext; } LBAMappingRef get_pin( test_transaction_t &t, laddr_t offset) { ceph_assert(test_mappings.contains(offset, t.mapping_delta)); auto pin = with_trans_intr(*(t.t), [&](auto& trans) { return tm->get_pin(trans, offset); }).unsafe_get0(); EXPECT_EQ(offset, pin->get_key()); return pin; } LBAMappingRef try_get_pin( test_transaction_t &t, laddr_t offset) { ceph_assert(test_mappings.contains(offset, t.mapping_delta)); using ertr = with_trans_ertr<TransactionManager::get_pin_iertr>; using ret = ertr::future<LBAMappingRef>; auto pin = with_trans_intr(*(t.t), [&](auto& trans) { return tm->get_pin(trans, offset); }).safe_then([](auto pin) -> ret { return ertr::make_ready_future<LBAMappingRef>(std::move(pin)); }).handle_error( [](const crimson::ct_error::eagain &e) { return seastar::make_ready_future<LBAMappingRef>(); }, crimson::ct_error::assert_all{ "get_extent got invalid error" } ).get0(); if (pin) { EXPECT_EQ(offset, pin->get_key()); } return pin; } void inc_ref(test_transaction_t &t, laddr_t offset) { ceph_assert(test_mappings.contains(offset, t.mapping_delta)); ceph_assert(test_mappings.get(offset, t.mapping_delta).refcount > 0); auto refcnt = with_trans_intr(*(t.t), [&](auto& trans) { return tm->inc_ref(trans, offset); }).unsafe_get0(); auto check_refcnt = test_mappings.inc_ref(offset, t.mapping_delta); EXPECT_EQ(refcnt, check_refcnt); } void dec_ref(test_transaction_t &t, laddr_t offset) { ceph_assert(test_mappings.contains(offset, t.mapping_delta)); ceph_assert(test_mappings.get(offset, t.mapping_delta).refcount > 0); auto refcnt = with_trans_intr(*(t.t), [&](auto& trans) { return tm->dec_ref(trans, offset); }).unsafe_get0(); auto check_refcnt = test_mappings.dec_ref(offset, t.mapping_delta); EXPECT_EQ(refcnt, check_refcnt); if (refcnt == 0) logger().debug("dec_ref: {} at refcount 0", offset); } void check_mappings(test_transaction_t &t) { auto overlay = test_mappings.get_overlay(t.mapping_delta); for (const auto &i: overlay) { logger().debug("check_mappings: {}->{}", i.first, i.second); auto ext = get_extent(t, i.first, i.second.desc.len); EXPECT_EQ(i.second, ext->get_desc()); } with_trans_intr( *t.t, [this, &overlay](auto &t) { return lba_manager->scan_mappings( t, 0, L_ADDR_MAX, [iter=overlay.begin(), &overlay](auto l, auto p, auto len) mutable { EXPECT_NE(iter, overlay.end()); logger().debug( "check_mappings: scan {}", l); EXPECT_EQ(l, iter->first); ++iter; }); }).unsafe_get0(); (void)with_trans_intr( *t.t, [=, this](auto &t) { return lba_manager->check_child_trackers(t); }).unsafe_get0(); } bool try_submit_transaction(test_transaction_t t) { using ertr = with_trans_ertr<TransactionManager::submit_transaction_iertr>; using ret = ertr::future<bool>; uint64_t write_seq = 0; bool success = submit_transaction_fut_with_seq(*t.t ).safe_then([&write_seq](auto seq) -> ret { write_seq = seq; return ertr::make_ready_future<bool>(true); }).handle_error( [](const crimson::ct_error::eagain &e) { return seastar::make_ready_future<bool>(false); }, crimson::ct_error::assert_all{ "try_submit_transaction hit invalid error" } ).then([this](auto ret) { return epm->run_background_work_until_halt( ).then([ret] { return ret; }); }).get0(); if (success) { test_mappings.consume(t.mapping_delta, write_seq); } return success; } void submit_transaction(test_transaction_t &&t) { bool success = try_submit_transaction(std::move(t)); EXPECT_TRUE(success); } void submit_transaction_expect_conflict(test_transaction_t &&t) { bool success = try_submit_transaction(std::move(t)); EXPECT_FALSE(success); } auto allocate_sequentially(const size_t size, const int num, bool run_clean = true) { return repeat_eagain([this, size, num] { return seastar::do_with( create_transaction(), [this, size, num](auto &t) { return with_trans_intr( *t.t, [&t, this, size, num](auto &) { return trans_intr::do_for_each( boost::make_counting_iterator(0), boost::make_counting_iterator(num), [&t, this, size](auto) { return tm->alloc_extent<TestBlock>( *(t.t), L_ADDR_MIN, size ).si_then([&t, this, size](auto extent) { extent->set_contents(get_random_contents()); EXPECT_FALSE( test_mappings.contains(extent->get_laddr(), t.mapping_delta)); EXPECT_EQ(size, extent->get_length()); test_mappings.alloced(extent->get_laddr(), *extent, t.mapping_delta); return seastar::now(); }); }).si_then([&t, this] { return tm->submit_transaction(*t.t); }); }).safe_then([&t, this] { test_mappings.consume(t.mapping_delta); }); }); }).safe_then([this, run_clean]() { if (run_clean) { return epm->run_background_work_until_halt(); } else { return epm->background_process.trimmer->trim(); } }).handle_error( crimson::ct_error::assert_all{ "Invalid error in SeaStore::list_collections" } ); } void test_parallel_extent_read() { constexpr size_t TOTAL = 4<<20; constexpr size_t BSIZE = 4<<10; constexpr size_t BLOCKS = TOTAL / BSIZE; run_async([this] { for (unsigned i = 0; i < BLOCKS; ++i) { auto t = create_transaction(); auto extent = alloc_extent( t, i * BSIZE, BSIZE); ASSERT_EQ(i * BSIZE, extent->get_laddr()); submit_transaction(std::move(t)); } seastar::do_with( create_read_test_transaction(), [this](auto &t) { return with_trans_intr(*(t.t), [this](auto &t) { return trans_intr::parallel_for_each( boost::make_counting_iterator(0lu), boost::make_counting_iterator(BLOCKS), [this, &t](auto i) { return tm->read_extent<TestBlock>(t, i * BSIZE, BSIZE ).si_then([](auto) { return seastar::now(); }); }); }); }).unsafe_get0(); }); } void test_random_writes_concurrent() { constexpr unsigned WRITE_STREAMS = 256; constexpr size_t TOTAL = 4<<20; constexpr size_t BSIZE = 4<<10; constexpr size_t BLOCKS = TOTAL / BSIZE; run_async([this] { std::for_each( boost::make_counting_iterator(0u), boost::make_counting_iterator(WRITE_STREAMS), [&](auto idx) { for (unsigned i = idx; i < BLOCKS; i += WRITE_STREAMS) { while (true) { auto t = create_transaction(); auto extent = alloc_extent( t, i * BSIZE, BSIZE); ASSERT_EQ(i * BSIZE, extent->get_laddr()); if (try_submit_transaction(std::move(t))) break; } } }); int writes = 0; unsigned failures = 0; seastar::parallel_for_each( boost::make_counting_iterator(0u), boost::make_counting_iterator(WRITE_STREAMS), [&](auto) { return seastar::async([&] { while (writes < 300) { auto t = create_transaction(); auto ext = try_get_extent( t, get_random_laddr(BSIZE, TOTAL), BSIZE); if (!ext){ failures++; continue; } auto mut = mutate_extent(t, ext); auto success = try_submit_transaction(std::move(t)); writes += success; failures += !success; } }); }).get0(); replay(); logger().info("random_writes_concurrent: checking"); check(); logger().info( "random_writes_concurrent: {} suceeded, {} failed", writes, failures ); }); } void test_evict() { // only support segmented backend currently ASSERT_EQ(epm->get_main_backend_type(), backend_type_t::SEGMENTED); ASSERT_TRUE(epm->background_process.has_cold_tier()); constexpr size_t device_size = segment_manager::DEFAULT_TEST_EPHEMERAL.size; constexpr size_t block_size = segment_manager::DEFAULT_TEST_EPHEMERAL.block_size; constexpr size_t segment_size = segment_manager::DEFAULT_TEST_EPHEMERAL.segment_size; ASSERT_GE(segment_size, block_size * 20); run_async([this] { // indicates there is no available segments to reclaim double stop_ratio = (double)segment_size / (double)device_size / 2; // 1 segment double default_ratio = stop_ratio * 2; // 1.25 segment double fast_ratio = stop_ratio * 2.5; epm->background_process .eviction_state .init(stop_ratio, default_ratio, fast_ratio); // these variables are described in // EPM::BackgroundProcess::eviction_state_t::maybe_update_eviction_mode size_t ratio_A_size = segment_size / 2 - block_size * 10; size_t ratio_B_size = segment_size / 2 + block_size * 10; size_t ratio_C_size = segment_size + block_size; size_t ratio_D_size = segment_size * 1.25 + block_size; auto run_until = [this](size_t size) -> seastar::future<> { return seastar::repeat([this, size] { size_t current_size = epm->background_process .main_cleaner->get_stat().data_stored; if (current_size >= size) { return seastar::futurize_invoke([] { return seastar::stop_iteration::yes; }); } else { int num = (size - current_size) / block_size; return seastar::do_for_each( boost::make_counting_iterator(0), boost::make_counting_iterator(num), [this](auto) { // don't start background process to test the behavior // of generation changes during alloc new extents return allocate_sequentially(block_size, 1, false); }).then([] { return seastar::stop_iteration::no; }); } }); }; std::vector<extent_types_t> all_extent_types{ extent_types_t::ROOT, extent_types_t::LADDR_INTERNAL, extent_types_t::LADDR_LEAF, extent_types_t::OMAP_INNER, extent_types_t::OMAP_LEAF, extent_types_t::ONODE_BLOCK_STAGED, extent_types_t::COLL_BLOCK, extent_types_t::OBJECT_DATA_BLOCK, extent_types_t::RETIRED_PLACEHOLDER, extent_types_t::ALLOC_INFO, extent_types_t::JOURNAL_TAIL, extent_types_t::TEST_BLOCK, extent_types_t::TEST_BLOCK_PHYSICAL, extent_types_t::BACKREF_INTERNAL, extent_types_t::BACKREF_LEAF }; std::vector<rewrite_gen_t> all_generations; for (auto i = INIT_GENERATION; i < REWRITE_GENERATIONS; i++) { all_generations.push_back(i); } // input target-generation -> expected generation after the adjustment using generation_mapping_t = std::map<rewrite_gen_t, rewrite_gen_t>; std::map<extent_types_t, generation_mapping_t> expected_generations; // this loop should be consistent with EPM::adjust_generation for (auto t : all_extent_types) { expected_generations[t] = {}; if (!is_logical_type(t)) { for (auto gen : all_generations) { expected_generations[t][gen] = INLINE_GENERATION; } } else { if (get_extent_category(t) == data_category_t::METADATA) { expected_generations[t][INIT_GENERATION] = INLINE_GENERATION; } else { expected_generations[t][INIT_GENERATION] = OOL_GENERATION; } for (auto i = INIT_GENERATION + 1; i < REWRITE_GENERATIONS; i++) { expected_generations[t][i] = i; } } } auto update_data_gen_mapping = [&](std::function<rewrite_gen_t(rewrite_gen_t)> func) { for (auto t : all_extent_types) { if (!is_logical_type(t)) { continue; } for (auto i = INIT_GENERATION + 1; i < REWRITE_GENERATIONS; i++) { expected_generations[t][i] = func(i); } } // since background process didn't start in allocate_sequentially // we update eviction mode manually. epm->background_process.maybe_update_eviction_mode(); }; auto test_gen = [&](const char *caller) { for (auto t : all_extent_types) { for (auto gen : all_generations) { auto epm_gen = epm->adjust_generation( get_extent_category(t), t, placement_hint_t::HOT, gen); if (expected_generations[t][gen] != epm_gen) { logger().error("caller: {}, extent type: {}, input generation: {}, " "expected generation : {}, adjust result from EPM: {}", caller, t, gen, expected_generations[t][gen], epm_gen); } EXPECT_EQ(expected_generations[t][gen], epm_gen); } } }; // verify that no data should go to the cold tier update_data_gen_mapping([](rewrite_gen_t gen) -> rewrite_gen_t { if (gen == MIN_COLD_GENERATION) { return MIN_COLD_GENERATION - 1; } else { return gen; } }); test_gen("init"); run_until(ratio_A_size).get(); EXPECT_TRUE(epm->background_process.eviction_state.is_stop_mode()); test_gen("exceed ratio A"); epm->run_background_work_until_halt().get(); run_until(ratio_B_size).get(); EXPECT_TRUE(epm->background_process.eviction_state.is_stop_mode()); test_gen("exceed ratio B"); epm->run_background_work_until_halt().get(); // verify that data may go to the cold tier run_until(ratio_C_size).get(); update_data_gen_mapping([](rewrite_gen_t gen) { return gen; }); EXPECT_TRUE(epm->background_process.eviction_state.is_default_mode()); test_gen("exceed ratio C"); epm->run_background_work_until_halt().get(); // verify that data must go to the cold tier run_until(ratio_D_size).get(); update_data_gen_mapping([](rewrite_gen_t gen) { if (gen >= MIN_REWRITE_GENERATION && gen < MIN_COLD_GENERATION) { return MIN_COLD_GENERATION; } else { return gen; } }); EXPECT_TRUE(epm->background_process.eviction_state.is_fast_mode()); test_gen("exceed ratio D"); auto main_size = epm->background_process.main_cleaner->get_stat().data_stored; auto cold_size = epm->background_process.cold_cleaner->get_stat().data_stored; EXPECT_EQ(cold_size, 0); epm->run_background_work_until_halt().get(); auto new_main_size = epm->background_process.main_cleaner->get_stat().data_stored; auto new_cold_size = epm->background_process.cold_cleaner->get_stat().data_stored; EXPECT_GE(main_size, new_main_size); EXPECT_NE(new_cold_size, 0); update_data_gen_mapping([](rewrite_gen_t gen) { return gen; }); EXPECT_TRUE(epm->background_process.eviction_state.is_default_mode()); test_gen("finish evict"); }); } using remap_entry = TransactionManager::remap_entry; LBAMappingRef remap_pin( test_transaction_t &t, LBAMappingRef &&opin, extent_len_t new_offset, extent_len_t new_len) { if (t.t->is_conflicted()) { return nullptr; } auto o_laddr = opin->get_key(); auto pin = with_trans_intr(*(t.t), [&](auto& trans) { return tm->remap_pin<TestBlock>( trans, std::move(opin), std::array{ remap_entry(new_offset, new_len)} ).si_then([](auto ret) { return std::move(ret[0]); }); }).handle_error(crimson::ct_error::eagain::handle([] { LBAMappingRef t = nullptr; return t; }), crimson::ct_error::pass_further_all{}).unsafe_get0(); if (t.t->is_conflicted()) { return nullptr; } test_mappings.dec_ref(o_laddr, t.mapping_delta); EXPECT_FALSE(test_mappings.contains(o_laddr, t.mapping_delta)); EXPECT_TRUE(pin); EXPECT_EQ(pin->get_length(), new_len); EXPECT_EQ(pin->get_key(), o_laddr + new_offset); auto extent = try_read_pin(t, pin->duplicate()); if (extent) { test_mappings.alloced(pin->get_key(), *extent, t.mapping_delta); EXPECT_TRUE(extent->is_exist_clean()); } else { ceph_assert(t.t->is_conflicted()); return nullptr; } return pin; } using _overwrite_pin_iertr = TransactionManager::get_pin_iertr; using _overwrite_pin_ret = _overwrite_pin_iertr::future< std::tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>>; _overwrite_pin_ret _overwrite_pin( Transaction &t, LBAMappingRef &&opin, extent_len_t new_offset, extent_len_t new_len, ceph::bufferlist &bl) { auto o_laddr = opin->get_key(); auto o_len = opin->get_length(); if (new_offset != 0 && o_len != new_offset + new_len) { return tm->remap_pin<TestBlock, 2>( t, std::move(opin), std::array{ remap_entry( 0, new_offset), remap_entry( new_offset + new_len, o_len - new_offset - new_len) } ).si_then([this, new_offset, new_len, o_laddr, &t, &bl](auto ret) { return tm->alloc_extent<TestBlock>(t, o_laddr + new_offset, new_len ).si_then([this, ret = std::move(ret), new_len, new_offset, o_laddr, &t, &bl](auto ext) mutable { ceph_assert(ret.size() == 2); auto iter = bl.cbegin(); iter.copy(new_len, ext->get_bptr().c_str()); auto r_laddr = o_laddr + new_offset + new_len; // old pins expired after alloc new extent, need to get it. return tm->get_pin(t, o_laddr ).si_then([this, &t, ext = std::move(ext), r_laddr](auto lpin) mutable { return tm->get_pin(t, r_laddr ).si_then([lpin = std::move(lpin), ext = std::move(ext)] (auto rpin) mutable { return _overwrite_pin_iertr::make_ready_future< std::tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>>( std::make_tuple( std::move(lpin), std::move(ext), std::move(rpin))); }); }); }); }); } else if (new_offset == 0 && o_len != new_offset + new_len) { return tm->remap_pin<TestBlock, 1>( t, std::move(opin), std::array{ remap_entry( new_offset + new_len, o_len - new_offset - new_len) } ).si_then([this, new_offset, new_len, o_laddr, &t, &bl](auto ret) { return tm->alloc_extent<TestBlock>(t, o_laddr + new_offset, new_len ).si_then([this, ret = std::move(ret), new_offset, new_len, o_laddr, &t, &bl](auto ext) mutable { ceph_assert(ret.size() == 1); auto iter = bl.cbegin(); iter.copy(new_len, ext->get_bptr().c_str()); auto r_laddr = o_laddr + new_offset + new_len; return tm->get_pin(t, r_laddr ).si_then([ext = std::move(ext)](auto rpin) mutable { return _overwrite_pin_iertr::make_ready_future< std::tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>>( std::make_tuple( nullptr, std::move(ext), std::move(rpin))); }); }); }); } else if (new_offset != 0 && o_len == new_offset + new_len) { return tm->remap_pin<TestBlock, 1>( t, std::move(opin), std::array{ remap_entry( 0, new_offset) } ).si_then([this, new_offset, new_len, o_laddr, &t, &bl](auto ret) { return tm->alloc_extent<TestBlock>(t, o_laddr + new_offset, new_len ).si_then([this, ret = std::move(ret), new_len, o_laddr, &t, &bl] (auto ext) mutable { ceph_assert(ret.size() == 1); auto iter = bl.cbegin(); iter.copy(new_len, ext->get_bptr().c_str()); return tm->get_pin(t, o_laddr ).si_then([ext = std::move(ext)](auto lpin) mutable { return _overwrite_pin_iertr::make_ready_future< std::tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>>( std::make_tuple( std::move(lpin), std::move(ext), nullptr)); }); }); }); } else { ceph_abort("impossible"); return _overwrite_pin_iertr::make_ready_future< std::tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>>( std::make_tuple(nullptr, nullptr, nullptr)); } } using overwrite_pin_ret = std::tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>; overwrite_pin_ret overwrite_pin( test_transaction_t &t, LBAMappingRef &&opin, extent_len_t new_offset, extent_len_t new_len, ceph::bufferlist &bl) { if (t.t->is_conflicted()) { return std::make_tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>( nullptr, nullptr, nullptr); } auto o_laddr = opin->get_key(); auto o_paddr = opin->get_val(); auto o_len = opin->get_length(); auto res = with_trans_intr(*(t.t), [&](auto& trans) { return _overwrite_pin( trans, std::move(opin), new_offset, new_len, bl); }).handle_error(crimson::ct_error::eagain::handle([] { return std::make_tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>( nullptr, nullptr, nullptr); }), crimson::ct_error::pass_further_all{}).unsafe_get0(); if (t.t->is_conflicted()) { return std::make_tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>( nullptr, nullptr, nullptr); } test_mappings.dec_ref(o_laddr, t.mapping_delta); EXPECT_FALSE(test_mappings.contains(o_laddr, t.mapping_delta)); auto &[lpin, ext, rpin] = res; EXPECT_TRUE(ext); EXPECT_TRUE(lpin || rpin); EXPECT_TRUE(o_len > ext->get_length()); if (lpin) { EXPECT_EQ(lpin->get_key(), o_laddr); EXPECT_EQ(lpin->get_val(), o_paddr); EXPECT_EQ(lpin->get_length(), new_offset); auto lext = try_read_pin(t, lpin->duplicate()); if (lext) { test_mappings.alloced(lpin->get_key(), *lext, t.mapping_delta); EXPECT_TRUE(lext->is_exist_clean()); } else { ceph_assert(t.t->is_conflicted()); return std::make_tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>( nullptr, nullptr, nullptr); } } EXPECT_EQ(ext->get_laddr(), o_laddr + new_offset); EXPECT_EQ(ext->get_length(), new_len); test_mappings.alloced(ext->get_laddr(), *ext, t.mapping_delta); if (rpin) { EXPECT_EQ(rpin->get_key(), o_laddr + new_offset + new_len); EXPECT_EQ(rpin->get_val(), o_paddr.add_offset(new_offset) .add_offset(new_len)); EXPECT_EQ(rpin->get_length(), o_len - new_offset - new_len); auto rext = try_read_pin(t, rpin->duplicate()); if (rext) { test_mappings.alloced(rpin->get_key(), *rext, t.mapping_delta); EXPECT_TRUE(rext->is_exist_clean()); } else { ceph_assert(t.t->is_conflicted()); return std::make_tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>( nullptr, nullptr, nullptr); } } return std::make_tuple<LBAMappingRef, TestBlockRef, LBAMappingRef>( std::move(lpin), std::move(ext), std::move(rpin)); } void test_remap_pin() { run_async([this] { constexpr size_t l_offset = 32 << 10; constexpr size_t l_len = 32 << 10; constexpr size_t r_offset = 64 << 10; constexpr size_t r_len = 32 << 10; { auto t = create_transaction(); auto lext = alloc_extent(t, l_offset, l_len); lext->set_contents('l', 0, 16 << 10); auto rext = alloc_extent(t, r_offset, r_len); rext->set_contents('r', 16 << 10, 16 << 10); submit_transaction(std::move(t)); } { auto t = create_transaction(); auto lpin = get_pin(t, l_offset); auto rpin = get_pin(t, r_offset); //split left auto pin1 = remap_pin(t, std::move(lpin), 0, 16 << 10); ASSERT_TRUE(pin1); auto pin2 = remap_pin(t, std::move(pin1), 0, 8 << 10); ASSERT_TRUE(pin2); auto pin3 = remap_pin(t, std::move(pin2), 0, 4 << 10); ASSERT_TRUE(pin3); auto lext = get_extent(t, pin3->get_key(), pin3->get_length()); EXPECT_EQ('l', lext->get_bptr().c_str()[0]); auto mlext = mutate_extent(t, lext); ASSERT_TRUE(mlext->is_exist_mutation_pending()); ASSERT_TRUE(mlext.get() == lext.get()); //split right auto pin4 = remap_pin(t, std::move(rpin), 16 << 10, 16 << 10); ASSERT_TRUE(pin4); auto pin5 = remap_pin(t, std::move(pin4), 8 << 10, 8 << 10); ASSERT_TRUE(pin5); auto pin6 = remap_pin(t, std::move(pin5), 4 << 10, 4 << 10); ASSERT_TRUE(pin6); auto rext = get_extent(t, pin6->get_key(), pin6->get_length()); EXPECT_EQ('r', rext->get_bptr().c_str()[0]); auto mrext = mutate_extent(t, rext); ASSERT_TRUE(mrext->is_exist_mutation_pending()); ASSERT_TRUE(mrext.get() == rext.get()); submit_transaction(std::move(t)); check(); } replay(); check(); }); } void test_overwrite_pin() { run_async([this] { constexpr size_t m_offset = 8 << 10; constexpr size_t m_len = 56 << 10; constexpr size_t l_offset = 64 << 10; constexpr size_t l_len = 64 << 10; constexpr size_t r_offset = 128 << 10; constexpr size_t r_len = 64 << 10; { auto t = create_transaction(); auto m_ext = alloc_extent(t, m_offset, m_len); m_ext->set_contents('a', 0 << 10, 8 << 10); m_ext->set_contents('b', 16 << 10, 4 << 10); m_ext->set_contents('c', 36 << 10, 4 << 10); m_ext->set_contents('d', 52 << 10, 4 << 10); auto l_ext = alloc_extent(t, l_offset, l_len); auto r_ext = alloc_extent(t, r_offset, r_len); submit_transaction(std::move(t)); } { auto t = create_transaction(); auto mpin = get_pin(t, m_offset); auto lpin = get_pin(t, l_offset); auto rpin = get_pin(t, r_offset); bufferlist mbl1, mbl2, mbl3; mbl1.append(ceph::bufferptr(ceph::buffer::create(8 << 10, 0))); mbl2.append(ceph::bufferptr(ceph::buffer::create(16 << 10, 0))); mbl3.append(ceph::bufferptr(ceph::buffer::create(12 << 10, 0))); auto [mlp1, mext1, mrp1] = overwrite_pin( t, std::move(mpin), 8 << 10 , 8 << 10, mbl1); auto [mlp2, mext2, mrp2] = overwrite_pin( t, std::move(mrp1), 4 << 10 , 16 << 10, mbl2); auto [mlpin3, me3, mrpin3] = overwrite_pin( t, std::move(mrp2), 4 << 10 , 12 << 10, mbl3); auto mlext1 = get_extent(t, mlp1->get_key(), mlp1->get_length()); auto mlext2 = get_extent(t, mlp2->get_key(), mlp2->get_length()); auto mlext3 = get_extent(t, mlpin3->get_key(), mlpin3->get_length()); auto mrext3 = get_extent(t, mrpin3->get_key(), mrpin3->get_length()); EXPECT_EQ('a', mlext1->get_bptr().c_str()[0]); EXPECT_EQ('b', mlext2->get_bptr().c_str()[0]); EXPECT_EQ('c', mlext3->get_bptr().c_str()[0]); EXPECT_EQ('d', mrext3->get_bptr().c_str()[0]); auto mutate_mlext1 = mutate_extent(t, mlext1); auto mutate_mlext2 = mutate_extent(t, mlext2); auto mutate_mlext3 = mutate_extent(t, mlext3); auto mutate_mrext3 = mutate_extent(t, mrext3); ASSERT_TRUE(mutate_mlext1->is_exist_mutation_pending()); ASSERT_TRUE(mutate_mlext2->is_exist_mutation_pending()); ASSERT_TRUE(mutate_mlext3->is_exist_mutation_pending()); ASSERT_TRUE(mutate_mrext3->is_exist_mutation_pending()); ASSERT_TRUE(mutate_mlext1.get() == mlext1.get()); ASSERT_TRUE(mutate_mlext2.get() == mlext2.get()); ASSERT_TRUE(mutate_mlext3.get() == mlext3.get()); ASSERT_TRUE(mutate_mrext3.get() == mrext3.get()); bufferlist lbl1, rbl1; lbl1.append(ceph::bufferptr(ceph::buffer::create(32 << 10, 0))); auto [llp1, lext1, lrp1] = overwrite_pin( t, std::move(lpin), 0 , 32 << 10, lbl1); EXPECT_FALSE(llp1); EXPECT_TRUE(lrp1); EXPECT_TRUE(lext1); rbl1.append(ceph::bufferptr(ceph::buffer::create(32 << 10, 0))); auto [rlp1, rext1, rrp1] = overwrite_pin( t, std::move(rpin), 32 << 10 , 32 << 10, rbl1); EXPECT_TRUE(rlp1); EXPECT_TRUE(rext1); EXPECT_FALSE(rrp1); submit_transaction(std::move(t)); check(); } replay(); check(); }); } void test_remap_pin_concurrent() { run_async([this] { constexpr unsigned REMAP_NUM = 32; constexpr size_t offset = 0; constexpr size_t length = 256 << 10; { auto t = create_transaction(); auto extent = alloc_extent(t, offset, length); ASSERT_EQ(length, extent->get_length()); submit_transaction(std::move(t)); } int success = 0; int early_exit = 0; int conflicted = 0; seastar::parallel_for_each( boost::make_counting_iterator(0u), boost::make_counting_iterator(REMAP_NUM), [&](auto) { return seastar::async([&] { uint32_t pieces = std::uniform_int_distribution<>(6, 31)(gen); std::set<uint32_t> split_points; for (uint32_t i = 0; i < pieces; i++) { auto p = std::uniform_int_distribution<>(1, 256)(gen); split_points.insert(p - p % 4); } auto t = create_transaction(); auto pin0 = try_get_pin(t, offset); if (!pin0 || pin0->get_length() != length) { early_exit++; return; } auto last_pin = pin0->duplicate(); ASSERT_TRUE(!split_points.empty()); for (auto off : split_points) { if (off == 0 || off >= 255) { continue; } auto new_off = (off << 10) - last_pin->get_key(); auto new_len = last_pin->get_length() - new_off; //always remap right extent at new split_point auto pin = remap_pin(t, std::move(last_pin), new_off, new_len); if (!pin) { conflicted++; return; } last_pin = pin->duplicate(); } auto last_ext = try_get_extent(t, last_pin->get_key()); if (last_ext) { auto last_ext1 = mutate_extent(t, last_ext); ASSERT_TRUE(last_ext1->is_exist_mutation_pending()); } else { conflicted++; return; } if (try_submit_transaction(std::move(t))) { success++; logger().info("transaction {} submit the transction", static_cast<void*>(t.t.get())); } else { conflicted++; } }); }).handle_exception([](std::exception_ptr e) { logger().info("{}", e); }).get0(); logger().info("test_remap_pin_concurrent: " "early_exit {} conflicted {} success {}", early_exit, conflicted, success); ASSERT_TRUE(success == 1); ASSERT_EQ(success + conflicted + early_exit, REMAP_NUM); replay(); check(); }); } void test_overwrite_pin_concurrent() { run_async([this] { constexpr unsigned REMAP_NUM = 32; constexpr size_t offset = 0; constexpr size_t length = 256 << 10; { auto t = create_transaction(); auto extent = alloc_extent(t, offset, length); ASSERT_EQ(length, extent->get_length()); submit_transaction(std::move(t)); } int success = 0; int early_exit = 0; int conflicted = 0; seastar::parallel_for_each( boost::make_counting_iterator(0u), boost::make_counting_iterator(REMAP_NUM), [&](auto) { return seastar::async([&] { uint32_t pieces = std::uniform_int_distribution<>(6, 31)(gen); if (pieces % 2 == 1) { pieces++; } std::list<uint32_t> split_points; for (uint32_t i = 0; i < pieces; i++) { auto p = std::uniform_int_distribution<>(1, 120)(gen); split_points.push_back(p - p % 4); } split_points.sort(); auto t = create_transaction(); auto pin0 = try_get_pin(t, offset); if (!pin0 || pin0->get_length() != length) { early_exit++; return; } auto empty_transaction = true; auto last_rpin = pin0->duplicate(); ASSERT_TRUE(!split_points.empty()); while(!split_points.empty()) { // new overwrite area: start_off ~ end_off auto start_off = split_points.front(); split_points.pop_front(); auto end_off = split_points.front(); split_points.pop_front(); ASSERT_TRUE(start_off <= end_off); if (((end_off << 10) == pin0->get_key() + pin0->get_length()) || (start_off == end_off)) { if (split_points.empty() && empty_transaction) { early_exit++; return; } continue; } empty_transaction = false; auto new_off = (start_off << 10) - last_rpin->get_key(); auto new_len = (end_off - start_off) << 10; bufferlist bl; bl.append(ceph::bufferptr(ceph::buffer::create(new_len, 0))); auto [lpin, ext, rpin] = overwrite_pin( t, last_rpin->duplicate(), new_off, new_len, bl); if (!ext) { conflicted++; return; } // lpin is nullptr might not cause by confliction, // it might just not exist. if (lpin) { auto lext = try_get_extent(t, lpin->get_key()); if (!lext) { conflicted++; return; } if (get_random_contents() % 2 == 0) { auto lext1 = mutate_extent(t, lext); ASSERT_TRUE(lext1->is_exist_mutation_pending()); } } ASSERT_TRUE(rpin); last_rpin = rpin->duplicate(); } auto last_rext = try_get_extent(t, last_rpin->get_key()); if (!last_rext) { conflicted++; return; } if (get_random_contents() % 2 == 0) { auto last_rext1 = mutate_extent(t, last_rext); ASSERT_TRUE(last_rext1->is_exist_mutation_pending()); } if (try_submit_transaction(std::move(t))) { success++; logger().info("transaction {} submit the transction", static_cast<void*>(t.t.get())); } else { conflicted++; } }); }).handle_exception([](std::exception_ptr e) { logger().info("{}", e); }).get0(); logger().info("test_overwrite_pin_concurrent: " "early_exit {} conflicted {} success {}", early_exit, conflicted, success); ASSERT_TRUE(success == 1 || early_exit == REMAP_NUM); ASSERT_EQ(success + conflicted + early_exit, REMAP_NUM); replay(); check(); }); } }; struct tm_single_device_test_t : public transaction_manager_test_t { tm_single_device_test_t() : transaction_manager_test_t(1, 0) {} }; struct tm_multi_device_test_t : public transaction_manager_test_t { tm_multi_device_test_t() : transaction_manager_test_t(3, 0) {} }; struct tm_multi_tier_device_test_t : public transaction_manager_test_t { tm_multi_tier_device_test_t() : transaction_manager_test_t(1, 2) {} }; TEST_P(tm_single_device_test_t, basic) { constexpr laddr_t SIZE = 4096; run_async([this] { constexpr laddr_t ADDR = 0xFF * SIZE; { auto t = create_transaction(); auto extent = alloc_extent( t, ADDR, SIZE, 'a'); ASSERT_EQ(ADDR, extent->get_laddr()); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } }); } TEST_P(tm_single_device_test_t, mutate) { constexpr laddr_t SIZE = 4096; run_async([this] { constexpr laddr_t ADDR = 0xFF * SIZE; { auto t = create_transaction(); auto extent = alloc_extent( t, ADDR, SIZE, 'a'); ASSERT_EQ(ADDR, extent->get_laddr()); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } ASSERT_TRUE(check_usage()); replay(); { auto t = create_transaction(); auto ext = get_extent( t, ADDR, SIZE); auto mut = mutate_extent(t, ext); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } ASSERT_TRUE(check_usage()); replay(); check(); }); } TEST_P(tm_single_device_test_t, allocate_lba_conflict) { constexpr laddr_t SIZE = 4096; run_async([this] { constexpr laddr_t ADDR = 0xFF * SIZE; constexpr laddr_t ADDR2 = 0xFE * SIZE; auto t = create_transaction(); auto t2 = create_transaction(); // These should conflict as they should both modify the lba root auto extent = alloc_extent( t, ADDR, SIZE, 'a'); ASSERT_EQ(ADDR, extent->get_laddr()); check_mappings(t); check(); auto extent2 = alloc_extent( t2, ADDR2, SIZE, 'a'); ASSERT_EQ(ADDR2, extent2->get_laddr()); check_mappings(t2); extent2.reset(); submit_transaction(std::move(t2)); submit_transaction_expect_conflict(std::move(t)); }); } TEST_P(tm_single_device_test_t, mutate_lba_conflict) { constexpr laddr_t SIZE = 4096; run_async([this] { { auto t = create_transaction(); for (unsigned i = 0; i < 300; ++i) { auto extent = alloc_extent( t, laddr_t(i * SIZE), SIZE); } check_mappings(t); submit_transaction(std::move(t)); check(); } constexpr laddr_t ADDR = 150 * SIZE; { auto t = create_transaction(); auto t2 = create_transaction(); mutate_addr(t, ADDR, SIZE); mutate_addr(t2, ADDR, SIZE); submit_transaction(std::move(t)); submit_transaction_expect_conflict(std::move(t2)); } check(); { auto t = create_transaction(); mutate_addr(t, ADDR, SIZE); submit_transaction(std::move(t)); } check(); }); } TEST_P(tm_single_device_test_t, concurrent_mutate_lba_no_conflict) { constexpr laddr_t SIZE = 4096; constexpr size_t NUM = 500; constexpr laddr_t addr = 0; constexpr laddr_t addr2 = SIZE * (NUM - 1); run_async([this] { { auto t = create_transaction(); for (unsigned i = 0; i < NUM; ++i) { auto extent = alloc_extent( t, laddr_t(i * SIZE), SIZE); } submit_transaction(std::move(t)); } { auto t = create_transaction(); auto t2 = create_transaction(); mutate_addr(t, addr, SIZE); mutate_addr(t2, addr2, SIZE); submit_transaction(std::move(t)); submit_transaction(std::move(t2)); } check(); }); } TEST_P(tm_single_device_test_t, create_remove_same_transaction) { constexpr laddr_t SIZE = 4096; run_async([this] { constexpr laddr_t ADDR = 0xFF * SIZE; { auto t = create_transaction(); auto extent = alloc_extent( t, ADDR, SIZE, 'a'); ASSERT_EQ(ADDR, extent->get_laddr()); check_mappings(t); dec_ref(t, ADDR); check_mappings(t); extent = alloc_extent( t, ADDR, SIZE, 'a'); submit_transaction(std::move(t)); check(); } replay(); check(); }); } TEST_P(tm_single_device_test_t, split_merge_read_same_transaction) { constexpr laddr_t SIZE = 4096; run_async([this] { { auto t = create_transaction(); for (unsigned i = 0; i < 300; ++i) { auto extent = alloc_extent( t, laddr_t(i * SIZE), SIZE); } check_mappings(t); submit_transaction(std::move(t)); check(); } { auto t = create_transaction(); for (unsigned i = 0; i < 240; ++i) { dec_ref( t, laddr_t(i * SIZE)); } check_mappings(t); submit_transaction(std::move(t)); check(); } }); } TEST_P(tm_single_device_test_t, inc_dec_ref) { constexpr laddr_t SIZE = 4096; run_async([this] { constexpr laddr_t ADDR = 0xFF * SIZE; { auto t = create_transaction(); auto extent = alloc_extent( t, ADDR, SIZE, 'a'); ASSERT_EQ(ADDR, extent->get_laddr()); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } replay(); { auto t = create_transaction(); inc_ref(t, ADDR); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } { auto t = create_transaction(); dec_ref(t, ADDR); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } replay(); { auto t = create_transaction(); dec_ref(t, ADDR); check_mappings(t); check(); submit_transaction(std::move(t)); check(); } }); } TEST_P(tm_single_device_test_t, cause_lba_split) { constexpr laddr_t SIZE = 4096; run_async([this] { for (unsigned i = 0; i < 200; ++i) { auto t = create_transaction(); auto extent = alloc_extent( t, i * SIZE, SIZE, (char)(i & 0xFF)); ASSERT_EQ(i * SIZE, extent->get_laddr()); submit_transaction(std::move(t)); } check(); }); } TEST_P(tm_single_device_test_t, random_writes) { constexpr size_t TOTAL = 4<<20; constexpr size_t BSIZE = 4<<10; constexpr size_t PADDING_SIZE = 256<<10; constexpr size_t BLOCKS = TOTAL / BSIZE; run_async([this] { for (unsigned i = 0; i < BLOCKS; ++i) { auto t = create_transaction(); auto extent = alloc_extent( t, i * BSIZE, BSIZE); ASSERT_EQ(i * BSIZE, extent->get_laddr()); submit_transaction(std::move(t)); } for (unsigned i = 0; i < 4; ++i) { for (unsigned j = 0; j < 65; ++j) { auto t = create_transaction(); for (unsigned k = 0; k < 2; ++k) { auto ext = get_extent( t, get_random_laddr(BSIZE, TOTAL), BSIZE); auto mut = mutate_extent(t, ext); // pad out transaction auto padding = alloc_extent( t, TOTAL + (k * PADDING_SIZE), PADDING_SIZE); dec_ref(t, padding->get_laddr()); } submit_transaction(std::move(t)); } replay(); logger().info("random_writes: {} checking", i); check(); logger().info("random_writes: {} done replaying/checking", i); } }); } TEST_P(tm_single_device_test_t, find_hole_assert_trigger) { constexpr unsigned max = 10; constexpr size_t BSIZE = 4<<10; int num = 40; run([&, this] { return seastar::parallel_for_each( boost::make_counting_iterator(0u), boost::make_counting_iterator(max), [&, this](auto idx) { return allocate_sequentially(BSIZE, num); }); }); } TEST_P(tm_single_device_test_t, remap_lazy_read) { constexpr laddr_t offset = 0; constexpr size_t length = 256 << 10; run_async([this, offset] { { auto t = create_transaction(); auto extent = alloc_extent( t, offset, length, 'a'); ASSERT_EQ(offset, extent->get_laddr()); check_mappings(t); submit_transaction(std::move(t)); check(); } replay(); { auto t = create_transaction(); auto pin = get_pin(t, offset); auto rpin = remap_pin(t, std::move(pin), 0, 128 << 10); check_mappings(t); submit_transaction(std::move(t)); check(); } replay(); { auto t = create_transaction(); auto pin = get_pin(t, offset); bufferlist bl; bl.append(ceph::bufferptr(ceph::buffer::create(64 << 10, 0))); auto [lpin, ext, rpin] = overwrite_pin( t, std::move(pin), 4 << 10 , 64 << 10, bl); check_mappings(t); submit_transaction(std::move(t)); check(); } replay(); }); } TEST_P(tm_single_device_test_t, random_writes_concurrent) { test_random_writes_concurrent(); } TEST_P(tm_multi_device_test_t, random_writes_concurrent) { test_random_writes_concurrent(); } TEST_P(tm_multi_tier_device_test_t, evict) { test_evict(); } TEST_P(tm_single_device_test_t, parallel_extent_read) { test_parallel_extent_read(); } TEST_P(tm_single_device_test_t, test_remap_pin) { test_remap_pin(); } TEST_P(tm_single_device_test_t, test_overwrite_pin) { test_overwrite_pin(); } TEST_P(tm_single_device_test_t, test_remap_pin_concurrent) { test_remap_pin_concurrent(); } TEST_P(tm_single_device_test_t, test_overwrite_pin_concurrent) { test_overwrite_pin_concurrent(); } INSTANTIATE_TEST_SUITE_P( transaction_manager_test, tm_single_device_test_t, ::testing::Values ( "segmented", "circularbounded" ) ); INSTANTIATE_TEST_SUITE_P( transaction_manager_test, tm_multi_device_test_t, ::testing::Values ( "segmented" ) ); INSTANTIATE_TEST_SUITE_P( transaction_manager_test, tm_multi_tier_device_test_t, ::testing::Values ( "segmented" ) );
58,950
28.416667
92
cc
null
ceph-main/src/test/crimson/seastore/transaction_manager_test_state.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #pragma once #include <random> #include <boost/iterator/counting_iterator.hpp> #include "crimson/os/seastore/cache.h" #include "crimson/os/seastore/extent_placement_manager.h" #include "crimson/os/seastore/logging.h" #include "crimson/os/seastore/transaction_manager.h" #include "crimson/os/seastore/segment_manager/ephemeral.h" #include "crimson/os/seastore/seastore.h" #include "crimson/os/seastore/segment_manager.h" #include "crimson/os/seastore/collection_manager/flat_collection_manager.h" #include "crimson/os/seastore/onode_manager/staged-fltree/fltree_onode_manager.h" #include "crimson/os/seastore/random_block_manager/rbm_device.h" #include "crimson/os/seastore/journal/circular_bounded_journal.h" #include "crimson/os/seastore/random_block_manager/block_rb_manager.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; class EphemeralDevices { public: virtual seastar::future<> setup() = 0; virtual void remount() = 0; virtual std::size_t get_num_devices() const = 0; virtual void reset() = 0; virtual std::vector<Device*> get_secondary_devices() = 0; virtual ~EphemeralDevices() {} virtual Device* get_primary_device() = 0; virtual DeviceRef get_primary_device_ref() = 0; virtual void set_primary_device_ref(DeviceRef) = 0; }; using EphemeralDevicesRef = std::unique_ptr<EphemeralDevices>; class EphemeralSegmentedDevices : public EphemeralDevices { segment_manager::EphemeralSegmentManagerRef segment_manager; std::list<segment_manager::EphemeralSegmentManagerRef> secondary_segment_managers; std::size_t num_main_device_managers; std::size_t num_cold_device_managers; public: EphemeralSegmentedDevices(std::size_t num_main_devices, std::size_t num_cold_devices) : num_main_device_managers(num_main_devices), num_cold_device_managers(num_cold_devices) { auto num_device_managers = num_main_device_managers + num_cold_device_managers; assert(num_device_managers > 0); secondary_segment_managers.resize(num_device_managers - 1); } seastar::future<> setup() final { segment_manager = segment_manager::create_test_ephemeral(); for (auto &sec_sm : secondary_segment_managers) { sec_sm = segment_manager::create_test_ephemeral(); } return segment_manager->init( ).safe_then([this] { return crimson::do_for_each( secondary_segment_managers.begin(), secondary_segment_managers.end(), [](auto &sec_sm) { return sec_sm->init(); }); }).safe_then([this] { return segment_manager->mkfs( segment_manager::get_ephemeral_device_config( 0, num_main_device_managers, num_cold_device_managers)); }).safe_then([this] { return seastar::do_with(std::size_t(0), [this](auto &cnt) { return crimson::do_for_each( secondary_segment_managers.begin(), secondary_segment_managers.end(), [this, &cnt](auto &sec_sm) { ++cnt; return sec_sm->mkfs( segment_manager::get_ephemeral_device_config( cnt, num_main_device_managers, num_cold_device_managers)); }); }); }).handle_error( crimson::ct_error::assert_all{} ); } void remount() final { segment_manager->remount(); for (auto &sec_sm : secondary_segment_managers) { sec_sm->remount(); } } std::size_t get_num_devices() const final { return secondary_segment_managers.size() + 1; } void reset() final { segment_manager.reset(); for (auto &sec_sm : secondary_segment_managers) { sec_sm.reset(); } } std::vector<Device*> get_secondary_devices() final { std::vector<Device*> sec_devices; for (auto &sec_sm : secondary_segment_managers) { sec_devices.emplace_back(sec_sm.get()); } return sec_devices; } Device* get_primary_device() final { return segment_manager.get(); } DeviceRef get_primary_device_ref() final; void set_primary_device_ref(DeviceRef) final; }; class EphemeralRandomBlockDevices : public EphemeralDevices { random_block_device::RBMDeviceRef rb_device; std::list<random_block_device::RBMDeviceRef> secondary_rb_devices; public: EphemeralRandomBlockDevices(std::size_t num_device_managers) { assert(num_device_managers > 0); secondary_rb_devices.resize(num_device_managers - 1); } seastar::future<> setup() final { rb_device = random_block_device::create_test_ephemeral(); device_config_t config = get_rbm_ephemeral_device_config(0, 1); return rb_device->mkfs(config).handle_error(crimson::ct_error::assert_all{}); } void remount() final {} std::size_t get_num_devices() const final { return secondary_rb_devices.size() + 1; } void reset() final { rb_device.reset(); for (auto &sec_rb : secondary_rb_devices) { sec_rb.reset(); } } std::vector<Device*> get_secondary_devices() final { std::vector<Device*> sec_devices; for (auto &sec_rb : secondary_rb_devices) { sec_devices.emplace_back(sec_rb.get()); } return sec_devices; } Device* get_primary_device() final { return rb_device.get(); } DeviceRef get_primary_device_ref() final; void set_primary_device_ref(DeviceRef) final; }; class EphemeralTestState { protected: journal_type_t journal_type; size_t num_main_device_managers = 0; size_t num_cold_device_managers = 0; EphemeralDevicesRef devices; bool secondary_is_cold; EphemeralTestState(std::size_t num_main_device_managers, std::size_t num_cold_device_managers) : num_main_device_managers(num_main_device_managers), num_cold_device_managers(num_cold_device_managers) {} virtual seastar::future<> _init() = 0; virtual seastar::future<> _destroy() = 0; virtual seastar::future<> _teardown() = 0; seastar::future<> teardown() { return _teardown().then([this] { return _destroy(); }); } virtual FuturizedStore::mkfs_ertr::future<> _mkfs() = 0; virtual FuturizedStore::mount_ertr::future<> _mount() = 0; seastar::future<> restart_fut() { LOG_PREFIX(EphemeralTestState::restart_fut); SUBINFO(test, "begin ..."); return teardown().then([this] { devices->remount(); return _init().then([this] { return _mount().handle_error(crimson::ct_error::assert_all{}); }); }).then([FNAME] { SUBINFO(test, "finish"); }); } void restart() { restart_fut().get0(); } seastar::future<> tm_setup( journal_type_t type = journal_type_t::SEGMENTED) { LOG_PREFIX(EphemeralTestState::tm_setup); journal_type = type; if (journal_type == journal_type_t::SEGMENTED) { devices.reset(new EphemeralSegmentedDevices( num_main_device_managers, num_cold_device_managers)); } else { assert(journal_type == journal_type_t::RANDOM_BLOCK); //TODO: multiple devices ceph_assert(num_main_device_managers == 1); ceph_assert(num_cold_device_managers == 0); devices.reset(new EphemeralRandomBlockDevices(1)); } SUBINFO(test, "begin with {} devices ...", devices->get_num_devices()); return devices->setup( ).then([this] { return _init(); }).then([this, FNAME] { return _mkfs( ).safe_then([this] { return restart_fut(); }).handle_error( crimson::ct_error::assert_all{} ).then([FNAME] { SUBINFO(test, "finish"); }); }); } seastar::future<> tm_teardown() { LOG_PREFIX(EphemeralTestState::tm_teardown); SUBINFO(test, "begin"); return teardown().then([this, FNAME] { devices->reset(); SUBINFO(test, "finish"); }); } }; class TMTestState : public EphemeralTestState { protected: TransactionManagerRef tm; LBAManager *lba_manager; Cache* cache; ExtentPlacementManager *epm; uint64_t seq = 0; TMTestState() : EphemeralTestState(1, 0) {} TMTestState(std::size_t num_main_devices, std::size_t num_cold_devices) : EphemeralTestState(num_main_devices, num_cold_devices) {} virtual seastar::future<> _init() override { auto sec_devices = devices->get_secondary_devices(); auto p_dev = devices->get_primary_device(); tm = make_transaction_manager(p_dev, sec_devices, true); epm = tm->get_epm(); lba_manager = tm->get_lba_manager(); cache = tm->get_cache(); return seastar::now(); } virtual seastar::future<> _destroy() override { epm = nullptr; lba_manager = nullptr; cache = nullptr; tm.reset(); return seastar::now(); } virtual seastar::future<> _teardown() { return tm->close().handle_error( crimson::ct_error::assert_all{"Error in teardown"} ); } virtual FuturizedStore::mount_ertr::future<> _mount() { return tm->mount( ).handle_error( crimson::ct_error::assert_all{"Error in mount"} ).then([this] { return epm->stop_background(); }).then([this] { return epm->run_background_work_until_halt(); }); } virtual FuturizedStore::mkfs_ertr::future<> _mkfs() { return tm->mkfs( ).handle_error( crimson::ct_error::assert_all{"Error in mkfs"} ); } auto create_mutate_transaction() { return tm->create_transaction( Transaction::src_t::MUTATE, "test_mutate"); } auto create_read_transaction() { return tm->create_transaction( Transaction::src_t::READ, "test_read"); } auto create_weak_transaction() { return tm->create_transaction( Transaction::src_t::READ, "test_read_weak", true); } auto submit_transaction_fut2(Transaction& t) { return tm->submit_transaction(t); } auto submit_transaction_fut(Transaction &t) { return with_trans_intr( t, [this](auto &t) { return tm->submit_transaction(t); }); } auto submit_transaction_fut_with_seq(Transaction &t) { using ertr = TransactionManager::base_iertr; return with_trans_intr( t, [this](auto &t) { return tm->submit_transaction(t ).si_then([this] { return ertr::make_ready_future<uint64_t>(seq++); }); }); } void submit_transaction(TransactionRef t) { submit_transaction_fut(*t).unsafe_get0(); epm->run_background_work_until_halt().get0(); } }; DeviceRef EphemeralSegmentedDevices::get_primary_device_ref() { return std::move(segment_manager); } DeviceRef EphemeralRandomBlockDevices::get_primary_device_ref() { return std::move(rb_device); } void EphemeralSegmentedDevices::set_primary_device_ref(DeviceRef dev) { segment_manager = segment_manager::EphemeralSegmentManagerRef( static_cast<segment_manager::EphemeralSegmentManager*>(dev.release())); } void EphemeralRandomBlockDevices::set_primary_device_ref(DeviceRef dev) { rb_device = random_block_device::RBMDeviceRef( static_cast<random_block_device::RBMDevice*>(dev.release())); } class SeaStoreTestState : public EphemeralTestState { class TestMDStoreState { std::map<std::string, std::string> md; public: class Store final : public SeaStore::MDStore { TestMDStoreState &parent; public: Store(TestMDStoreState &parent) : parent(parent) {} write_meta_ret write_meta( const std::string& key, const std::string& value) final { parent.md[key] = value; return seastar::now(); } read_meta_ret read_meta(const std::string& key) final { auto iter = parent.md.find(key); if (iter != parent.md.end()) { return read_meta_ret( read_meta_ertr::ready_future_marker{}, iter->second); } else { return read_meta_ret( read_meta_ertr::ready_future_marker{}, std::nullopt); } } }; Store get_mdstore() { return Store(*this); } } mdstore_state; protected: std::unique_ptr<SeaStore> seastore; FuturizedStore::Shard *sharded_seastore; SeaStoreTestState() : EphemeralTestState(1, 0) {} virtual seastar::future<> _init() final { seastore = make_test_seastore( std::make_unique<TestMDStoreState::Store>(mdstore_state.get_mdstore())); return seastore->test_start(devices->get_primary_device_ref() ).then([this] { sharded_seastore = &(seastore->get_sharded_store()); }); } virtual seastar::future<> _destroy() final { devices->set_primary_device_ref(seastore->get_primary_device_ref()); return seastore->stop().then([this] { seastore.reset(); }); } virtual seastar::future<> _teardown() final { return seastore->umount(); } virtual FuturizedStore::mount_ertr::future<> _mount() final { return seastore->test_mount(); } virtual FuturizedStore::mkfs_ertr::future<> _mkfs() final { return seastore->test_mkfs(uuid_d{}); } };
12,787
28.063636
84
h
null
ceph-main/src/test/crimson/seastore/nvmedevice/test_nvmedevice.cc
//-*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include "include/buffer.h" #include "crimson/os/seastore/random_block_manager/rbm_device.h" #include "crimson/os/seastore/random_block_manager/nvme_block_device.h" #include "test/crimson/gtest_seastar.h" #include "include/stringify.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; using namespace random_block_device; using namespace random_block_device::nvme; struct nvdev_test_t : seastar_test_suite_t { std::unique_ptr<RBMDevice> device; std::string dev_path; static const uint64_t DEV_SIZE = 1024 * 1024 * 1024; nvdev_test_t() : device(nullptr), dev_path("randomblock_manager.test_nvmedevice" + stringify(getpid())) { int fd = ::open(dev_path.c_str(), O_CREAT|O_RDWR|O_TRUNC, 0644); ceph_assert(fd >= 0); ::ftruncate(fd, DEV_SIZE); ::close(fd); } ~nvdev_test_t() { ::unlink(dev_path.c_str()); } }; static const uint64_t BUF_SIZE = 1024; static const uint64_t BLK_SIZE = 4096; struct nvdev_test_block_t { uint8_t data[BUF_SIZE]; DENC(nvdev_test_block_t, v, p) { DENC_START(1, 1, p); for (uint64_t i = 0 ; i < BUF_SIZE; i++) { denc(v.data[i], p); } DENC_FINISH(p); } }; WRITE_CLASS_DENC_BOUNDED( nvdev_test_block_t ) using crimson::common::local_conf; TEST_F(nvdev_test_t, write_and_verify_test) { run_async([this] { device.reset(new random_block_device::nvme::NVMeBlockDevice(dev_path)); local_conf().set_val("seastore_cbjournal_size", "1048576").get(); device->start().get(); device->mkfs( device_config_t{ true, device_spec_t{ (magic_t)std::rand(), device_type_t::RANDOM_BLOCK_SSD, static_cast<device_id_t>(DEVICE_ID_RANDOM_BLOCK_MIN)}, seastore_meta_t{uuid_d()}, secondary_device_set_t()} ).unsafe_get(); device->mount().unsafe_get(); nvdev_test_block_t original_data; std::minstd_rand0 generator; uint8_t value = generator(); memset(original_data.data, value, BUF_SIZE); uint64_t bl_length = 0; Device& d = device->get_sharded_device(); { bufferlist bl; encode(original_data, bl); bl_length = bl.length(); auto write_buf = ceph::bufferptr(buffer::create_page_aligned(BLK_SIZE)); bl.begin().copy(bl_length, write_buf.c_str()); ((RBMDevice*)&d)->write(0, std::move(write_buf)).unsafe_get(); } nvdev_test_block_t read_data; { auto read_buf = ceph::bufferptr(buffer::create_page_aligned(BLK_SIZE)); ((RBMDevice*)&d)->read(0, read_buf).unsafe_get(); bufferlist bl; bl.push_back(read_buf); auto bliter = bl.cbegin(); decode(read_data, bliter); } int ret = memcmp(original_data.data, read_data.data, BUF_SIZE); ((RBMDevice*)&d)->close().unsafe_get(); device->stop().get(); ASSERT_TRUE(ret == 0); device.reset(nullptr); }); }
2,936
26.707547
78
cc
null
ceph-main/src/test/crimson/seastore/onode_tree/test_fltree_onode_manager.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- // vim: ts=8 sw=2 smarttab #include <boost/range/combine.hpp> #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "crimson/os/seastore/onode_manager/staged-fltree/fltree_onode_manager.h" #include "crimson/os/seastore/onode_manager/staged-fltree/tree_utils.h" using namespace crimson; using namespace crimson::os; using namespace crimson::os::seastore; using namespace crimson::os::seastore::onode; using CTransaction = ceph::os::Transaction; using namespace std; namespace { [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } } struct onode_item_t { uint32_t size; uint64_t id; uint64_t block_size; uint32_t cnt_modify = 0; void initialize(Transaction& t, Onode& value) const { auto& layout = value.get_mutable_layout(t); layout.size = size; layout.omap_root.update(omap_root_t(id, cnt_modify, value.get_metadata_hint(block_size))); validate(value); } void validate(Onode& value) const { auto& layout = value.get_layout(); ceph_assert(laddr_t(layout.size) == laddr_t{size}); ceph_assert(layout.omap_root.get(value.get_metadata_hint(block_size)).addr == id); ceph_assert(layout.omap_root.get(value.get_metadata_hint(block_size)).depth == cnt_modify); } void modify(Transaction& t, Onode& value) { validate(value); ++cnt_modify; initialize(t, value); } static onode_item_t create(std::size_t size, std::size_t id, uint64_t block_size) { ceph_assert(size <= std::numeric_limits<uint32_t>::max()); return {(uint32_t)size, id, block_size}; } }; struct fltree_onode_manager_test_t : public seastar_test_suite_t, TMTestState { using iterator_t = typename KVPool<onode_item_t>::iterator_t; FLTreeOnodeManagerRef manager; seastar::future<> set_up_fut() final { return tm_setup(); } seastar::future<> tear_down_fut() final { return tm_teardown(); } virtual seastar::future<> _init() final { return TMTestState::_init().then([this] { manager.reset(new FLTreeOnodeManager(*tm)); }); } virtual seastar::future<> _destroy() final { manager.reset(); return TMTestState::_destroy(); } virtual FuturizedStore::mkfs_ertr::future<> _mkfs() final { return TMTestState::_mkfs( ).safe_then([this] { return restart_fut(); }).safe_then([this] { return repeat_eagain([this] { return seastar::do_with( create_mutate_transaction(), [this](auto &ref_t) { return with_trans_intr(*ref_t, [&](auto &t) { return manager->mkfs(t ).si_then([this, &t] { return submit_transaction_fut2(t); }); }); }); }); }).handle_error( crimson::ct_error::assert_all{"Invalid error in _mkfs"} ); } template <typename F> void with_transaction(F&& f) { auto t = create_mutate_transaction(); std::invoke(f, *t); submit_transaction(std::move(t)); } template <typename F> void with_onode_write(iterator_t& it, F&& f) { with_transaction([this, &it, f=std::move(f)] (auto& t) { auto p_kv = *it; auto onode = with_trans_intr(t, [&](auto &t) { return manager->get_or_create_onode(t, p_kv->key); }).unsafe_get0(); std::invoke(f, t, *onode, p_kv->value); with_trans_intr(t, [&](auto &t) { return manager->write_dirty(t, {onode}); }).unsafe_get0(); }); } void validate_onode(iterator_t& it) { with_transaction([this, &it] (auto& t) { auto p_kv = *it; auto onode = with_trans_intr(t, [&](auto &t) { return manager->get_onode(t, p_kv->key); }).unsafe_get0(); p_kv->value.validate(*onode); }); } void validate_erased(iterator_t& it) { with_transaction([this, &it] (auto& t) { auto p_kv = *it; auto exist = with_trans_intr(t, [&](auto &t) { return manager->contains_onode(t, p_kv->key); }).unsafe_get0(); ceph_assert(exist == false); }); } template <typename F> void with_onodes_process( const iterator_t& start, const iterator_t& end, F&& f) { std::vector<ghobject_t> oids; std::vector<onode_item_t*> items; auto it = start; while(it != end) { auto p_kv = *it; oids.emplace_back(p_kv->key); items.emplace_back(&p_kv->value); ++it; } with_transaction([&oids, &items, f=std::move(f)] (auto& t) mutable { std::invoke(f, t, oids, items); }); } template <typename F> void with_onodes_write( const iterator_t& start, const iterator_t& end, F&& f) { with_onodes_process(start, end, [this, f=std::move(f)] (auto& t, auto& oids, auto& items) { auto onodes = with_trans_intr(t, [&](auto &t) { return manager->get_or_create_onodes(t, oids); }).unsafe_get0(); for (auto tup : boost::combine(onodes, items)) { OnodeRef onode; onode_item_t* p_item; boost::tie(onode, p_item) = tup; std::invoke(f, t, *onode, *p_item); } with_trans_intr(t, [&](auto &t) { return manager->write_dirty(t, onodes); }).unsafe_get0(); }); } void validate_onodes( const iterator_t& start, const iterator_t& end) { with_onodes_process(start, end, [this] (auto& t, auto& oids, auto& items) { for (auto tup : boost::combine(oids, items)) { ghobject_t oid; onode_item_t* p_item; boost::tie(oid, p_item) = tup; auto onode = with_trans_intr(t, [&](auto &t) { return manager->get_onode(t, oid); }).unsafe_get0(); p_item->validate(*onode); } }); } void validate_erased( const iterator_t& start, const iterator_t& end) { with_onodes_process(start, end, [this] (auto& t, auto& oids, auto& items) { for (auto& oid : oids) { auto exist = with_trans_intr(t, [&](auto &t) { return manager->contains_onode(t, oid); }).unsafe_get0(); ceph_assert(exist == false); } }); } static constexpr uint64_t LIST_LIMIT = 10; void validate_list_onodes(KVPool<onode_item_t>& pool) { with_onodes_process(pool.begin(), pool.end(), [this] (auto& t, auto& oids, auto& items) { std::vector<ghobject_t> listed_oids; auto start = ghobject_t(); auto end = ghobject_t::get_max(); assert(start < end); assert(start < oids[0]); assert(oids[0] < end); while (start != end) { auto [list_ret, list_end] = with_trans_intr(t, [&](auto &t) { return manager->list_onodes(t, start, end, LIST_LIMIT); }).unsafe_get0(); listed_oids.insert(listed_oids.end(), list_ret.begin(), list_ret.end()); start = list_end; } ceph_assert(oids.size() == listed_oids.size()); }); } fltree_onode_manager_test_t() {} }; TEST_F(fltree_onode_manager_test_t, 1_single) { run_async([this] { uint64_t block_size = tm->get_block_size(); auto pool = KVPool<onode_item_t>::create_range({0, 1}, {128, 256}, block_size); auto iter = pool.begin(); with_onode_write(iter, [](auto& t, auto& onode, auto& item) { item.initialize(t, onode); }); validate_onode(iter); with_onode_write(iter, [](auto& t, auto& onode, auto& item) { item.modify(t, onode); }); validate_onode(iter); validate_list_onodes(pool); with_onode_write(iter, [this](auto& t, auto& onode, auto& item) { OnodeRef onode_ref = &onode; with_trans_intr(t, [&](auto &t) { return manager->erase_onode(t, onode_ref); }).unsafe_get0(); }); validate_erased(iter); }); } TEST_F(fltree_onode_manager_test_t, 2_synthetic) { run_async([this] { uint64_t block_size = tm->get_block_size(); auto pool = KVPool<onode_item_t>::create_range( {0, 100}, {32, 64, 128, 256, 512}, block_size); auto start = pool.begin(); auto end = pool.end(); with_onodes_write(start, end, [](auto& t, auto& onode, auto& item) { item.initialize(t, onode); }); validate_onodes(start, end); validate_list_onodes(pool); auto rd_start = pool.random_begin(); auto rd_end = rd_start + 50; with_onodes_write(rd_start, rd_end, [](auto& t, auto& onode, auto& item) { item.modify(t, onode); }); validate_onodes(start, end); pool.shuffle(); rd_start = pool.random_begin(); rd_end = rd_start + 50; with_onodes_write(rd_start, rd_end, [](auto& t, auto& onode, auto& item) { item.modify(t, onode); }); validate_onodes(start, end); pool.shuffle(); rd_start = pool.random_begin(); rd_end = rd_start + 50; with_onodes_write(rd_start, rd_end, [this](auto& t, auto& onode, auto& item) { OnodeRef onode_ref = &onode; with_trans_intr(t, [&](auto &t) { return manager->erase_onode(t, onode_ref); }).unsafe_get0(); }); validate_erased(rd_start, rd_end); pool.erase_from_random(rd_start, rd_end); start = pool.begin(); end = pool.end(); validate_onodes(start, end); validate_list_onodes(pool); }); }
9,287
28.207547
95
cc
null
ceph-main/src/test/crimson/seastore/onode_tree/test_staged_fltree.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- // vim: ts=8 sw=2 smarttab #include <array> #include <cstring> #include <memory> #include <set> #include <sstream> #include <vector> #include "crimson/common/log.h" #include "crimson/os/seastore/onode_manager/staged-fltree/node.h" #include "crimson/os/seastore/onode_manager/staged-fltree/node_extent_manager/dummy.h" #include "crimson/os/seastore/onode_manager/staged-fltree/node_extent_manager/seastore.h" #include "crimson/os/seastore/onode_manager/staged-fltree/node_layout.h" #include "crimson/os/seastore/onode_manager/staged-fltree/tree.h" #include "crimson/os/seastore/onode_manager/staged-fltree/tree_utils.h" #include "test/crimson/gtest_seastar.h" #include "test/crimson/seastore/transaction_manager_test_state.h" #include "test_value.h" using namespace crimson::os::seastore::onode; #define INTR(fun, t) \ with_trans_intr( \ t, \ [&] (auto &tr) { \ return fun(tr); \ } \ ) #define INTR_R(fun, t, args...) \ with_trans_intr( \ t, \ [&] (auto &tr) { \ return fun(tr, args); \ } \ ) #define INTR_WITH_PARAM(fun, c, b, v) \ with_trans_intr( \ c.t, \ [=] (auto &t) { \ return fun(c, L_ADDR_MIN, b, v); \ } \ ) namespace { constexpr bool IS_DUMMY_SYNC = false; using DummyManager = DummyNodeExtentManager<IS_DUMMY_SYNC>; using UnboundedBtree = Btree<UnboundedValue>; [[maybe_unused]] seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } ghobject_t make_ghobj( shard_t shard, pool_t pool, crush_hash_t crush, std::string ns, std::string oid, snap_t snap, gen_t gen) { return ghobject_t{shard_id_t{shard}, pool, crush, ns, oid, snap, gen}; } // return a key_view_t and its underlying memory buffer. // the buffer needs to be freed manually. std::pair<key_view_t, void*> build_key_view(const ghobject_t& hobj) { key_hobj_t key_hobj(hobj); size_t key_size = sizeof(shard_pool_crush_t) + sizeof(snap_gen_t) + ns_oid_view_t::estimate_size(key_hobj); void* p_mem = std::malloc(key_size); key_view_t key_view; char* p_fill = (char*)p_mem + key_size; auto spc = shard_pool_crush_t::from_key(key_hobj); p_fill -= sizeof(shard_pool_crush_t); std::memcpy(p_fill, &spc, sizeof(shard_pool_crush_t)); key_view.set(*reinterpret_cast<const shard_pool_crush_t*>(p_fill)); auto p_ns_oid = p_fill; ns_oid_view_t::test_append(key_hobj, p_fill); ns_oid_view_t ns_oid_view(p_ns_oid); key_view.set(ns_oid_view); auto sg = snap_gen_t::from_key(key_hobj); p_fill -= sizeof(snap_gen_t); ceph_assert(p_fill == (char*)p_mem); std::memcpy(p_fill, &sg, sizeof(snap_gen_t)); key_view.set(*reinterpret_cast<const snap_gen_t*>(p_fill)); return {key_view, p_mem}; } } struct a_basic_test_t : public seastar_test_suite_t {}; TEST_F(a_basic_test_t, 1_basic_sizes) { logger().info("\n" "Bytes of struct:\n" " node_header_t: {}\n" " shard_pool_t: {}\n" " shard_pool_crush_t: {}\n" " crush_t: {}\n" " snap_gen_t: {}\n" " slot_0_t: {}\n" " slot_1_t: {}\n" " slot_3_t: {}\n" " node_fields_0_t: {}\n" " node_fields_1_t: {}\n" " node_fields_2_t: {}\n" " internal_fields_3_t: {}\n" " leaf_fields_3_t: {}\n" " internal_sub_item_t: {}", sizeof(node_header_t), sizeof(shard_pool_t), sizeof(shard_pool_crush_t), sizeof(crush_t), sizeof(snap_gen_t), sizeof(slot_0_t), sizeof(slot_1_t), sizeof(slot_3_t), sizeof(node_fields_0_t), sizeof(node_fields_1_t), sizeof(node_fields_2_t), sizeof(internal_fields_3_t), sizeof(leaf_fields_3_t), sizeof(internal_sub_item_t) ); auto hobj = make_ghobj(0, 0, 0, "n", "o", 0, 0); key_hobj_t key(hobj); auto [key_view, p_mem] = build_key_view(hobj); value_config_t value; value.payload_size = 8; #define _STAGE_T(NodeType) node_to_stage_t<typename NodeType::node_stage_t> #define NXT_T(StageType) staged<typename StageType::next_param_t> laddr_t i_value{0}; logger().info("\n" "Bytes of a key-value insertion (full-string):\n" " s-p-c, 'n'-'o', s-g => value_payload(8): typically internal 43B, leaf 59B\n" " InternalNode0: {} {} {}\n" " InternalNode1: {} {} {}\n" " InternalNode2: {} {}\n" " InternalNode3: {}\n" " LeafNode0: {} {} {}\n" " LeafNode1: {} {} {}\n" " LeafNode2: {} {}\n" " LeafNode3: {}", _STAGE_T(InternalNode0)::insert_size(key_view, i_value), NXT_T(_STAGE_T(InternalNode0))::insert_size(key_view, i_value), NXT_T(NXT_T(_STAGE_T(InternalNode0)))::insert_size(key_view, i_value), _STAGE_T(InternalNode1)::insert_size(key_view, i_value), NXT_T(_STAGE_T(InternalNode1))::insert_size(key_view, i_value), NXT_T(NXT_T(_STAGE_T(InternalNode1)))::insert_size(key_view, i_value), _STAGE_T(InternalNode2)::insert_size(key_view, i_value), NXT_T(_STAGE_T(InternalNode2))::insert_size(key_view, i_value), _STAGE_T(InternalNode3)::insert_size(key_view, i_value), _STAGE_T(LeafNode0)::insert_size(key, value), NXT_T(_STAGE_T(LeafNode0))::insert_size(key, value), NXT_T(NXT_T(_STAGE_T(LeafNode0)))::insert_size(key, value), _STAGE_T(LeafNode1)::insert_size(key, value), NXT_T(_STAGE_T(LeafNode1))::insert_size(key, value), NXT_T(NXT_T(_STAGE_T(LeafNode1)))::insert_size(key, value), _STAGE_T(LeafNode2)::insert_size(key, value), NXT_T(_STAGE_T(LeafNode2))::insert_size(key, value), _STAGE_T(LeafNode3)::insert_size(key, value) ); std::free(p_mem); } TEST_F(a_basic_test_t, 2_node_sizes) { run_async([] { auto nm = NodeExtentManager::create_dummy(IS_DUMMY_SYNC); auto t = make_test_transaction(); ValueBuilderImpl<UnboundedValue> vb; context_t c{*nm, vb, *t}; std::array<std::pair<NodeImplURef, NodeExtentMutable>, 16> nodes = { INTR_WITH_PARAM(InternalNode0::allocate, c, false, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode1::allocate, c, false, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode2::allocate, c, false, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode3::allocate, c, false, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode0::allocate, c, true, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode1::allocate, c, true, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode2::allocate, c, true, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(InternalNode3::allocate, c, true, 1u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode0::allocate, c, false, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode1::allocate, c, false, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode2::allocate, c, false, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode3::allocate, c, false, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode0::allocate, c, true, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode1::allocate, c, true, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode2::allocate, c, true, 0u).unsafe_get0().make_pair(), INTR_WITH_PARAM(LeafNode3::allocate, c, true, 0u).unsafe_get0().make_pair() }; std::ostringstream oss; oss << "\nallocated nodes:"; for (auto iter = nodes.begin(); iter != nodes.end(); ++iter) { oss << "\n "; auto& ref_node = iter->first; ref_node->dump_brief(oss); } logger().info("{}", oss.str()); }); } struct b_dummy_tree_test_t : public seastar_test_suite_t { TransactionRef ref_t; std::unique_ptr<UnboundedBtree> tree; b_dummy_tree_test_t() = default; seastar::future<> set_up_fut() override final { ref_t = make_test_transaction(); tree.reset( new UnboundedBtree(NodeExtentManager::create_dummy(IS_DUMMY_SYNC)) ); return INTR(tree->mkfs, *ref_t).handle_error( crimson::ct_error::all_same_way([] { ASSERT_FALSE("Unable to mkfs"); }) ); } seastar::future<> tear_down_fut() final { ref_t.reset(); tree.reset(); return seastar::now(); } }; TEST_F(b_dummy_tree_test_t, 3_random_insert_erase_leaf_node) { run_async([this] { logger().info("\n---------------------------------------------" "\nrandomized leaf node insert:\n"); auto key_s = ghobject_t(); auto key_e = ghobject_t::get_max(); ASSERT_TRUE(INTR_R(tree->find, *ref_t, key_s).unsafe_get0().is_end()); ASSERT_TRUE(INTR(tree->begin, *ref_t).unsafe_get0().is_end()); ASSERT_TRUE(INTR(tree->last, *ref_t).unsafe_get0().is_end()); std::map<ghobject_t, std::tuple<test_item_t, UnboundedBtree::Cursor>> insert_history; auto f_validate_insert_new = [this, &insert_history] ( const ghobject_t& key, const test_item_t& value) { auto conf = UnboundedBtree::tree_value_config_t{value.get_payload_size()}; auto [cursor, success] = INTR_R(tree->insert, *ref_t, key, conf).unsafe_get0(); initialize_cursor_from_item(*ref_t, key, value, cursor, success); insert_history.emplace(key, std::make_tuple(value, cursor)); auto cursor_ = INTR_R(tree->find, *ref_t, key).unsafe_get0(); ceph_assert(cursor_ != tree->end()); ceph_assert(cursor_.value() == cursor.value()); validate_cursor_from_item(key, value, cursor_); return cursor.value(); }; auto f_validate_erase = [this, &insert_history] (const ghobject_t& key) { auto cursor_erase = INTR_R(tree->find, *ref_t, key).unsafe_get0(); auto cursor_next = INTR(cursor_erase.get_next, *ref_t).unsafe_get0(); auto cursor_ret = INTR_R(tree->erase, *ref_t, cursor_erase).unsafe_get0(); ceph_assert(cursor_erase.is_end()); ceph_assert(cursor_ret == cursor_next); auto cursor_lb = INTR_R(tree->lower_bound, *ref_t, key).unsafe_get0(); ceph_assert(cursor_lb == cursor_next); auto it = insert_history.find(key); ceph_assert(std::get<1>(it->second).is_end()); insert_history.erase(it); }; auto f_insert_erase_insert = [&f_validate_insert_new, &f_validate_erase] ( const ghobject_t& key, const test_item_t& value) { f_validate_insert_new(key, value); f_validate_erase(key); return f_validate_insert_new(key, value); }; auto values = Values<test_item_t>(15); // insert key1, value1 at STAGE_LEFT auto key1 = make_ghobj(3, 3, 3, "ns3", "oid3", 3, 3); auto value1 = values.pick(); auto test_value1 = f_insert_erase_insert(key1, value1); // validate lookup { auto cursor1_s = INTR_R(tree->lower_bound, *ref_t, key_s).unsafe_get0(); ASSERT_EQ(cursor1_s.get_ghobj(), key1); ASSERT_EQ(cursor1_s.value(), test_value1); auto cursor1_e = INTR_R(tree->lower_bound, *ref_t, key_e).unsafe_get0(); ASSERT_TRUE(cursor1_e.is_end()); } // insert the same key1 with a different value { auto value1_dup = values.pick(); auto conf = UnboundedBtree::tree_value_config_t{value1_dup.get_payload_size()}; auto [cursor1_dup, ret1_dup] = INTR_R(tree->insert, *ref_t, key1, conf).unsafe_get0(); ASSERT_FALSE(ret1_dup); validate_cursor_from_item(key1, value1, cursor1_dup); } // insert key2, value2 to key1's left at STAGE_LEFT // insert node front at STAGE_LEFT auto key2 = make_ghobj(2, 2, 2, "ns3", "oid3", 3, 3); auto value2 = values.pick(); f_insert_erase_insert(key2, value2); // insert key3, value3 to key1's right at STAGE_LEFT // insert node last at STAGE_LEFT auto key3 = make_ghobj(4, 4, 4, "ns3", "oid3", 3, 3); auto value3 = values.pick(); f_insert_erase_insert(key3, value3); // insert key4, value4 to key1's left at STAGE_STRING (collision) auto key4 = make_ghobj(3, 3, 3, "ns2", "oid2", 3, 3); auto value4 = values.pick(); f_insert_erase_insert(key4, value4); // insert key5, value5 to key1's right at STAGE_STRING (collision) auto key5 = make_ghobj(3, 3, 3, "ns4", "oid4", 3, 3); auto value5 = values.pick(); f_insert_erase_insert(key5, value5); // insert key6, value6 to key1's left at STAGE_RIGHT auto key6 = make_ghobj(3, 3, 3, "ns3", "oid3", 2, 2); auto value6 = values.pick(); f_insert_erase_insert(key6, value6); // insert key7, value7 to key1's right at STAGE_RIGHT auto key7 = make_ghobj(3, 3, 3, "ns3", "oid3", 4, 4); auto value7 = values.pick(); f_insert_erase_insert(key7, value7); // insert node front at STAGE_RIGHT auto key8 = make_ghobj(2, 2, 2, "ns3", "oid3", 2, 2); auto value8 = values.pick(); f_insert_erase_insert(key8, value8); // insert node front at STAGE_STRING (collision) auto key9 = make_ghobj(2, 2, 2, "ns2", "oid2", 3, 3); auto value9 = values.pick(); f_insert_erase_insert(key9, value9); // insert node last at STAGE_RIGHT auto key10 = make_ghobj(4, 4, 4, "ns3", "oid3", 4, 4); auto value10 = values.pick(); f_insert_erase_insert(key10, value10); // insert node last at STAGE_STRING (collision) auto key11 = make_ghobj(4, 4, 4, "ns4", "oid4", 3, 3); auto value11 = values.pick(); f_insert_erase_insert(key11, value11); // insert key, value randomly until a perfect 3-ary tree is formed std::vector<std::pair<ghobject_t, test_item_t>> kvs{ {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2), values.pick()}, {make_ghobj(2, 2, 2, "ns2", "oid2", 4, 4), values.pick()}, {make_ghobj(2, 2, 2, "ns3", "oid3", 4, 4), values.pick()}, {make_ghobj(2, 2, 2, "ns4", "oid4", 2, 2), values.pick()}, {make_ghobj(2, 2, 2, "ns4", "oid4", 3, 3), values.pick()}, {make_ghobj(2, 2, 2, "ns4", "oid4", 4, 4), values.pick()}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2), values.pick()}, {make_ghobj(3, 3, 3, "ns2", "oid2", 4, 4), values.pick()}, {make_ghobj(3, 3, 3, "ns4", "oid4", 2, 2), values.pick()}, {make_ghobj(3, 3, 3, "ns4", "oid4", 4, 4), values.pick()}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2), values.pick()}, {make_ghobj(4, 4, 4, "ns2", "oid2", 3, 3), values.pick()}, {make_ghobj(4, 4, 4, "ns2", "oid2", 4, 4), values.pick()}, {make_ghobj(4, 4, 4, "ns3", "oid3", 2, 2), values.pick()}, {make_ghobj(4, 4, 4, "ns4", "oid4", 2, 2), values.pick()}, {make_ghobj(4, 4, 4, "ns4", "oid4", 4, 4), values.pick()}}; auto [smallest_key, smallest_value] = kvs[0]; auto [largest_key, largest_value] = kvs[kvs.size() - 1]; std::shuffle(kvs.begin(), kvs.end(), std::default_random_engine{}); std::for_each(kvs.begin(), kvs.end(), [&f_insert_erase_insert] (auto& kv) { f_insert_erase_insert(kv.first, kv.second); }); ASSERT_EQ(INTR(tree->height, *ref_t).unsafe_get0(), 1); ASSERT_FALSE(tree->test_is_clean()); for (auto& [k, val] : insert_history) { auto& [v, c] = val; // validate values in tree keep intact auto cursor = with_trans_intr(*ref_t, [this, &k=k](auto& tr) { return tree->find(tr, k); }).unsafe_get0(); EXPECT_NE(cursor, tree->end()); validate_cursor_from_item(k, v, cursor); // validate values in cursors keep intact validate_cursor_from_item(k, v, c); } { auto cursor = INTR_R(tree->lower_bound, *ref_t, key_s).unsafe_get0(); validate_cursor_from_item(smallest_key, smallest_value, cursor); } { auto cursor = INTR(tree->begin, *ref_t).unsafe_get0(); validate_cursor_from_item(smallest_key, smallest_value, cursor); } { auto cursor = INTR(tree->last, *ref_t).unsafe_get0(); validate_cursor_from_item(largest_key, largest_value, cursor); } // validate range query { kvs.clear(); for (auto& [k, val] : insert_history) { auto& [v, c] = val; kvs.emplace_back(k, v); } insert_history.clear(); std::sort(kvs.begin(), kvs.end(), [](auto& l, auto& r) { return l.first < r.first; }); auto cursor = INTR(tree->begin, *ref_t).unsafe_get0(); for (auto& [k, v] : kvs) { ASSERT_FALSE(cursor.is_end()); validate_cursor_from_item(k, v, cursor); cursor = INTR(cursor.get_next, *ref_t).unsafe_get0(); } ASSERT_TRUE(cursor.is_end()); } std::ostringstream oss; tree->dump(*ref_t, oss); logger().info("\n{}\n", oss.str()); // randomized erase until empty std::shuffle(kvs.begin(), kvs.end(), std::default_random_engine{}); for (auto& [k, v] : kvs) { auto e_size = with_trans_intr(*ref_t, [this, &k=k](auto& tr) { return tree->erase(tr, k); }).unsafe_get0(); ASSERT_EQ(e_size, 1); } auto cursor = INTR(tree->begin, *ref_t).unsafe_get0(); ASSERT_TRUE(cursor.is_end()); ASSERT_EQ(INTR(tree->height, *ref_t).unsafe_get0(), 1); }); } static std::set<ghobject_t> build_key_set( std::pair<unsigned, unsigned> range_2, std::pair<unsigned, unsigned> range_1, std::pair<unsigned, unsigned> range_0, std::string padding = "", bool is_internal = false) { ceph_assert(range_1.second <= 10); std::set<ghobject_t> ret; ghobject_t key; for (unsigned i = range_2.first; i < range_2.second; ++i) { for (unsigned j = range_1.first; j < range_1.second; ++j) { for (unsigned k = range_0.first; k < range_0.second; ++k) { std::ostringstream os_ns; os_ns << "ns" << j; std::ostringstream os_oid; os_oid << "oid" << j << padding; key = make_ghobj(i, i, i, os_ns.str(), os_oid.str(), k, k); ret.insert(key); } } } if (is_internal) { ret.insert(make_ghobj(9, 9, 9, "ns~last", "oid~last", 9, 9)); } return ret; } class TestTree { public: TestTree() : moved_nm{NodeExtentManager::create_dummy(IS_DUMMY_SYNC)}, ref_t{make_test_transaction()}, t{*ref_t}, c{*moved_nm, vb, t}, tree{std::move(moved_nm)}, values{0} {} seastar::future<> build_tree( std::pair<unsigned, unsigned> range_2, std::pair<unsigned, unsigned> range_1, std::pair<unsigned, unsigned> range_0, size_t value_size) { return seastar::async([this, range_2, range_1, range_0, value_size] { INTR(tree.mkfs, t).unsafe_get0(); //logger().info("\n---------------------------------------------" // "\nbefore leaf node split:\n"); auto keys = build_key_set(range_2, range_1, range_0); for (auto& key : keys) { auto value = values.create(value_size); insert_tree(key, value).get0(); } ASSERT_EQ(INTR(tree.height, t).unsafe_get0(), 1); ASSERT_FALSE(tree.test_is_clean()); //std::ostringstream oss; //tree.dump(t, oss); //logger().info("\n{}\n", oss.str()); }); } seastar::future<> build_tree( const std::vector<ghobject_t>& keys, const std::vector<test_item_t>& values) { return seastar::async([this, keys, values] { INTR(tree.mkfs, t).unsafe_get0(); //logger().info("\n---------------------------------------------" // "\nbefore leaf node split:\n"); ASSERT_EQ(keys.size(), values.size()); auto key_iter = keys.begin(); auto value_iter = values.begin(); while (key_iter != keys.end()) { insert_tree(*key_iter, *value_iter).get0(); ++key_iter; ++value_iter; } ASSERT_EQ(INTR(tree.height, t).unsafe_get0(), 1); ASSERT_FALSE(tree.test_is_clean()); //std::ostringstream oss; //tree.dump(t, oss); //logger().info("\n{}\n", oss.str()); }); } seastar::future<> split_merge( const ghobject_t& key, const test_item_t& value, const split_expectation_t& expected, std::optional<ghobject_t> next_key) { return seastar::async([this, key, value, expected, next_key] { // clone auto ref_dummy = NodeExtentManager::create_dummy(IS_DUMMY_SYNC); auto p_dummy = static_cast<DummyManager*>(ref_dummy.get()); UnboundedBtree tree_clone(std::move(ref_dummy)); auto ref_t_clone = make_test_transaction(); Transaction& t_clone = *ref_t_clone; INTR_R(tree_clone.test_clone_from, t_clone, t, tree).unsafe_get0(); // insert and split logger().info("\n\nINSERT-SPLIT {}:", key_hobj_t(key)); auto conf = UnboundedBtree::tree_value_config_t{value.get_payload_size()}; auto [cursor, success] = INTR_R(tree_clone.insert, t_clone, key, conf).unsafe_get0(); initialize_cursor_from_item(t, key, value, cursor, success); { std::ostringstream oss; tree_clone.dump(t_clone, oss); logger().info("dump new root:\n{}", oss.str()); } EXPECT_EQ(INTR(tree_clone.height, t_clone).unsafe_get0(), 2); for (auto& [k, val] : insert_history) { auto& [v, c] = val; auto result = with_trans_intr(t_clone, [&tree_clone, &k=k] (auto& tr) { return tree_clone.find(tr, k); }).unsafe_get0(); EXPECT_NE(result, tree_clone.end()); validate_cursor_from_item(k, v, result); } auto result = INTR_R(tree_clone.find, t_clone, key).unsafe_get0(); EXPECT_NE(result, tree_clone.end()); validate_cursor_from_item(key, value, result); EXPECT_TRUE(last_split.match(expected)); EXPECT_EQ(p_dummy->size(), 3); // erase and merge logger().info("\n\nERASE-MERGE {}:", key_hobj_t(key)); auto nxt_cursor = with_trans_intr(t_clone, [&cursor=cursor](auto& tr) { return cursor.erase<true>(tr); }).unsafe_get0(); { // track root again to dump auto begin = INTR(tree_clone.begin, t_clone).unsafe_get0(); std::ignore = begin; std::ostringstream oss; tree_clone.dump(t_clone, oss); logger().info("dump root:\n{}", oss.str()); } if (next_key.has_value()) { auto found = insert_history.find(*next_key); ceph_assert(found != insert_history.end()); validate_cursor_from_item( *next_key, std::get<0>(found->second), nxt_cursor); } else { EXPECT_TRUE(nxt_cursor.is_end()); } for (auto& [k, val] : insert_history) { auto& [v, c] = val; auto result = with_trans_intr(t_clone, [&tree_clone, &k=k](auto& tr) { return tree_clone.find(tr, k); }).unsafe_get0(); EXPECT_NE(result, tree_clone.end()); validate_cursor_from_item(k, v, result); } EXPECT_EQ(INTR(tree_clone.height, t_clone).unsafe_get0(), 1); EXPECT_EQ(p_dummy->size(), 1); }); } test_item_t create_value(size_t size) { return values.create(size); } private: seastar::future<> insert_tree(const ghobject_t& key, const test_item_t& value) { return seastar::async([this, &key, &value] { auto conf = UnboundedBtree::tree_value_config_t{value.get_payload_size()}; auto [cursor, success] = INTR_R(tree.insert, t, key, conf).unsafe_get0(); initialize_cursor_from_item(t, key, value, cursor, success); insert_history.emplace(key, std::make_tuple(value, cursor)); }); } NodeExtentManagerURef moved_nm; TransactionRef ref_t; Transaction& t; ValueBuilderImpl<UnboundedValue> vb; context_t c; UnboundedBtree tree; Values<test_item_t> values; std::map<ghobject_t, std::tuple<test_item_t, UnboundedBtree::Cursor>> insert_history; }; struct c_dummy_test_t : public seastar_test_suite_t {}; TEST_F(c_dummy_test_t, 4_split_merge_leaf_node) { run_async([] { { TestTree test; test.build_tree({2, 5}, {2, 5}, {2, 5}, 120).get0(); auto value = test.create_value(1144); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to left front at stage 2, 1, 0\n"); test.split_merge(make_ghobj(1, 1, 1, "ns3", "oid3", 3, 3), value, {2u, 2u, true, InsertType::BEGIN}, {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(2, 2, 2, "ns1", "oid1", 3, 3), value, {2u, 1u, true, InsertType::BEGIN}, {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(2, 2, 2, "ns2", "oid2", 1, 1), value, {2u, 0u, true, InsertType::BEGIN}, {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2)}).get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to left back at stage 0, 1, 2, 1, 0\n"); test.split_merge(make_ghobj(2, 2, 2, "ns4", "oid4", 5, 5), value, {2u, 0u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(2, 2, 2, "ns5", "oid5", 3, 3), value, {2u, 1u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(2, 3, 3, "ns3", "oid3", 3, 3), value, {2u, 2u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns1", "oid1", 3, 3), value, {2u, 1u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2", 1, 1), value, {2u, 0u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); auto value0 = test.create_value(1416); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to right front at stage 0, 1, 2, 1, 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4", 5, 5), value0, {2u, 0u, false, InsertType::BEGIN}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns5", "oid5", 3, 3), value0, {2u, 1u, false, InsertType::BEGIN}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 4, 4, "ns3", "oid3", 3, 3), value0, {2u, 2u, false, InsertType::BEGIN}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns1", "oid1", 3, 3), value0, {2u, 1u, false, InsertType::BEGIN}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns2", "oid2", 1, 1), value0, {2u, 0u, false, InsertType::BEGIN}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to right back at stage 0, 1, 2\n"); test.split_merge(make_ghobj(4, 4, 4, "ns4", "oid4", 5, 5), value0, {2u, 0u, false, InsertType::LAST}, std::nullopt).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns5", "oid5", 3, 3), value0, {2u, 1u, false, InsertType::LAST}, std::nullopt).get0(); test.split_merge(make_ghobj(5, 5, 5, "ns3", "oid3", 3, 3), value0, {2u, 2u, false, InsertType::LAST}, std::nullopt).get0(); auto value1 = test.create_value(316); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to left middle at stage 0, 1, 2, 1, 0\n"); test.split_merge(make_ghobj(2, 2, 2, "ns4", "oid4", 5, 5), value1, {1u, 0u, true, InsertType::MID}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(2, 2, 2, "ns5", "oid5", 3, 3), value1, {1u, 1u, true, InsertType::MID}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(2, 2, 3, "ns3", "oid3", 3, 3), value1, {1u, 2u, true, InsertType::MID}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns1", "oid1", 3, 3), value1, {1u, 1u, true, InsertType::MID}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2", 1, 1), value1, {1u, 0u, true, InsertType::MID}, {make_ghobj(3, 3, 3, "ns2", "oid2", 2, 2)}).get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to left back at stage 0, 1, 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2", 5, 5), value1, {1u, 0u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns3", "oid3", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns2", "oid3", 3, 3), value1, {1u, 1u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns3", "oid3", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns3", "oid3", 1, 1), value1, {1u, 0u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns3", "oid3", 2, 2)}).get0(); auto value2 = test.create_value(452); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to right front at stage 0, 1, 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns3", "oid3", 5, 5), value2, {1u, 0u, false, InsertType::BEGIN}, {make_ghobj(3, 3, 3, "ns4", "oid4", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns3", "oid4", 3, 3), value2, {1u, 1u, false, InsertType::BEGIN}, {make_ghobj(3, 3, 3, "ns4", "oid4", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4", 1, 1), value2, {1u, 0u, false, InsertType::BEGIN}, {make_ghobj(3, 3, 3, "ns4", "oid4", 2, 2)}).get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to right middle at stage 0, 1, 2, 1, 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4", 5, 5), value2, {1u, 0u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns5", "oid5", 3, 3), value2, {1u, 1u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 4, "ns3", "oid3", 3, 3), value2, {1u, 2u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns1", "oid1", 3, 3), value2, {1u, 1u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns2", "oid2", 1, 1), value2, {1u, 0u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); auto value3 = test.create_value(834); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to right middle at stage 0, 1, 2, 1, 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4", 5, 5), value3, {0u, 0u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 3, "ns5", "oid5", 3, 3), value3, {0u, 1u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(3, 3, 4, "ns3", "oid3", 3, 3), value3, {0u, 2u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns1", "oid1", 3, 3), value3, {0u, 1u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); test.split_merge(make_ghobj(4, 4, 4, "ns2", "oid2", 1, 1), value3, {0u, 0u, false, InsertType::MID}, {make_ghobj(4, 4, 4, "ns2", "oid2", 2, 2)}).get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to right front at stage 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4", 2, 3), value3, {0u, 0u, false, InsertType::BEGIN}, {make_ghobj(3, 3, 3, "ns4", "oid4", 3, 3)}).get0(); auto value4 = test.create_value(572); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to left back at stage 0\n"); test.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2", 3, 4), value4, {0u, 0u, true, InsertType::LAST}, {make_ghobj(3, 3, 3, "ns2", "oid2", 4, 4)}).get0(); } { TestTree test; test.build_tree({2, 4}, {2, 4}, {2, 4}, 232).get0(); auto value = test.create_value(1996); logger().info("\n---------------------------------------------" "\nsplit at [0, 0, 0]; insert to left front at stage 2, 1, 0\n"); test.split_merge(make_ghobj(1, 1, 1, "ns3", "oid3", 3, 3), value, {2u, 2u, true, InsertType::BEGIN}, {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2)}).get0(); EXPECT_TRUE(last_split.match_split_pos({0, {0, {0}}})); test.split_merge(make_ghobj(2, 2, 2, "ns1", "oid1", 3, 3), value, {2u, 1u, true, InsertType::BEGIN}, {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2)}).get0(); EXPECT_TRUE(last_split.match_split_pos({0, {0, {0}}})); test.split_merge(make_ghobj(2, 2, 2, "ns2", "oid2", 1, 1), value, {2u, 0u, true, InsertType::BEGIN}, {make_ghobj(2, 2, 2, "ns2", "oid2", 2, 2)}).get0(); EXPECT_TRUE(last_split.match_split_pos({0, {0, {0}}})); } { TestTree test; std::vector<ghobject_t> keys = { make_ghobj(2, 2, 2, "ns3", "oid3", 3, 3), make_ghobj(3, 3, 3, "ns3", "oid3", 3, 3)}; std::vector<test_item_t> values = { test.create_value(1360), test.create_value(1632)}; test.build_tree(keys, values).get0(); auto value = test.create_value(1640); logger().info("\n---------------------------------------------" "\nsplit at [END, END, END]; insert to right at stage 0, 1, 2\n"); test.split_merge(make_ghobj(3, 3, 3, "ns3", "oid3", 4, 4), value, {0u, 0u, false, InsertType::BEGIN}, std::nullopt).get0(); EXPECT_TRUE(last_split.match_split_pos({1, {0, {1}}})); test.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4", 3, 3), value, {1u, 1u, false, InsertType::BEGIN}, std::nullopt).get0(); EXPECT_TRUE(last_split.match_split_pos({1, {1, {0}}})); test.split_merge(make_ghobj(4, 4, 4, "ns3", "oid3", 3, 3), value, {2u, 2u, false, InsertType::BEGIN}, std::nullopt).get0(); EXPECT_TRUE(last_split.match_split_pos({2, {0, {0}}})); } }); } namespace crimson::os::seastore::onode { class DummyChildPool { class DummyChildImpl final : public NodeImpl { public: using URef = std::unique_ptr<DummyChildImpl>; DummyChildImpl(const std::set<ghobject_t>& keys, bool is_level_tail, laddr_t laddr) : keys{keys}, _is_level_tail{is_level_tail}, _laddr{laddr} { std::tie(key_view, p_mem_key_view) = build_key_view(*keys.crbegin()); build_name(); } ~DummyChildImpl() override { std::free(p_mem_key_view); } const std::set<ghobject_t>& get_keys() const { return keys; } void reset(const std::set<ghobject_t>& _keys, bool level_tail) { keys = _keys; _is_level_tail = level_tail; std::free(p_mem_key_view); std::tie(key_view, p_mem_key_view) = build_key_view(*keys.crbegin()); build_name(); } public: laddr_t laddr() const override { return _laddr; } bool is_level_tail() const override { return _is_level_tail; } std::optional<key_view_t> get_pivot_index() const override { return {key_view}; } bool is_extent_retired() const override { return _is_extent_retired; } const std::string& get_name() const override { return name; } search_position_t make_tail() override { _is_level_tail = true; build_name(); return search_position_t::end(); } eagain_ifuture<> retire_extent(context_t) override { assert(!_is_extent_retired); _is_extent_retired = true; return eagain_iertr::now(); } protected: node_type_t node_type() const override { return node_type_t::LEAF; } field_type_t field_type() const override { return field_type_t::N0; } const char* read() const override { ceph_abort("impossible path"); } extent_len_t get_node_size() const override { ceph_abort("impossible path"); } nextent_state_t get_extent_state() const override { ceph_abort("impossible path"); } level_t level() const override { return 0u; } void prepare_mutate(context_t) override { ceph_abort("impossible path"); } void validate_non_empty() const override { ceph_abort("impossible path"); } bool is_keys_empty() const override { ceph_abort("impossible path"); } bool has_single_value() const override { ceph_abort("impossible path"); } node_offset_t free_size() const override { ceph_abort("impossible path"); } extent_len_t total_size() const override { ceph_abort("impossible path"); } bool is_size_underflow() const override { ceph_abort("impossible path"); } std::tuple<match_stage_t, search_position_t> erase(const search_position_t&) override { ceph_abort("impossible path"); } std::tuple<match_stage_t, std::size_t> evaluate_merge(NodeImpl&) override { ceph_abort("impossible path"); } search_position_t merge(NodeExtentMutable&, NodeImpl&, match_stage_t, extent_len_t) override { ceph_abort("impossible path"); } eagain_ifuture<NodeExtentMutable> rebuild_extent(context_t) override { ceph_abort("impossible path"); } node_stats_t get_stats() const override { ceph_abort("impossible path"); } std::ostream& dump(std::ostream&) const override { ceph_abort("impossible path"); } std::ostream& dump_brief(std::ostream&) const override { ceph_abort("impossible path"); } void validate_layout() const override { ceph_abort("impossible path"); } void test_copy_to(NodeExtentMutable&) const override { ceph_abort("impossible path"); } void test_set_tail(NodeExtentMutable&) override { ceph_abort("impossible path"); } private: void build_name() { std::ostringstream sos; sos << "DummyNode" << "@0x" << std::hex << laddr() << std::dec << "Lv" << (unsigned)level() << (is_level_tail() ? "$" : "") << "(" << key_view << ")"; name = sos.str(); } std::set<ghobject_t> keys; bool _is_level_tail; laddr_t _laddr; std::string name; bool _is_extent_retired = false; key_view_t key_view; void* p_mem_key_view; }; class DummyChild final : public Node { public: ~DummyChild() override = default; key_view_t get_pivot_key() const { return *impl->get_pivot_index(); } eagain_ifuture<> populate_split( context_t c, std::set<Ref<DummyChild>>& splitable_nodes) { ceph_assert(can_split()); ceph_assert(splitable_nodes.find(this) != splitable_nodes.end()); size_t index; const auto& keys = impl->get_keys(); if (keys.size() == 2) { index = 1; } else { index = rd() % (keys.size() - 2) + 1; } auto iter = keys.begin(); std::advance(iter, index); std::set<ghobject_t> left_keys(keys.begin(), iter); std::set<ghobject_t> right_keys(iter, keys.end()); bool right_is_tail = impl->is_level_tail(); impl->reset(left_keys, false); auto right_child = DummyChild::create_new(right_keys, right_is_tail, pool); if (!can_split()) { splitable_nodes.erase(this); } if (right_child->can_split()) { splitable_nodes.insert(right_child); } Ref<Node> this_ref = this; return apply_split_to_parent( c, std::move(this_ref), std::move(right_child), false); } eagain_ifuture<> insert_and_split( context_t c, const ghobject_t& insert_key, std::set<Ref<DummyChild>>& splitable_nodes) { const auto& keys = impl->get_keys(); ceph_assert(keys.size() == 1); auto& key = *keys.begin(); ceph_assert(insert_key < key); std::set<ghobject_t> new_keys; new_keys.insert(insert_key); new_keys.insert(key); impl->reset(new_keys, impl->is_level_tail()); splitable_nodes.clear(); splitable_nodes.insert(this); auto fut = populate_split(c, splitable_nodes); ceph_assert(splitable_nodes.size() == 0); return fut; } eagain_ifuture<> merge(context_t c, Ref<DummyChild>&& this_ref) { return parent_info().ptr->get_child_peers(c, parent_info().position ).si_then([c, this_ref = std::move(this_ref), this] (auto lr_nodes) mutable { auto& [lnode, rnode] = lr_nodes; if (rnode) { lnode.reset(); Ref<DummyChild> r_dummy(static_cast<DummyChild*>(rnode.get())); rnode.reset(); pool.untrack_node(r_dummy); assert(r_dummy->use_count() == 1); return do_merge(c, std::move(this_ref), std::move(r_dummy), true); } else { ceph_assert(lnode); Ref<DummyChild> l_dummy(static_cast<DummyChild*>(lnode.get())); pool.untrack_node(this_ref); assert(this_ref->use_count() == 1); return do_merge(c, std::move(l_dummy), std::move(this_ref), false); } }); } eagain_ifuture<> fix_key(context_t c, const ghobject_t& new_key) { const auto& keys = impl->get_keys(); ceph_assert(keys.size() == 1); assert(impl->is_level_tail() == false); std::set<ghobject_t> new_keys; new_keys.insert(new_key); impl->reset(new_keys, impl->is_level_tail()); Ref<Node> this_ref = this; return fix_parent_index<true>(c, std::move(this_ref), false); } bool match_pos(const search_position_t& pos) const { ceph_assert(!is_root()); return pos == parent_info().position; } static Ref<DummyChild> create( const std::set<ghobject_t>& keys, bool is_level_tail, laddr_t addr, DummyChildPool& pool) { auto ref_impl = std::make_unique<DummyChildImpl>(keys, is_level_tail, addr); return new DummyChild(ref_impl.get(), std::move(ref_impl), pool); } static Ref<DummyChild> create_new( const std::set<ghobject_t>& keys, bool is_level_tail, DummyChildPool& pool) { static laddr_t seed = 0; return create(keys, is_level_tail, seed++, pool); } static eagain_ifuture<Ref<DummyChild>> create_initial( context_t c, const std::set<ghobject_t>& keys, DummyChildPool& pool, RootNodeTracker& root_tracker) { auto initial = create_new(keys, true, pool); return c.nm.get_super(c.t, root_tracker ).handle_error_interruptible( eagain_iertr::pass_further{}, crimson::ct_error::assert_all{"Invalid error during create_initial()"} ).si_then([c, initial](auto super) { initial->make_root_new(c, std::move(super)); return initial->upgrade_root(c, L_ADDR_MIN).si_then([initial] { return initial; }); }); } protected: eagain_ifuture<> test_clone_non_root( context_t, Ref<InternalNode> new_parent) const override { ceph_assert(!is_root()); auto p_pool_clone = pool.pool_clone_in_progress; ceph_assert(p_pool_clone != nullptr); auto clone = create( impl->get_keys(), impl->is_level_tail(), impl->laddr(), *p_pool_clone); clone->as_child(parent_info().position, new_parent); return eagain_iertr::now(); } eagain_ifuture<Ref<tree_cursor_t>> lookup_smallest(context_t) override { ceph_abort("impossible path"); } eagain_ifuture<Ref<tree_cursor_t>> lookup_largest(context_t) override { ceph_abort("impossible path"); } eagain_ifuture<> test_clone_root(context_t, RootNodeTracker&) const override { ceph_abort("impossible path"); } eagain_ifuture<search_result_t> lower_bound_tracked( context_t, const key_hobj_t&, MatchHistory&) override { ceph_abort("impossible path"); } eagain_ifuture<> do_get_tree_stats(context_t, tree_stats_t&) override { ceph_abort("impossible path"); } bool is_tracking() const override { return false; } void track_merge(Ref<Node>, match_stage_t, search_position_t&) override { ceph_abort("impossible path"); } private: DummyChild(DummyChildImpl* impl, DummyChildImpl::URef&& ref, DummyChildPool& pool) : Node(std::move(ref)), impl{impl}, pool{pool} { pool.track_node(this); } bool can_split() const { return impl->get_keys().size() > 1; } static eagain_ifuture<> do_merge( context_t c, Ref<DummyChild>&& left, Ref<DummyChild>&& right, bool stole_key) { assert(right->use_count() == 1); assert(left->impl->get_keys().size() == 1); assert(right->impl->get_keys().size() == 1); bool left_is_tail = right->impl->is_level_tail(); const std::set<ghobject_t>* p_keys; if (stole_key) { p_keys = &right->impl->get_keys(); } else { p_keys = &left->impl->get_keys(); } left->impl->reset(*p_keys, left_is_tail); auto left_addr = left->impl->laddr(); return left->parent_info().ptr->apply_children_merge<true>( c, std::move(left), left_addr, std::move(right), !stole_key); } DummyChildImpl* impl; DummyChildPool& pool; mutable std::random_device rd; }; public: DummyChildPool() = default; ~DummyChildPool() { reset(); } auto build_tree(const std::set<ghobject_t>& keys) { reset(); // create tree auto ref_dummy = NodeExtentManager::create_dummy(IS_DUMMY_SYNC); p_dummy = static_cast<DummyManager*>(ref_dummy.get()); p_btree.emplace(std::move(ref_dummy)); return with_trans_intr(get_context().t, [this, &keys] (auto &tr) { return DummyChild::create_initial(get_context(), keys, *this, *p_btree->root_tracker ).si_then([this](auto initial_child) { // split splitable_nodes.insert(initial_child); return trans_intr::repeat([this] () -> eagain_ifuture<seastar::stop_iteration> { if (splitable_nodes.empty()) { return seastar::make_ready_future<seastar::stop_iteration>( seastar::stop_iteration::yes); } auto index = rd() % splitable_nodes.size(); auto iter = splitable_nodes.begin(); std::advance(iter, index); Ref<DummyChild> child = *iter; return child->populate_split(get_context(), splitable_nodes ).si_then([] { return seastar::stop_iteration::no; }); }); }).si_then([this] { //std::ostringstream oss; //p_btree->dump(t(), oss); //logger().info("\n{}\n", oss.str()); return p_btree->height(t()); }).si_then([](auto height) { ceph_assert(height == 2); }); }); } seastar::future<> split_merge(ghobject_t key, search_position_t pos, const split_expectation_t& expected) { return seastar::async([this, key, pos, expected] { DummyChildPool pool_clone; clone_to(pool_clone); // insert and split logger().info("\n\nINSERT-SPLIT {} at pos({}):", key_hobj_t(key), pos); auto node_to_split = pool_clone.get_node_by_pos(pos); with_trans_intr(pool_clone.get_context().t, [&] (auto &t) { return node_to_split->insert_and_split( pool_clone.get_context(), key, pool_clone.splitable_nodes); }).unsafe_get0(); { std::ostringstream oss; pool_clone.p_btree->dump(pool_clone.t(), oss); logger().info("dump new root:\n{}", oss.str()); } auto &pt = pool_clone.t(); EXPECT_EQ(INTR(pool_clone.p_btree->height, pt).unsafe_get0(), 3); EXPECT_TRUE(last_split.match(expected)); EXPECT_EQ(pool_clone.p_dummy->size(), 3); // erase and merge [[maybe_unused]] auto pivot_key = node_to_split->get_pivot_key(); logger().info("\n\nERASE-MERGE {}:", node_to_split->get_name()); assert(pivot_key == key_hobj_t(key)); with_trans_intr(pool_clone.get_context().t, [&] (auto &t) { return node_to_split->merge( pool_clone.get_context(), std::move(node_to_split)); }).unsafe_get0(); auto &pt2 = pool_clone.t(); EXPECT_EQ(INTR(pool_clone.p_btree->height ,pt2).unsafe_get0(), 2); EXPECT_EQ(pool_clone.p_dummy->size(), 1); }); } seastar::future<> fix_index( ghobject_t new_key, search_position_t pos, bool expect_split) { return seastar::async([this, new_key, pos, expect_split] { DummyChildPool pool_clone; clone_to(pool_clone); // fix auto node_to_fix = pool_clone.get_node_by_pos(pos); auto old_key = node_to_fix->get_pivot_key().to_ghobj(); logger().info("\n\nFIX pos({}) from {} to {}, expect_split={}:", pos, node_to_fix->get_name(), key_hobj_t(new_key), expect_split); with_trans_intr(pool_clone.get_context().t, [&] (auto &t) { return node_to_fix->fix_key(pool_clone.get_context(), new_key); }).unsafe_get0(); if (expect_split) { std::ostringstream oss; pool_clone.p_btree->dump(pool_clone.t(), oss); logger().info("dump new root:\n{}", oss.str()); auto &pt = pool_clone.t(); EXPECT_EQ(INTR(pool_clone.p_btree->height, pt).unsafe_get0(), 3); EXPECT_EQ(pool_clone.p_dummy->size(), 3); } else { auto &pt = pool_clone.t(); EXPECT_EQ(INTR(pool_clone.p_btree->height, pt).unsafe_get0(), 2); EXPECT_EQ(pool_clone.p_dummy->size(), 1); } // fix back logger().info("\n\nFIX pos({}) from {} back to {}:", pos, node_to_fix->get_name(), key_hobj_t(old_key)); with_trans_intr(pool_clone.get_context().t, [&] (auto &t) { return node_to_fix->fix_key(pool_clone.get_context(), old_key); }).unsafe_get0(); auto &pt = pool_clone.t(); EXPECT_EQ(INTR(pool_clone.p_btree->height, pt).unsafe_get0(), 2); EXPECT_EQ(pool_clone.p_dummy->size(), 1); }); } private: void clone_to(DummyChildPool& pool_clone) { pool_clone_in_progress = &pool_clone; auto ref_dummy = NodeExtentManager::create_dummy(IS_DUMMY_SYNC); pool_clone.p_dummy = static_cast<DummyManager*>(ref_dummy.get()); pool_clone.p_btree.emplace(std::move(ref_dummy)); auto &pt = pool_clone.t(); [[maybe_unused]] auto &tr = t(); INTR_R(pool_clone.p_btree->test_clone_from, pt, tr, *p_btree).unsafe_get0(); pool_clone_in_progress = nullptr; } void reset() { ceph_assert(pool_clone_in_progress == nullptr); if (tracked_children.size()) { ceph_assert(!p_btree->test_is_clean()); tracked_children.clear(); ceph_assert(p_btree->test_is_clean()); p_dummy = nullptr; p_btree.reset(); } else { ceph_assert(!p_btree.has_value()); } splitable_nodes.clear(); } void track_node(Ref<DummyChild> node) { ceph_assert(tracked_children.find(node) == tracked_children.end()); tracked_children.insert(node); } void untrack_node(Ref<DummyChild> node) { auto ret = tracked_children.erase(node); ceph_assert(ret == 1); } Ref<DummyChild> get_node_by_pos(const search_position_t& pos) const { auto iter = std::find_if( tracked_children.begin(), tracked_children.end(), [&pos](auto& child) { return child->match_pos(pos); }); ceph_assert(iter != tracked_children.end()); return *iter; } context_t get_context() { ceph_assert(p_dummy != nullptr); return {*p_dummy, vb, t()}; } Transaction& t() const { return *ref_t; } std::set<Ref<DummyChild>> tracked_children; std::optional<UnboundedBtree> p_btree; DummyManager* p_dummy = nullptr; ValueBuilderImpl<UnboundedValue> vb; TransactionRef ref_t = make_test_transaction(); std::random_device rd; std::set<Ref<DummyChild>> splitable_nodes; DummyChildPool* pool_clone_in_progress = nullptr; }; } TEST_F(c_dummy_test_t, 5_split_merge_internal_node) { run_async([] { DummyChildPool pool; { logger().info("\n---------------------------------------------" "\nbefore internal node insert:\n"); auto padding = std::string(250, '_'); auto keys = build_key_set({2, 6}, {2, 5}, {2, 5}, padding, true); keys.erase(make_ghobj(2, 2, 2, "ns2", "oid2" + padding, 2, 2)); keys.erase(make_ghobj(2, 2, 2, "ns2", "oid2" + padding, 3, 3)); keys.erase(make_ghobj(2, 2, 2, "ns2", "oid2" + padding, 4, 4)); keys.erase(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 2, 2)); keys.erase(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 3, 3)); keys.erase(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 4, 4)); auto padding_s = std::string(257, '_'); keys.insert(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 2, 2)); keys.insert(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 3, 3)); keys.insert(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 4, 4)); auto padding_e = std::string(247, '_'); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding_e, 2, 2)); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding_e, 3, 3)); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding_e, 4, 4)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to right front at stage 0, 1, 2, 1, 0\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4" + padding, 5, 5), {2, {0, {0}}}, {2u, 0u, false, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns5", "oid5", 3, 3), {2, {0, {0}}}, {2u, 1u, false, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(3, 4, 4, "ns3", "oid3", 3, 3), {2, {0, {0}}}, {2u, 2u, false, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(4, 4, 4, "ns1", "oid1", 3, 3), {2, {0, {0}}}, {2u, 1u, false, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(4, 4, 4, "ns2", "oid2" + padding, 1, 1), {2, {0, {0}}}, {2u, 0u, false, InsertType::BEGIN}).get(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to right middle at stage 0, 1, 2, 1, 0\n"); pool.split_merge(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 5, 5), {3, {0, {0}}}, {2u, 0u, false, InsertType::MID}).get(); pool.split_merge(make_ghobj(4, 4, 4, "ns5", "oid5", 3, 3), {3, {0, {0}}}, {2u, 1u, false, InsertType::MID}).get(); pool.split_merge(make_ghobj(4, 4, 5, "ns3", "oid3", 3, 3), {3, {0, {0}}}, {2u, 2u, false, InsertType::MID}).get(); pool.split_merge(make_ghobj(5, 5, 5, "ns1", "oid1", 3, 3), {3, {0, {0}}}, {2u, 1u, false, InsertType::MID}).get(); pool.split_merge(make_ghobj(5, 5, 5, "ns2", "oid2" + padding, 1, 1), {3, {0, {0}}}, {2u, 0u, false, InsertType::MID}).get(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to right back at stage 0, 1, 2\n"); pool.split_merge(make_ghobj(5, 5, 5, "ns4", "oid4" + padding_e, 5, 5), search_position_t::end() , {2u, 0u, false, InsertType::LAST}).get(); pool.split_merge(make_ghobj(5, 5, 5, "ns5", "oid5", 3, 3), search_position_t::end(), {2u, 1u, false, InsertType::LAST}).get(); pool.split_merge(make_ghobj(6, 6, 6, "ns3", "oid3", 3, 3), search_position_t::end(), {2u, 2u, false, InsertType::LAST}).get(); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to left front at stage 2, 1, 0\n"); pool.split_merge(make_ghobj(1, 1, 1, "ns3", "oid3", 3, 3), {0, {0, {0}}}, {0u, 2u, true, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(2, 2, 2, "ns1", "oid1", 3, 3), {0, {0, {0}}}, {0u, 1u, true, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 1, 1), {0, {0, {0}}}, {0u, 0u, true, InsertType::BEGIN}).get(); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to left middle at stage 0, 1, 2, 1, 0\n"); pool.split_merge(make_ghobj(2, 2, 2, "ns4", "oid4" + padding, 5, 5), {1, {0, {0}}}, {0u, 0u, true, InsertType::MID}).get(); pool.split_merge(make_ghobj(2, 2, 2, "ns5", "oid5", 3, 3), {1, {0, {0}}}, {0u, 1u, true, InsertType::MID}).get(); pool.split_merge(make_ghobj(2, 2, 3, "ns3", "oid3" + std::string(80, '_'), 3, 3), {1, {0, {0}}} , {0u, 2u, true, InsertType::MID}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns1", "oid1", 3, 3), {1, {0, {0}}}, {0u, 1u, true, InsertType::MID}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2" + padding, 1, 1), {1, {0, {0}}}, {0u, 0u, true, InsertType::MID}).get(); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to left back at stage 0\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4" + padding, 3, 4), {1, {2, {2}}}, {0u, 0u, true, InsertType::LAST}).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (1):\n"); auto padding = std::string(244, '_'); auto keys = build_key_set({2, 6}, {2, 5}, {2, 5}, padding, true); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 5, 5)); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 6, 6)); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 7, 7)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to left back at stage 0, 1, 2, 1\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns4", "oid4" + padding, 5, 5), {2, {0, {0}}}, {2u, 0u, true, InsertType::LAST}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns5", "oid5", 3, 3), {2, {0, {0}}}, {2u, 1u, true, InsertType::LAST}).get(); pool.split_merge(make_ghobj(3, 4, 4, "n", "o", 3, 3), {2, {0, {0}}}, {2u, 2u, true, InsertType::LAST}).get(); pool.split_merge(make_ghobj(4, 4, 4, "n", "o", 3, 3), {2, {0, {0}}}, {2u, 1u, true, InsertType::LAST}).get(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to left middle at stage 2\n"); pool.split_merge(make_ghobj(2, 3, 3, "n", "o", 3, 3), {1, {0, {0}}}, {2u, 2u, true, InsertType::MID}).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (2):\n"); auto padding = std::string(243, '_'); auto keys = build_key_set({2, 6}, {2, 5}, {2, 5}, padding, true); keys.insert(make_ghobj(4, 4, 4, "n", "o", 3, 3)); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 5, 5)); keys.insert(make_ghobj(5, 5, 5, "ns4", "oid4" + padding, 6, 6)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 2; insert to left back at stage (0, 1, 2, 1,) 0\n"); pool.split_merge(make_ghobj(4, 4, 4, "n", "o", 2, 2), {2, {0, {0}}}, {2u, 0u, true, InsertType::LAST}).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (3):\n"); auto padding = std::string(419, '_'); auto keys = build_key_set({2, 5}, {2, 5}, {2, 5}, padding, true); keys.erase(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 2, 2)); keys.erase(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 3, 3)); keys.erase(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 4, 4)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to right front at stage 0, 1, 0\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2" + padding, 5, 5), {1, {1, {0}}}, {1u, 0u, false, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns2", "oid3", 3, 3), {1, {1, {0}}}, {1u, 1u, false, InsertType::BEGIN}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns3", "oid3" + padding, 1, 1), {1, {1, {0}}}, {1u, 0u, false, InsertType::BEGIN}).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (4):\n"); auto padding = std::string(361, '_'); auto keys = build_key_set({2, 5}, {2, 5}, {2, 5}, padding, true); keys.erase(make_ghobj(2, 2, 2, "ns2", "oid2" + padding, 2, 2)); keys.erase(make_ghobj(2, 2, 2, "ns2", "oid2" + padding, 3, 3)); keys.erase(make_ghobj(2, 2, 2, "ns2", "oid2" + padding, 4, 4)); auto padding_s = std::string(386, '_'); keys.insert(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 2, 2)); keys.insert(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 3, 3)); keys.insert(make_ghobj(2, 2, 2, "ns2", "oid2" + padding_s, 4, 4)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to left back at stage 0, 1\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns2", "oid2" + padding, 5, 5), {1, {1, {0}}}, {1u, 0u, true, InsertType::LAST}).get(); pool.split_merge(make_ghobj(3, 3, 3, "ns2", "oid3", 3, 3), {1, {1, {0}}}, {1u, 1u, true, InsertType::LAST}).get(); logger().info("\n---------------------------------------------" "\nfix end index from stage 0 to 0, 1, 2\n"); auto padding1 = std::string(400, '_'); pool.fix_index(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 5, 5), {2, {2, {2}}}, false).get(); pool.fix_index(make_ghobj(4, 4, 4, "ns5", "oid5" + padding1, 3, 3), {2, {2, {2}}}, true).get(); pool.fix_index(make_ghobj(5, 5, 5, "ns3", "oid3" + padding1, 3, 3), {2, {2, {2}}}, true).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (5):\n"); auto padding = std::string(412, '_'); auto keys = build_key_set({2, 5}, {2, 5}, {2, 5}, padding); keys.insert(make_ghobj(3, 3, 3, "ns2", "oid3", 3, 3)); keys.insert(make_ghobj(4, 4, 4, "ns3", "oid3" + padding, 5, 5)); keys.insert(make_ghobj(9, 9, 9, "ns~last", "oid~last", 9, 9)); keys.erase(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 2, 2)); keys.erase(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 3, 3)); keys.erase(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 4, 4)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 1; insert to left back at stage (0, 1,) 0\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns2", "oid3", 2, 2), {1, {1, {0}}}, {1u, 0u, true, InsertType::LAST}).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (6):\n"); auto padding = std::string(328, '_'); auto keys = build_key_set({2, 5}, {2, 5}, {2, 5}, padding); keys.insert(make_ghobj(5, 5, 5, "ns3", "oid3" + std::string(270, '_'), 3, 3)); keys.insert(make_ghobj(9, 9, 9, "ns~last", "oid~last", 9, 9)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nsplit at stage 0; insert to right front at stage 0\n"); pool.split_merge(make_ghobj(3, 3, 3, "ns3", "oid3" + padding, 2, 3), {1, {1, {1}}}, {0u, 0u, false, InsertType::BEGIN}).get(); logger().info("\n---------------------------------------------" "\nfix end index from stage 2 to 0, 1, 2\n"); auto padding1 = std::string(400, '_'); pool.fix_index(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 5, 5), {3, {0, {0}}}, false).get(); pool.fix_index(make_ghobj(4, 4, 4, "ns5", "oid5" + padding1, 3, 3), {3, {0, {0}}}, true).get(); pool.fix_index(make_ghobj(5, 5, 5, "ns4", "oid4" + padding1, 3, 3), {3, {0, {0}}}, true).get(); } { logger().info("\n---------------------------------------------" "\nbefore internal node insert (7):\n"); auto padding = std::string(323, '_'); auto keys = build_key_set({2, 5}, {2, 5}, {2, 5}, padding); keys.insert(make_ghobj(4, 4, 4, "ns5", "oid5" + padding, 3, 3)); keys.insert(make_ghobj(9, 9, 9, "ns~last", "oid~last", 9, 9)); pool.build_tree(keys).unsafe_get0(); logger().info("\n---------------------------------------------" "\nfix end index from stage 1 to 0, 1, 2\n"); auto padding1 = std::string(400, '_'); pool.fix_index(make_ghobj(4, 4, 4, "ns4", "oid4" + padding, 5, 5), {2, {3, {0}}}, false).get(); pool.fix_index(make_ghobj(4, 4, 4, "ns6", "oid6" + padding1, 3, 3), {2, {3, {0}}}, true).get(); pool.fix_index(make_ghobj(5, 5, 5, "ns3", "oid3" + padding1, 3, 3), {2, {3, {0}}}, true).get(); } // Impossible to split at {0, 0, 0} // Impossible to split at [END, END, END] }); } struct d_seastore_tm_test_t : public seastar_test_suite_t, TMTestState { seastar::future<> set_up_fut() override final { return tm_setup(); } seastar::future<> tear_down_fut() override final { return tm_teardown(); } }; TEST_F(d_seastore_tm_test_t, 6_random_tree_insert_erase) { run_async([this] { constexpr bool TEST_SEASTORE = true; constexpr bool TRACK_CURSORS = true; auto kvs = KVPool<test_item_t>::create_raw_range( {8, 11, 64, 256, 301, 320}, {8, 11, 64, 256, 301, 320}, {8, 16, 128, 512, 576, 640}, {0, 16}, {0, 10}, {0, 4}); auto moved_nm = (TEST_SEASTORE ? NodeExtentManager::create_seastore(*tm) : NodeExtentManager::create_dummy(IS_DUMMY_SYNC)); auto p_nm = moved_nm.get(); auto tree = std::make_unique<TreeBuilder<TRACK_CURSORS, BoundedValue>>( kvs, std::move(moved_nm)); { auto t = create_mutate_transaction(); INTR(tree->bootstrap, *t).unsafe_get(); submit_transaction(std::move(t)); } // test insert { auto t = create_mutate_transaction(); INTR(tree->insert, *t).unsafe_get(); submit_transaction(std::move(t)); } { auto t = create_read_transaction(); INTR(tree->get_stats, *t).unsafe_get(); } if constexpr (TEST_SEASTORE) { restart(); tree->reload(NodeExtentManager::create_seastore(*tm)); } { // Note: create_weak_transaction() can also work, but too slow. auto t = create_read_transaction(); INTR(tree->validate, *t).unsafe_get(); } // test erase 3/4 { auto t = create_mutate_transaction(); auto size = kvs.size() / 4 * 3; INTR_R(tree->erase, *t, size).unsafe_get(); submit_transaction(std::move(t)); } { auto t = create_read_transaction(); INTR(tree->get_stats, *t).unsafe_get(); } if constexpr (TEST_SEASTORE) { restart(); tree->reload(NodeExtentManager::create_seastore(*tm)); } { auto t = create_read_transaction(); INTR(tree->validate, *t).unsafe_get(); } // test erase remaining { auto t = create_mutate_transaction(); auto size = kvs.size(); INTR_R(tree->erase, *t, size).unsafe_get(); submit_transaction(std::move(t)); } { auto t = create_read_transaction(); INTR(tree->get_stats, *t).unsafe_get(); } if constexpr (TEST_SEASTORE) { restart(); tree->reload(NodeExtentManager::create_seastore(*tm)); } { auto t = create_read_transaction(); INTR(tree->validate, *t).unsafe_get(); EXPECT_EQ(INTR(tree->height, *t).unsafe_get0(), 1); } if constexpr (!TEST_SEASTORE) { auto p_dummy = static_cast<DummyManager*>(p_nm); EXPECT_EQ(p_dummy->size(), 1); } tree.reset(); }); } TEST_F(d_seastore_tm_test_t, 7_tree_insert_erase_eagain) { run_async([this] { constexpr double EAGAIN_PROBABILITY = 0.1; constexpr bool TRACK_CURSORS = false; auto kvs = KVPool<test_item_t>::create_raw_range( {8, 11, 64, 128, 255, 256}, {8, 13, 64, 512, 2035, 2048}, {8, 16, 128, 576, 992, 1200}, {0, 8}, {0, 10}, {0, 4}); auto moved_nm = NodeExtentManager::create_seastore( *tm, L_ADDR_MIN, EAGAIN_PROBABILITY); auto p_nm = static_cast<SeastoreNodeExtentManager<true>*>(moved_nm.get()); auto tree = std::make_unique<TreeBuilder<TRACK_CURSORS, ExtendedValue>>( kvs, std::move(moved_nm)); unsigned num_ops = 0; unsigned num_ops_eagain = 0; // bootstrap ++num_ops; repeat_eagain([this, &tree, &num_ops_eagain] { ++num_ops_eagain; return seastar::do_with( create_mutate_transaction(), [this, &tree](auto &t) { return INTR(tree->bootstrap, *t ).safe_then([this, &t] { return submit_transaction_fut(*t); }); }); }).unsafe_get0(); epm->run_background_work_until_halt().get0(); // insert logger().warn("start inserting {} kvs ...", kvs.size()); { auto iter = kvs.random_begin(); while (iter != kvs.random_end()) { ++num_ops; repeat_eagain([this, &tree, &num_ops_eagain, &iter] { ++num_ops_eagain; return seastar::do_with( create_mutate_transaction(), [this, &tree, &iter](auto &t) { return INTR_R(tree->insert_one, *t, iter ).safe_then([this, &t](auto cursor) { cursor.invalidate(); return submit_transaction_fut(*t); }); }); }).unsafe_get0(); epm->run_background_work_until_halt().get0(); ++iter; } } { p_nm->set_generate_eagain(false); auto t = create_read_transaction(); INTR(tree->get_stats, *t).unsafe_get0(); p_nm->set_generate_eagain(true); } // lookup logger().warn("start lookup {} kvs ...", kvs.size()); { auto iter = kvs.begin(); while (iter != kvs.end()) { ++num_ops; repeat_eagain([this, &tree, &num_ops_eagain, &iter] { ++num_ops_eagain; auto t = create_read_transaction(); return INTR_R(tree->validate_one, *t, iter ).safe_then([t=std::move(t)]{}); }).unsafe_get0(); ++iter; } } // erase logger().warn("start erase {} kvs ...", kvs.size()); { kvs.shuffle(); auto iter = kvs.random_begin(); while (iter != kvs.random_end()) { ++num_ops; repeat_eagain([this, &tree, &num_ops_eagain, &iter] { ++num_ops_eagain; return seastar::do_with( create_mutate_transaction(), [this, &tree, &iter](auto &t) { return INTR_R(tree->erase_one, *t, iter ).safe_then([this, &t] () mutable { return submit_transaction_fut(*t); }); }); }).unsafe_get0(); epm->run_background_work_until_halt().get0(); ++iter; } kvs.erase_from_random(kvs.random_begin(), kvs.random_end()); } { p_nm->set_generate_eagain(false); auto t = create_read_transaction(); INTR(tree->get_stats, *t).unsafe_get0(); INTR(tree->validate, *t).unsafe_get0(); EXPECT_EQ(INTR(tree->height,*t).unsafe_get0(), 1); } // we can adjust EAGAIN_PROBABILITY to get a proper eagain_rate double eagain_rate = num_ops_eagain; eagain_rate /= num_ops; logger().info("eagain rate: {}", eagain_rate); tree.reset(); }); }
74,510
40.766256
103
cc
null
ceph-main/src/test/crimson/seastore/onode_tree/test_value.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:nil -*- // vim: ts=8 sw=2 smarttab #pragma once #include <fmt/format.h> #include "crimson/common/log.h" #include "crimson/os/seastore/onode_manager/staged-fltree/value.h" namespace crimson::os::seastore::onode { struct test_item_t { using id_t = uint16_t; using magic_t = uint32_t; value_size_t size; id_t id; magic_t magic; value_size_t get_payload_size() const { assert(size > sizeof(value_header_t)); return static_cast<value_size_t>(size - sizeof(value_header_t)); } static test_item_t create(std::size_t _size, std::size_t _id) { ceph_assert(_size <= std::numeric_limits<value_size_t>::max()); ceph_assert(_size > sizeof(value_header_t)); value_size_t size = _size; ceph_assert(_id <= std::numeric_limits<id_t>::max()); id_t id = _id; return {size, id, (magic_t)id * 137}; } }; inline std::ostream& operator<<(std::ostream& os, const test_item_t& item) { return os << "TestItem(#" << item.id << ", " << item.size << "B)"; } enum class delta_op_t : uint8_t { UPDATE_ID, UPDATE_TAIL_MAGIC, }; inline std::ostream& operator<<(std::ostream& os, const delta_op_t op) { switch (op) { case delta_op_t::UPDATE_ID: return os << "update_id"; case delta_op_t::UPDATE_TAIL_MAGIC: return os << "update_tail_magic"; default: return os << "unknown"; } } } // namespace crimson::os::seastore::onode #if FMT_VERSION >= 90000 template<> struct fmt::formatter<crimson::os::seastore::onode::delta_op_t> : fmt::ostream_formatter {}; #endif namespace crimson::os::seastore::onode { template <value_magic_t MAGIC, string_size_t MAX_NS_SIZE, string_size_t MAX_OID_SIZE, value_size_t MAX_VALUE_PAYLOAD_SIZE, extent_len_t INTERNAL_NODE_SIZE, extent_len_t LEAF_NODE_SIZE, bool DO_SPLIT_CHECK> class TestValue final : public Value { public: static constexpr tree_conf_t TREE_CONF = { MAGIC, MAX_NS_SIZE, MAX_OID_SIZE, MAX_VALUE_PAYLOAD_SIZE, INTERNAL_NODE_SIZE, LEAF_NODE_SIZE, DO_SPLIT_CHECK }; using id_t = test_item_t::id_t; using magic_t = test_item_t::magic_t; struct magic_packed_t { magic_t value; } __attribute__((packed)); private: struct payload_t { id_t id; } __attribute__((packed)); struct Replayable { static void set_id(NodeExtentMutable& payload_mut, id_t id) { auto p_payload = get_write(payload_mut); p_payload->id = id; } static void set_tail_magic(NodeExtentMutable& payload_mut, magic_t magic) { auto length = payload_mut.get_length(); auto offset_magic = length - sizeof(magic_t); payload_mut.copy_in_relative(offset_magic, magic); } private: static payload_t* get_write(NodeExtentMutable& payload_mut) { return reinterpret_cast<payload_t*>(payload_mut.get_write()); } }; public: class Recorder final : public ValueDeltaRecorder { public: Recorder(ceph::bufferlist& encoded) : ValueDeltaRecorder(encoded) {} ~Recorder() override = default; void encode_set_id(NodeExtentMutable& payload_mut, id_t id) { auto& encoded = get_encoded(payload_mut); ceph::encode(delta_op_t::UPDATE_ID, encoded); ceph::encode(id, encoded); } void encode_set_tail_magic(NodeExtentMutable& payload_mut, magic_t magic) { auto& encoded = get_encoded(payload_mut); ceph::encode(delta_op_t::UPDATE_TAIL_MAGIC, encoded); ceph::encode(magic, encoded); } protected: value_magic_t get_header_magic() const override { return TREE_CONF.value_magic; } void apply_value_delta(ceph::bufferlist::const_iterator& delta, NodeExtentMutable& payload_mut, laddr_t value_addr) override { delta_op_t op; try { ceph::decode(op, delta); switch (op) { case delta_op_t::UPDATE_ID: { logger().debug("OTree::TestValue::Replay: decoding UPDATE_ID ..."); id_t id; ceph::decode(id, delta); logger().debug("OTree::TestValue::Replay: apply id={} ...", id); Replayable::set_id(payload_mut, id); break; } case delta_op_t::UPDATE_TAIL_MAGIC: { logger().debug("OTree::TestValue::Replay: decoding UPDATE_TAIL_MAGIC ..."); magic_t magic; ceph::decode(magic, delta); logger().debug("OTree::TestValue::Replay: apply magic={} ...", magic); Replayable::set_tail_magic(payload_mut, magic); break; } default: logger().error("OTree::TestValue::Replay: got unknown op {} when replay {:#x}+{:#x}", op, value_addr, payload_mut.get_length()); ceph_abort(); } } catch (buffer::error& e) { logger().error("OTree::TestValue::Replay: got decode error {} when replay {:#x}+{:#x}", e.what(), value_addr, payload_mut.get_length()); ceph_abort(); } } private: seastar::logger& logger() { return crimson::get_logger(ceph_subsys_test); } }; TestValue(NodeExtentManager& nm, const ValueBuilder& vb, Ref<tree_cursor_t>& p_cursor) : Value(nm, vb, p_cursor) {} ~TestValue() override = default; id_t get_id() const { return read_payload<payload_t>()->id; } void set_id_replayable(Transaction& t, id_t id) { auto value_mutable = prepare_mutate_payload<payload_t, Recorder>(t); if (value_mutable.second) { value_mutable.second->encode_set_id(value_mutable.first, id); } Replayable::set_id(value_mutable.first, id); } magic_t get_tail_magic() const { auto p_payload = read_payload<payload_t>(); auto offset_magic = get_payload_size() - sizeof(magic_t); auto p_magic = reinterpret_cast<const char*>(p_payload) + offset_magic; return reinterpret_cast<const magic_packed_t*>(p_magic)->value; } void set_tail_magic_replayable(Transaction& t, magic_t magic) { auto value_mutable = prepare_mutate_payload<payload_t, Recorder>(t); if (value_mutable.second) { value_mutable.second->encode_set_tail_magic(value_mutable.first, magic); } Replayable::set_tail_magic(value_mutable.first, magic); } /* * tree_util.h related interfaces */ using item_t = test_item_t; void initialize(Transaction& t, const item_t& item) { ceph_assert(get_payload_size() + sizeof(value_header_t) == item.size); set_id_replayable(t, item.id); set_tail_magic_replayable(t, item.magic); } void validate(const item_t& item) const { ceph_assert(get_payload_size() + sizeof(value_header_t) == item.size); ceph_assert(get_id() == item.id); ceph_assert(get_tail_magic() == item.magic); } }; using UnboundedValue = TestValue< value_magic_t::TEST_UNBOUND, 4096, 4096, 4096, 4096, 4096, false>; using BoundedValue = TestValue< value_magic_t::TEST_BOUNDED, 320, 320, 640, 4096, 4096, true>; // should be the same configuration with FLTreeOnode using ExtendedValue = TestValue< value_magic_t::TEST_EXTENDED, 256, 2048, 1200, 8192, 16384, true>; } #if FMT_VERSION >= 90000 template<> struct fmt::formatter<crimson::os::seastore::onode::test_item_t> : fmt::ostream_formatter {}; #endif
7,324
29.394191
103
h
null
ceph-main/src/test/crush/CrushWrapper.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Library Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library Public License for more details. * */ #include <iostream> #include <gtest/gtest.h> #include "common/ceph_argparse.h" #include "common/common_init.h" #include "include/stringify.h" #include "include/Context.h" #include "osd/osd_types.h" #include "crush/CrushWrapper.h" using namespace std; class CrushWrapperTest : public ::testing::Test { public: void SetUp() final { CephInitParameters params(CEPH_ENTITY_TYPE_CLIENT); cct = common_preinit(params, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); cct->_conf.set_val("debug_crush", "0"); } void TearDown() final { cct->put(); cct = nullptr; } protected: CephContext *cct = nullptr; }; TEST_F(CrushWrapperTest, get_immediate_parent) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 1; c->set_type_name(ROOT_TYPE, "root"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); int item = 0; pair <string,string> loc; int ret; loc = c->get_immediate_parent(item, &ret); EXPECT_EQ(-ENOENT, ret); { map<string,string> loc; loc["root"] = "default"; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd.0", loc)); } loc = c->get_immediate_parent(item, &ret); EXPECT_EQ(0, ret); EXPECT_EQ("root", loc.first); EXPECT_EQ("default", loc.second); } TEST_F(CrushWrapperTest, move_bucket) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int root0; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &root0)); EXPECT_EQ(0, c->set_item_name(root0, "root0")); { map<string,string> loc; loc["root"] = "root0"; loc["host"] = "host0"; int item = 0; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd.0", loc)); } int host0 = c->get_item_id("host0"); int root1; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &root1)); EXPECT_EQ(0, c->set_item_name(root1, "root1")); map<string,string> loc; loc["root"] = "root1"; // 0 is not a valid bucket number, must be negative EXPECT_EQ(-EINVAL, c->move_bucket(cct, 0, loc)); // -100 is not an existing bucket EXPECT_EQ(-ENOENT, c->move_bucket(cct, -100, loc)); // move host0 from root0 to root1 { pair <string,string> loc; int ret; loc = c->get_immediate_parent(host0, &ret); EXPECT_EQ(0, ret); EXPECT_EQ("root", loc.first); EXPECT_EQ("root0", loc.second); } EXPECT_EQ(0, c->move_bucket(cct, host0, loc)); { pair <string,string> loc; int ret; loc = c->get_immediate_parent(host0, &ret); EXPECT_EQ(0, ret); EXPECT_EQ("root", loc.first); EXPECT_EQ("root1", loc.second); } } TEST_F(CrushWrapperTest, swap_bucket) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int root; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW2, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &root)); EXPECT_EQ(0, c->set_item_name(root, "root")); int a, b; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW2, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &a)); EXPECT_EQ(0, c->set_item_name(a, "a")); EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW2, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &b)); EXPECT_EQ(0, c->set_item_name(b, "b")); { map<string,string> loc; loc["root"] = "root"; EXPECT_EQ(0, c->move_bucket(cct, a, loc)); } { map<string,string> loc; loc["root"] = "root"; loc["host"] = "a"; EXPECT_EQ(0, c->insert_item(cct, 0, 1.0, "osd.0", loc)); EXPECT_EQ(0, c->insert_item(cct, 1, 1.0, "osd.1", loc)); EXPECT_EQ(0, c->insert_item(cct, 2, 1.0, "osd.2", loc)); } { map<string,string> loc; loc["host"] = "b"; EXPECT_EQ(0, c->insert_item(cct, 3, 1.0, "osd.3", loc)); } ASSERT_EQ(0x30000, c->get_item_weight(a)); ASSERT_EQ(string("a"), c->get_item_name(a)); ASSERT_EQ(0x10000, c->get_item_weight(b)); ASSERT_EQ(string("b"), c->get_item_name(b)); ASSERT_EQ(a, c->get_bucket_item(root, 0)); ASSERT_EQ(0, c->get_bucket_item(a, 0)); ASSERT_EQ(1, c->get_bucket_item(a, 1)); ASSERT_EQ(2, c->get_bucket_item(a, 2)); ASSERT_EQ(3, c->get_bucket_item(b, 0)); // check if it can swap parent with child ASSERT_EQ(-EINVAL, c->swap_bucket(cct, root, a)); c->swap_bucket(cct, a, b); ASSERT_EQ(0x30000, c->get_item_weight(b)); ASSERT_EQ(string("a"), c->get_item_name(b)); ASSERT_EQ(0x10000, c->get_item_weight(a)); ASSERT_EQ(string("b"), c->get_item_name(a)); ASSERT_EQ(a, c->get_bucket_item(root, 0)); ASSERT_EQ(0, c->get_bucket_item(b, 0)); ASSERT_EQ(1, c->get_bucket_item(b, 1)); ASSERT_EQ(2, c->get_bucket_item(b, 2)); ASSERT_EQ(3, c->get_bucket_item(a, 0)); } TEST_F(CrushWrapperTest, rename_bucket_or_item) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int root0; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &root0)); EXPECT_EQ(0, c->set_item_name(root0, "root0")); int item = 0; { map<string,string> loc; loc["root"] = "root0"; loc["host"] = "host0"; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd.0", loc)); } item++; { map<string,string> loc; loc["root"] = "root0"; loc["host"] = "host1"; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd.1", loc)); } stringstream ss; EXPECT_EQ(-EINVAL, c->can_rename_item("host0", "????", &ss)); EXPECT_EQ(-EINVAL, c->rename_item("host0", "????", &ss)); EXPECT_EQ(-EINVAL, c->can_rename_bucket("host0", "????", &ss)); EXPECT_EQ(-EINVAL, c->rename_bucket("host0", "????", &ss)); EXPECT_EQ(-EEXIST, c->can_rename_item("host0", "host1", &ss)); EXPECT_EQ(-EEXIST, c->rename_item("host0", "host1", &ss)); EXPECT_EQ(-EEXIST, c->can_rename_bucket("host0", "host1", &ss)); EXPECT_EQ(-EEXIST, c->rename_bucket("host0", "host1", &ss)); EXPECT_EQ(-EALREADY, c->can_rename_item("gone", "host1", &ss)); EXPECT_EQ(-EALREADY, c->rename_item("gone", "host1", &ss)); EXPECT_EQ(-EALREADY, c->can_rename_bucket("gone", "host1", &ss)); EXPECT_EQ(-EALREADY, c->rename_bucket("gone", "host1", &ss)); EXPECT_EQ(-ENOENT, c->can_rename_item("doesnotexist", "somethingelse", &ss)); EXPECT_EQ(-ENOENT, c->rename_item("doesnotexist", "somethingelse", &ss)); EXPECT_EQ(-ENOENT, c->can_rename_bucket("doesnotexist", "somethingelse", &ss)); EXPECT_EQ(-ENOENT, c->rename_bucket("doesnotexist", "somethingelse", &ss)); EXPECT_EQ(-ENOTDIR, c->can_rename_bucket("osd.1", "somethingelse", &ss)); EXPECT_EQ(-ENOTDIR, c->rename_bucket("osd.1", "somethingelse", &ss)); int host0id = c->get_item_id("host0"); EXPECT_EQ(0, c->rename_bucket("host0", "host0renamed", &ss)); EXPECT_EQ(host0id, c->get_item_id("host0renamed")); int osd0id = c->get_item_id("osd0"); EXPECT_EQ(0, c->rename_item("osd.0", "osd0renamed", &ss)); EXPECT_EQ(osd0id, c->get_item_id("osd0renamed")); } TEST_F(CrushWrapperTest, check_item_loc) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); int item = 0; float expected_weight = 1.0; // fail if loc is empty { float weight; map<string,string> loc; EXPECT_FALSE(c->check_item_loc(cct, item, loc, &weight)); } const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); // fail because the item is not found at the specified location { float weight; map<string,string> loc; loc["root"] = "default"; EXPECT_FALSE(c->check_item_loc(cct, item, loc, &weight)); } // fail because the bucket name does not match an existing bucket { float weight; map<string,string> loc; loc["root"] = "default"; const string HOST("host0"); loc["host"] = HOST; EXPECT_FALSE(c->check_item_loc(cct, item, loc, &weight)); } const string OSD("osd.0"); { map<string,string> loc; loc["root"] = "default"; EXPECT_EQ(0, c->insert_item(cct, item, expected_weight, OSD, loc)); } // fail because osd.0 is not a bucket and must not be in loc, in // addition to being of the wrong type { float weight; map<string,string> loc; loc["root"] = "osd.0"; EXPECT_FALSE(c->check_item_loc(cct, item, loc, &weight)); } // succeed and retrieves the expected weight { float weight; map<string,string> loc; loc["root"] = "default"; EXPECT_TRUE(c->check_item_loc(cct, item, loc, &weight)); EXPECT_EQ(expected_weight, weight); } } TEST_F(CrushWrapperTest, update_item) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); const string HOST0("host0"); int host0; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &host0); c->set_item_name(host0, HOST0); const string HOST1("host1"); int host1; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &host1); c->set_item_name(host1, HOST1); int item = 0; // fail if invalid names anywhere in loc { map<string,string> loc; loc["rack"] = "\001"; EXPECT_EQ(-EINVAL, c->update_item(cct, item, 1.0, "osd." + stringify(item), loc)); } // fail if invalid item name { map<string,string> loc; EXPECT_EQ(-EINVAL, c->update_item(cct, item, 1.0, "\005", loc)); } const string OSD0("osd.0"); const string OSD1("osd.1"); float original_weight = 1.0; float modified_weight = 2.0; float weight; map<string,string> loc; loc["root"] = "default"; loc["host"] = HOST0; EXPECT_GE(0.0, c->get_item_weightf(host0)); EXPECT_EQ(0, c->insert_item(cct, item, original_weight, OSD0, loc)); // updating nothing changes nothing EXPECT_EQ(OSD0, c->get_item_name(item)); EXPECT_EQ(original_weight, c->get_item_weightf(item)); EXPECT_TRUE(c->check_item_loc(cct, item, loc, &weight)); EXPECT_EQ(0, c->update_item(cct, item, original_weight, OSD0, loc)); EXPECT_EQ(OSD0, c->get_item_name(item)); EXPECT_EQ(original_weight, c->get_item_weightf(item)); EXPECT_TRUE(c->check_item_loc(cct, item, loc, &weight)); // update the name and weight of the item but not the location EXPECT_EQ(OSD0, c->get_item_name(item)); EXPECT_EQ(original_weight, c->get_item_weightf(item)); EXPECT_TRUE(c->check_item_loc(cct, item, loc, &weight)); EXPECT_EQ(1, c->update_item(cct, item, modified_weight, OSD1, loc)); EXPECT_EQ(OSD1, c->get_item_name(item)); EXPECT_EQ(modified_weight, c->get_item_weightf(item)); EXPECT_TRUE(c->check_item_loc(cct, item, loc, &weight)); c->set_item_name(item, OSD0); c->adjust_item_weightf(cct, item, original_weight); // update the name and weight of the item and change its location map<string,string> other_loc; other_loc["root"] = "default"; other_loc["host"] = HOST1; EXPECT_EQ(OSD0, c->get_item_name(item)); EXPECT_EQ(original_weight, c->get_item_weightf(item)); EXPECT_TRUE(c->check_item_loc(cct, item, loc, &weight)); EXPECT_FALSE(c->check_item_loc(cct, item, other_loc, &weight)); EXPECT_EQ(1, c->update_item(cct, item, modified_weight, OSD1, other_loc)); EXPECT_EQ(OSD1, c->get_item_name(item)); EXPECT_EQ(modified_weight, c->get_item_weightf(item)); EXPECT_FALSE(c->check_item_loc(cct, item, loc, &weight)); EXPECT_TRUE(c->check_item_loc(cct, item, other_loc, &weight)); } TEST_F(CrushWrapperTest, adjust_item_weight) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); const string HOST0("host0"); int host0; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &host0); c->set_item_name(host0, HOST0); const string FAKE("fake"); int hostfake; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &hostfake); c->set_item_name(hostfake, FAKE); int item = 0; // construct crush map { map<string,string> loc; loc["host"] = "host0"; float host_weight = 2.0; int bucket_id = 0; item = 0; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); item = 1; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); bucket_id = c->get_item_id("host0"); EXPECT_EQ(true, c->bucket_exists(bucket_id)); EXPECT_EQ(host_weight, c->get_bucket_weightf(bucket_id)); map<string,string> bloc; bloc["root"] = "default"; EXPECT_EQ(0, c->insert_item(cct, host0, host_weight, HOST0, bloc)); } { map<string,string> loc; loc["host"] = "fake"; float host_weight = 2.0; int bucket_id = 0; item = 0; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); item = 1; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); bucket_id = c->get_item_id("fake"); EXPECT_EQ(true, c->bucket_exists(bucket_id)); EXPECT_EQ(host_weight, c->get_bucket_weightf(bucket_id)); map<string,string> bloc; bloc["root"] = "default"; EXPECT_EQ(0, c->insert_item(cct, hostfake, host_weight, FAKE, bloc)); } // // When there is: // // default --> host0 --> osd.0 1.0 // | | // | +-> osd.1 1.0 // | // +-> fake --> osd.0 1.0 // | // +-> osd.1 1.0 // // Trying to adjust osd.0 weight to 2.0 in all buckets // Trying to adjust osd.1 weight to 2.0 in host=fake // // So the crush map will be: // // default --> host0 --> osd.0 2.0 // | | // | +-> osd.1 1.0 // | // +-> fake --> osd.0 2.0 // | // +-> osd.1 2.0 // float original_weight = 1.0; float modified_weight = 2.0; map<string,string> loc_one, loc_two; loc_one["host"] = "host0"; loc_two["host"] = "fake"; item = 0; EXPECT_EQ(2, c->adjust_item_weightf(cct, item, modified_weight)); EXPECT_EQ(modified_weight, c->get_item_weightf_in_loc(item, loc_one)); EXPECT_EQ(modified_weight, c->get_item_weightf_in_loc(item, loc_two)); item = 1; EXPECT_EQ(1, c->adjust_item_weightf_in_loc(cct, item, modified_weight, loc_two)); EXPECT_EQ(original_weight, c->get_item_weightf_in_loc(item, loc_one)); EXPECT_EQ(modified_weight, c->get_item_weightf_in_loc(item, loc_two)); } TEST_F(CrushWrapperTest, adjust_subtree_weight) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); const string HOST0("host0"); int host0; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &host0); c->set_item_name(host0, HOST0); const string FAKE("fake"); int hostfake; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &hostfake); c->set_item_name(hostfake, FAKE); int item = 0; // construct crush map { map<string,string> loc; loc["host"] = "host0"; float host_weight = 2.0; int bucket_id = 0; item = 0; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); item = 1; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); bucket_id = c->get_item_id("host0"); EXPECT_EQ(true, c->bucket_exists(bucket_id)); EXPECT_EQ(host_weight, c->get_bucket_weightf(bucket_id)); map<string,string> bloc; bloc["root"] = "default"; EXPECT_EQ(0, c->insert_item(cct, host0, host_weight, HOST0, bloc)); } { map<string,string> loc; loc["host"] = "fake"; float host_weight = 2.0; int bucket_id = 0; item = 0; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); item = 1; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); bucket_id = c->get_item_id("fake"); EXPECT_EQ(true, c->bucket_exists(bucket_id)); EXPECT_EQ(host_weight, c->get_bucket_weightf(bucket_id)); map<string,string> bloc; bloc["root"] = "default"; EXPECT_EQ(0, c->insert_item(cct, hostfake, host_weight, FAKE, bloc)); } //cout << "--------before---------" << std::endl; //c->dump_tree(&cout, NULL); ASSERT_EQ(c->get_bucket_weight(host0), 131072); ASSERT_EQ(c->get_bucket_weight(rootno), 262144); int r = c->adjust_subtree_weightf(cct, host0, 2.0); ASSERT_EQ(r, 2); // 2 items changed //cout << "--------after---------" << std::endl; //c->dump_tree(&cout, NULL); ASSERT_EQ(c->get_bucket_weight(host0), 262144); ASSERT_EQ(c->get_item_weight(host0), 262144); ASSERT_EQ(c->get_bucket_weight(rootno), 262144 + 131072); } TEST_F(CrushWrapperTest, insert_item) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); int item = 0; // invalid names anywhere in loc trigger an error { map<string,string> loc; loc["host"] = "\001"; EXPECT_EQ(-EINVAL, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } // insert an item in an existing bucket { map<string,string> loc; loc["root"] = "default"; item++; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); int another_item = item + 1; EXPECT_EQ(-EEXIST, c->insert_item(cct, another_item, 1.0, "osd." + stringify(item), loc)); } // implicit creation of a bucket { string name = "NAME"; map<string,string> loc; loc["root"] = "default"; loc["host"] = name; item++; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } // adding to an existing item name that is not associated with a bucket { string name = "ITEM_WITHOUT_BUCKET"; map<string,string> loc; loc["root"] = "default"; loc["host"] = name; item++; c->set_item_name(item, name); item++; EXPECT_EQ(-EINVAL, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } // // When there is: // // default --> host0 --> item // // Trying to insert the same item higher in the hirarchy will fail // because it would create a loop. // // default --> host0 --> item // | // +-> item // { item++; { map<string,string> loc; loc["root"] = "default"; loc["host"] = "host0"; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } { map<string,string> loc; loc["root"] = "default"; EXPECT_EQ(-EINVAL, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } } // // When there is: // // default --> host0 // // Trying to insert default under host0 must fail // because it would create a loop. // // default --> host0 --> default // { map<string,string> loc; loc["host"] = "host0"; EXPECT_EQ(-ELOOP, c->insert_item(cct, rootno, 1.0, "default", loc)); } // fail when mapping a bucket to the wrong type { // create an OSD bucket int osdno; int r = c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 10, 0, NULL, NULL, &osdno); ASSERT_EQ(0, r); c->set_item_name(osdno, "myosd"); map<string,string> loc; loc["root"] = "default"; // wrongfully pretend the osd is of type host loc["host"] = "myosd"; item++; EXPECT_EQ(-EINVAL, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } // fail when no location { map<string,string> loc; item++; EXPECT_EQ(-EINVAL, c->insert_item(cct, item, 1.0, "osd." + stringify(item), loc)); } } TEST_F(CrushWrapperTest, remove_item) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); { int root; ASSERT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &root)); c->set_item_name(root, "root0"); } { int host; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, HOST_TYPE, 0, NULL, NULL, &host); c->set_item_name(host, "host0"); } const int num_osd = 12; { map<string, string> loc = {{"root", "root0"}, {"host", "host0"}}; string name{"osd."}; for (int item = 0; item < num_osd; item++) { ASSERT_EQ(0, c->insert_item(cct, item, 1.0, name + to_string(item), loc)); } } const int item_to_remove = num_osd / 2; map<string, string> loc; loc.insert(c->get_immediate_parent(item_to_remove)); ASSERT_EQ(0, c->remove_item(cct, item_to_remove, true)); float weight; EXPECT_FALSE(c->check_item_loc(cct, item_to_remove, loc, &weight)); } TEST_F(CrushWrapperTest, item_bucket_names) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); int index = 123; string name = "NAME"; EXPECT_EQ(-EINVAL, c->set_item_name(index, "\001")); EXPECT_EQ(0, c->set_item_name(index, name)); EXPECT_TRUE(c->name_exists(name)); EXPECT_TRUE(c->item_exists(index)); EXPECT_EQ(index, c->get_item_id(name)); EXPECT_EQ(name, c->get_item_name(index)); } TEST_F(CrushWrapperTest, bucket_types) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); int index = 123; string name = "NAME"; c->set_type_name(index, name); EXPECT_EQ(1, c->get_num_type_names()); EXPECT_EQ(index, c->get_type_id(name)); EXPECT_EQ(name, c->get_type_name(index)); } TEST_F(CrushWrapperTest, is_valid_crush_name) { EXPECT_TRUE(CrushWrapper::is_valid_crush_name("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012456789-_")); EXPECT_FALSE(CrushWrapper::is_valid_crush_name("")); EXPECT_FALSE(CrushWrapper::is_valid_crush_name("\001")); } TEST_F(CrushWrapperTest, is_valid_crush_loc) { map<string,string> loc; EXPECT_TRUE(CrushWrapper::is_valid_crush_loc(cct, loc)); loc["good"] = "better"; EXPECT_TRUE(CrushWrapper::is_valid_crush_loc(cct, loc)); { map<string,string> loc; loc["\005"] = "default"; EXPECT_FALSE(CrushWrapper::is_valid_crush_loc(cct, loc)); } { map<string,string> loc; loc["host"] = "\003"; EXPECT_FALSE(CrushWrapper::is_valid_crush_loc(cct, loc)); } } TEST_F(CrushWrapperTest, dump_rules) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 1; c->set_type_name(ROOT_TYPE, "root"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); string failure_domain_type("osd"); string root_name("default"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, 0, NULL, NULL, &rootno); c->set_item_name(rootno, root_name); int item = 0; pair <string,string> loc; int ret; loc = c->get_immediate_parent(item, &ret); EXPECT_EQ(-ENOENT, ret); { map<string,string> loc; loc["root"] = root_name; EXPECT_EQ(0, c->insert_item(cct, item, 1.0, "osd.0", loc)); } // no rule by default { auto f = Formatter::create_unique("json-pretty"); f->open_array_section("rules"); c->dump_rules(f.get()); f->close_section(); stringstream ss; f->flush(ss); EXPECT_EQ("[]\n", ss.str()); } string name("NAME"); int rule = c->add_simple_rule(name, root_name, failure_domain_type, "", "firstn", pg_pool_t::TYPE_ERASURE); EXPECT_EQ(0, rule); { auto f = Formatter::create_unique("xml"); c->dump_rules(f.get()); stringstream ss; f->flush(ss); EXPECT_EQ((unsigned)0, ss.str().find("<rule><rule_id>0</rule_id><rule_name>NAME</rule_name>")); } { auto f = Formatter::create_unique("xml"); c->dump_rule(rule, f.get()); stringstream ss; f->flush(ss); EXPECT_EQ((unsigned)0, ss.str().find("<rule><rule_id>0</rule_id><rule_name>NAME</rule_name>")); EXPECT_NE(string::npos, ss.str().find("<item_name>default</item_name></step>")); } map<int,float> wm; c->get_rule_weight_osd_map(0, &wm); ASSERT_TRUE(wm.size() == 1); ASSERT_TRUE(wm[0] == 1.0); } TEST_F(CrushWrapperTest, distance) { CrushWrapper c; c.create(); c.set_type_name(1, "host"); c.set_type_name(2, "rack"); c.set_type_name(3, "root"); int bno; int r = c.add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_DEFAULT, 3, 0, NULL, NULL, &bno); ASSERT_EQ(0, r); ASSERT_EQ(-1, bno); c.set_item_name(bno, "default"); c.set_max_devices(10); //JSONFormatter jf(true); map<string,string> loc; loc["host"] = "a1"; loc["rack"] = "a"; loc["root"] = "default"; c.insert_item(cct, 0, 1, "osd.0", loc); loc.clear(); loc["host"] = "a2"; loc["rack"] = "a"; loc["root"] = "default"; c.insert_item(cct, 1, 1, "osd.1", loc); loc.clear(); loc["host"] = "b1"; loc["rack"] = "b"; loc["root"] = "default"; c.insert_item(cct, 2, 1, "osd.2", loc); loc.clear(); loc["host"] = "b2"; loc["rack"] = "b"; loc["root"] = "default"; c.insert_item(cct, 3, 1, "osd.3", loc); vector<pair<string,string> > ol; c.get_full_location_ordered(3, ol); ASSERT_EQ(3u, ol.size()); ASSERT_EQ(make_pair(string("host"),string("b2")), ol[0]); ASSERT_EQ(make_pair(string("rack"),string("b")), ol[1]); ASSERT_EQ(make_pair(string("root"),string("default")), ol[2]); //c.dump(&jf); //jf.flush(cout); multimap<string,string> p; p.insert(make_pair("host","b2")); p.insert(make_pair("rack","b")); p.insert(make_pair("root","default")); ASSERT_EQ(3, c.get_common_ancestor_distance(cct, 0, p)); ASSERT_EQ(3, c.get_common_ancestor_distance(cct, 1, p)); ASSERT_EQ(2, c.get_common_ancestor_distance(cct, 2, p)); ASSERT_EQ(1, c.get_common_ancestor_distance(cct, 3, p)); ASSERT_EQ(-ENOENT, c.get_common_ancestor_distance(cct, 123, p)); // make sure a "multipath" location will reflect a minimal // distance for both paths p.insert(make_pair("host","b1")); ASSERT_EQ(1, c.get_common_ancestor_distance(cct, 2, p)); ASSERT_EQ(1, c.get_common_ancestor_distance(cct, 3, p)); } TEST_F(CrushWrapperTest, choose_args_compat) { CrushWrapper c; c.create(); c.set_type_name(1, "host"); c.set_type_name(2, "rack"); c.set_type_name(3, "root"); int weight = 12; map<string,string> loc; loc["host"] = "b1"; loc["rack"] = "r11"; loc["root"] = "default"; int item = 1; c.insert_item(cct, item, weight, "osd.1", loc); loc["host"] = "b2"; loc["rack"] = "r12"; loc["root"] = "default"; item = 2; c.insert_item(cct, item, weight, "osd.2", loc); ceph_assert(c.add_simple_rule("rule1", "r11", "host", "", "firstn", pg_pool_t::TYPE_ERASURE) >= 0); int id = c.get_item_id("b1"); __u32 weights = 666 * 0x10000; crush_weight_set weight_set; weight_set.size = 1; weight_set.weights = &weights; int maxbuckets = c.get_max_buckets(); ceph_assert(maxbuckets > 0); crush_choose_arg choose_args[maxbuckets]; memset(choose_args, '\0', sizeof(crush_choose_arg) * maxbuckets); choose_args[-1-id].ids_size = 0; choose_args[-1-id].weight_set_positions = 1; choose_args[-1-id].weight_set = &weight_set; crush_choose_arg_map arg_map; arg_map.size = c.get_max_buckets(); arg_map.args = choose_args; uint64_t features = CEPH_FEATURE_CRUSH_TUNABLES5|CEPH_FEATURE_INCARNATION_2; int64_t caid = CrushWrapper::DEFAULT_CHOOSE_ARGS; // if the client is capable, encode choose_args { c.choose_args[caid] = arg_map; bufferlist bl; c.encode(bl, features|CEPH_FEATURE_CRUSH_CHOOSE_ARGS); auto i = bl.cbegin(); CrushWrapper c_new; c_new.decode(i); ASSERT_EQ(1u, c_new.choose_args.size()); ASSERT_EQ(1u, c_new.choose_args[caid].args[-1-id].weight_set_positions); ASSERT_EQ(weights, c_new.choose_args[caid].args[-1-id].weight_set[0].weights[0]); ASSERT_EQ(weight, c_new.get_bucket_item_weightf(id, 0)); } // if the client is not compatible, copy choose_arg in the weights { c.choose_args[caid] = arg_map; bufferlist bl; c.encode(bl, features); c.choose_args.clear(); auto i = bl.cbegin(); CrushWrapper c_new; c_new.decode(i); ASSERT_EQ(0u, c_new.choose_args.size()); ASSERT_EQ((int)weights, c_new.get_bucket_item_weight(id, 0)); } } TEST_F(CrushWrapperTest, remove_root) { CrushWrapper c; c.create(); c.set_type_name(1, "host"); c.set_type_name(2, "rack"); c.set_type_name(3, "root"); int weight = 1; map<string,string> loc; loc["host"] = "b1"; loc["rack"] = "r11"; loc["root"] = "default"; int item = 1; c.insert_item(cct, item, weight, "osd.1", loc); item = 2; loc["host"] = "b2"; loc["rack"] = "r12"; loc["root"] = "default"; c.insert_item(cct, item, weight, "osd.2", loc); ceph_assert(c.add_simple_rule("rule1", "r11", "host", "", "firstn", pg_pool_t::TYPE_ERASURE) >= 0); ASSERT_TRUE(c.name_exists("default")); ASSERT_TRUE(c.name_exists("r11")); ASSERT_TRUE(c.name_exists("r12")); ASSERT_EQ(c.remove_root(cct, c.get_item_id("default")), 0); ASSERT_FALSE(c.name_exists("default")); ASSERT_FALSE(c.name_exists("r11")); ASSERT_FALSE(c.name_exists("r12")); } TEST_F(CrushWrapperTest, trim_roots_with_class) { CrushWrapper c; c.create(); c.set_type_name(1, "root"); int weight = 1; map<string,string> loc; loc["root"] = "default"; int item = 1; c.insert_item(cct, item, weight, "osd.1", loc); int cl = c.get_or_create_class_id("ssd"); c.class_map[item] = cl; int root_id = c.get_item_id("default"); int clone_id; map<int32_t, map<int32_t, int32_t>> old_class_bucket; map<int,map<int,vector<int>>> cmap_item_weight; // cargs -> bno -> weights set<int32_t> used_ids; ASSERT_EQ(c.device_class_clone(root_id, cl, old_class_bucket, used_ids, &clone_id, &cmap_item_weight), 0); ASSERT_TRUE(c.name_exists("default")); ASSERT_TRUE(c.name_exists("default~ssd")); c.trim_roots_with_class(cct); ASSERT_TRUE(c.name_exists("default")); ASSERT_FALSE(c.name_exists("default~ssd")); } TEST_F(CrushWrapperTest, device_class_clone) { CrushWrapper c; c.create(); c.set_type_name(1, "host"); c.set_type_name(2, "root"); map<string,string> loc; loc["host"] = "b1"; loc["root"] = "default"; int weight = 1; int item = 1; c.insert_item(cct, item, weight, "osd.1", loc); int cl = c.get_or_create_class_id("ssd"); c.class_map[item] = cl; int item_no_class = 2; c.insert_item(cct, item_no_class, weight, "osd.2", loc); c.reweight(cct); map<int32_t, map<int32_t, int32_t>> old_class_bucket; map<int,map<int,vector<int>>> cmap_item_weight; // cargs -> bno -> weights set<int32_t> used_ids; int root_id = c.get_item_id("default"); int clone_id; ASSERT_EQ(c.device_class_clone(root_id, cl, old_class_bucket, used_ids, &clone_id, &cmap_item_weight), 0); ASSERT_TRUE(c.name_exists("default~ssd")); ASSERT_EQ(clone_id, c.get_item_id("default~ssd")); ASSERT_TRUE(c.subtree_contains(clone_id, item)); ASSERT_FALSE(c.subtree_contains(clone_id, item_no_class)); ASSERT_TRUE(c.subtree_contains(root_id, item_no_class)); ASSERT_EQ(c.get_item_weightf(root_id), 2); ASSERT_EQ(c.get_item_weightf(clone_id), 1); // cloning again does nothing and returns the existing one int other_clone_id; ASSERT_EQ(c.device_class_clone(root_id, cl, old_class_bucket, used_ids, &other_clone_id, &cmap_item_weight), 0); ASSERT_EQ(clone_id, other_clone_id); // invalid arguments ASSERT_EQ(c.device_class_clone(12345, cl, old_class_bucket, used_ids, &other_clone_id, &cmap_item_weight), -ECHILD); ASSERT_EQ(c.device_class_clone(root_id, 12345, old_class_bucket, used_ids, &other_clone_id, &cmap_item_weight), -EBADF); } TEST_F(CrushWrapperTest, split_id_class) { CrushWrapper c; c.create(); c.set_type_name(1, "root"); int weight = 1; map<string,string> loc; loc["root"] = "default"; int item = 1; c.insert_item(cct, item, weight, "osd.1", loc); int class_id = c.get_or_create_class_id("ssd"); c.class_map[item] = class_id; map<int32_t, map<int32_t, int32_t>> old_class_bucket; map<int,map<int,vector<int>>> cmap_item_weight; // cargs -> bno -> weights set<int32_t> used_ids; int item_id = c.get_item_id("default"); int clone_id; ASSERT_EQ(c.device_class_clone(item_id, class_id, old_class_bucket, used_ids, &clone_id, &cmap_item_weight), 0); int retrieved_item_id; int retrieved_class_id; ASSERT_EQ(c.split_id_class(clone_id, &retrieved_item_id, &retrieved_class_id), 0); ASSERT_EQ(item_id, retrieved_item_id); ASSERT_EQ(class_id, retrieved_class_id); ASSERT_EQ(c.split_id_class(item_id, &retrieved_item_id, &retrieved_class_id), 0); ASSERT_EQ(item_id, retrieved_item_id); ASSERT_EQ(-1, retrieved_class_id); } TEST_F(CrushWrapperTest, populate_classes) { CrushWrapper c; c.create(); c.set_type_name(1, "root"); int weight = 1; map<string,string> loc; loc["root"] = "default"; int item = 1; c.insert_item(cct, item, weight, "osd.1", loc); int class_id = c.get_or_create_class_id("ssd"); c.class_map[item] = class_id; map<int32_t, map<int32_t, int32_t>> old_class_bucket; ASSERT_EQ(c.populate_classes(old_class_bucket), 0); ASSERT_TRUE(c.name_exists("default~ssd")); old_class_bucket = c.class_bucket; ASSERT_EQ(c.populate_classes(old_class_bucket), 0); ASSERT_EQ(old_class_bucket, c.class_bucket); } TEST_F(CrushWrapperTest, remove_class_name) { CrushWrapper c; c.create(); ASSERT_EQ(-ENOENT, c.remove_class_name("ssd")); ASSERT_GE(0, c.get_or_create_class_id("ssd")); ASSERT_EQ(0, c.remove_class_name("ssd")); ASSERT_EQ(-ENOENT, c.remove_class_name("ssd")); } TEST_F(CrushWrapperTest, try_remap_rule) { // build a simple 2 level map CrushWrapper c; c.create(); c.set_type_name(0, "osd"); c.set_type_name(1, "host"); c.set_type_name(2, "rack"); c.set_type_name(3, "root"); int bno; int r = c.add_bucket(0, CRUSH_BUCKET_STRAW2, CRUSH_HASH_DEFAULT, 3, 0, NULL, NULL, &bno); ASSERT_EQ(0, r); ASSERT_EQ(-1, bno); c.set_item_name(bno, "default"); c.set_max_devices(20); //JSONFormatter jf(true); map<string,string> loc; loc["host"] = "foo"; loc["rack"] = "a"; loc["root"] = "default"; c.insert_item(cct, 0, 1, "osd.0", loc); c.insert_item(cct, 1, 1, "osd.1", loc); c.insert_item(cct, 2, 1, "osd.2", loc); loc.clear(); loc["host"] = "bar"; loc["rack"] = "a"; loc["root"] = "default"; c.insert_item(cct, 3, 1, "osd.3", loc); c.insert_item(cct, 4, 1, "osd.4", loc); c.insert_item(cct, 5, 1, "osd.5", loc); loc.clear(); loc["host"] = "baz"; loc["rack"] = "b"; loc["root"] = "default"; c.insert_item(cct, 6, 1, "osd.6", loc); c.insert_item(cct, 7, 1, "osd.7", loc); c.insert_item(cct, 8, 1, "osd.8", loc); loc.clear(); loc["host"] = "qux"; loc["rack"] = "b"; loc["root"] = "default"; c.insert_item(cct, 9, 1, "osd.9", loc); c.insert_item(cct, 10, 1, "osd.10", loc); c.insert_item(cct, 11, 1, "osd.11", loc); c.finalize(); loc.clear(); loc["host"] = "bif"; loc["rack"] = "c"; loc["root"] = "default"; c.insert_item(cct, 12, 1, "osd.12", loc); c.insert_item(cct, 13, 1, "osd.13", loc); c.insert_item(cct, 14, 1, "osd.14", loc); c.finalize(); loc.clear(); loc["host"] = "pop"; loc["rack"] = "c"; loc["root"] = "default"; c.insert_item(cct, 15, 1, "osd.15", loc); c.insert_item(cct, 16, 1, "osd.16", loc); c.insert_item(cct, 17, 1, "osd.17", loc); c.finalize(); //c.dump(&jf); //jf.flush(cout); // take + emit { } // take + choose device + emit { cout << "take + choose + emit" << std::endl; ostringstream err; int rule = c.add_simple_rule("one", "default", "osd", "", "firstn", 0, &err); ASSERT_EQ(rule, 0); vector<int> orig = { 0, 3, 9 }; set<int> overfull = { 3 }; vector<int> underfull = { 0, 2, 5, 8, 11 }; vector<int> more_underfull = {}; vector<int> out; int r = c.try_remap_rule(cct, rule, 3, overfull, underfull, more_underfull, orig, &out); cout << orig << " -> r = " << (int)r << " out " << out << std::endl; ASSERT_EQ(r, 0); ASSERT_EQ(3u, out.size()); ASSERT_EQ(0, out[0]); ASSERT_EQ(2, out[1]); ASSERT_EQ(9, out[2]); // make sure we cope with dups between underfull and future values in orig underfull = {9, 0, 2, 5}; orig = {1, 3, 9}; r = c.try_remap_rule(cct, rule, 3, overfull, underfull, more_underfull, orig, &out); cout << orig << " -> r = " << (int)r << " out " << out << std::endl; ASSERT_EQ(r, 0); ASSERT_EQ(3u, out.size()); ASSERT_EQ(1, out[0]); ASSERT_EQ(0, out[1]); ASSERT_EQ(9, out[2]); // // Check that more_underfull is used when underfull runs out orig = { 0, 3, 9 }; overfull = { 3, 9 }; underfull = { 2 }; more_underfull = { 5, 8, 11 }; r = c.try_remap_rule(cct, rule, 3, overfull, underfull, more_underfull, orig, &out); cout << orig << " -> r = " << (int)r << " out " << out << std::endl; ASSERT_EQ(r, 0); ASSERT_EQ(3u, out.size()); ASSERT_EQ(0, out[0]); ASSERT_EQ(2, out[1]); ASSERT_EQ(5, out[2]); } // chooseleaf { cout << "take + chooseleaf + emit" << std::endl; ostringstream err; int rule = c.add_simple_rule("two", "default", "host", "", "firstn", 0, &err); ASSERT_EQ(rule, 1); vector<int> orig = { 0, 3, 9 }; set<int> overfull = { 3 }; vector<int> underfull = { 0, 2, 5, 8, 11 }; vector<int> more_underfull = { }; vector<int> out; int r = c.try_remap_rule(cct, rule, 3, overfull, underfull, more_underfull, orig, &out); cout << orig << " -> r = " << (int)r << " out " << out << std::endl; ASSERT_EQ(r, 0); ASSERT_EQ(3u, out.size()); ASSERT_EQ(0, out[0]); ASSERT_EQ(5, out[1]); ASSERT_EQ(9, out[2]); } // choose + choose { cout << "take + choose + choose + choose + emit" << std::endl; int rule = c.add_rule(2, 5, 0); ASSERT_EQ(2, rule); c.set_rule_step_take(rule, 0, bno); c.set_rule_step_choose_indep(rule, 1, 2, 2); c.set_rule_step_choose_indep(rule, 2, 2, 1); c.set_rule_step_choose_indep(rule, 3, 1, 0); c.set_rule_step_emit(rule, 4); vector<int> orig = { 0, 3, 16, 12 }; set<int> overfull = { 3, 12 }; vector<int> underfull = { 6, 7, 9, 3, 0, 1, 15, 16, 13, 2, 5, 8, 11 }; vector<int> more_underfull = { }; vector<int> out; int r = c.try_remap_rule(cct, rule, 3, overfull, underfull, more_underfull, orig, &out); cout << orig << " -> r = " << (int)r << " out " << out << std::endl; ASSERT_EQ(r, 0); ASSERT_EQ(4u, out.size()); ASSERT_EQ(0, out[0]); ASSERT_EQ(5, out[1]); ASSERT_EQ(16, out[2]); ASSERT_EQ(13, out[3]); orig.pop_back(); out.clear(); r = c.try_remap_rule(cct, rule, 3, overfull, underfull, more_underfull, orig, &out); cout << orig << " -> r = " << (int)r << " out " << out << std::endl; ASSERT_EQ(r, 0); ASSERT_EQ(3u, out.size()); ASSERT_EQ(0, out[0]); ASSERT_EQ(5, out[1]); ASSERT_EQ(16, out[2]); } } // Local Variables: // compile-command: "cd ../../../build ; make -j4 unittest_crush_wrapper && valgrind --tool=memcheck bin/unittest_crush_wrapper" // End:
42,266
27.969842
128
cc
null
ceph-main/src/test/crush/crush.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2013 Inktank <[email protected]> * * LGPL-2.1 (see COPYING-LGPL2.1) or later */ #include <gtest/gtest.h> #include <iostream> #include <memory> #include <set> #include "common/ceph_argparse.h" #include "common/common_init.h" #include "include/stringify.h" #include "crush/CrushWrapper.h" #include "osd/osd_types.h" using namespace std; std::unique_ptr<CrushWrapper> build_indep_map(CephContext *cct, int num_rack, int num_host, int num_osd) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); c->create(); c->set_type_name(5, "root"); c->set_type_name(4, "row"); c->set_type_name(3, "rack"); c->set_type_name(2, "chasis"); c->set_type_name(1, "host"); c->set_type_name(0, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 5, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); map<string,string> loc; loc["root"] = "default"; int osd = 0; for (int r=0; r<num_rack; ++r) { loc["rack"] = string("rack-") + stringify(r); for (int h=0; h<num_host; ++h) { loc["host"] = string("host-") + stringify(r) + string("-") + stringify(h); for (int o=0; o<num_osd; ++o, ++osd) { c->insert_item(cct, osd, 1.0, string("osd.") + stringify(osd), loc); } } } int ret; int ruleno = 0; ret = c->add_rule(ruleno, 4, 123); ceph_assert(ret == ruleno); ret = c->set_rule_step(ruleno, 0, CRUSH_RULE_SET_CHOOSELEAF_TRIES, 10, 0); ceph_assert(ret == 0); ret = c->set_rule_step(ruleno, 1, CRUSH_RULE_TAKE, rootno, 0); ceph_assert(ret == 0); ret = c->set_rule_step(ruleno, 2, CRUSH_RULE_CHOOSELEAF_INDEP, CRUSH_CHOOSE_N, 1); ceph_assert(ret == 0); ret = c->set_rule_step(ruleno, 3, CRUSH_RULE_EMIT, 0, 0); ceph_assert(ret == 0); c->set_rule_name(ruleno, "data"); c->finalize(); if (false) { Formatter *f = Formatter::create("json-pretty"); f->open_object_section("crush_map"); c->dump(f); f->close_section(); f->flush(cout); delete f; } return c; } int get_num_dups(const vector<int>& v) { std::set<int> s; int dups = 0; for (auto n : v) { if (s.count(n)) ++dups; else if (n != CRUSH_ITEM_NONE) s.insert(n); } return dups; } class CRUSHTest : public ::testing::Test { public: void SetUp() final { CephInitParameters params(CEPH_ENTITY_TYPE_CLIENT); cct = common_preinit(params, CODE_ENVIRONMENT_UTILITY, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); } void TearDown() final { cct->put(); cct = nullptr; } protected: CephContext *cct = nullptr; }; TEST_F(CRUSHTest, indep_toosmall) { std::unique_ptr<CrushWrapper> c(build_indep_map(cct, 1, 3, 1)); vector<__u32> weight(c->get_max_devices(), 0x10000); c->dump_tree(&cout, NULL); for (int x = 0; x < 100; ++x) { vector<int> out; c->do_rule(0, x, out, 5, weight, 0); cout << x << " -> " << out << std::endl; int num_none = 0; for (unsigned i=0; i<out.size(); ++i) { if (out[i] == CRUSH_ITEM_NONE) num_none++; } ASSERT_EQ(2, num_none); ASSERT_EQ(0, get_num_dups(out)); } } TEST_F(CRUSHTest, indep_basic) { std::unique_ptr<CrushWrapper> c(build_indep_map(cct, 3, 3, 3)); vector<__u32> weight(c->get_max_devices(), 0x10000); c->dump_tree(&cout, NULL); for (int x = 0; x < 100; ++x) { vector<int> out; c->do_rule(0, x, out, 5, weight, 0); cout << x << " -> " << out << std::endl; int num_none = 0; for (unsigned i=0; i<out.size(); ++i) { if (out[i] == CRUSH_ITEM_NONE) num_none++; } ASSERT_EQ(0, num_none); ASSERT_EQ(0, get_num_dups(out)); } } TEST_F(CRUSHTest, indep_out_alt) { std::unique_ptr<CrushWrapper> c(build_indep_map(cct, 3, 3, 3)); vector<__u32> weight(c->get_max_devices(), 0x10000); // mark a bunch of osds out int num = 3*3*3; for (int i=0; i<num / 2; ++i) weight[i*2] = 0; c->dump_tree(&cout, NULL); // need more retries to get 9/9 hosts for x in 0..99 c->set_choose_total_tries(100); for (int x = 0; x < 100; ++x) { vector<int> out; c->do_rule(0, x, out, 9, weight, 0); cout << x << " -> " << out << std::endl; int num_none = 0; for (unsigned i=0; i<out.size(); ++i) { if (out[i] == CRUSH_ITEM_NONE) num_none++; } ASSERT_EQ(0, num_none); ASSERT_EQ(0, get_num_dups(out)); } } TEST_F(CRUSHTest, indep_out_contig) { std::unique_ptr<CrushWrapper> c(build_indep_map(cct, 3, 3, 3)); vector<__u32> weight(c->get_max_devices(), 0x10000); // mark a bunch of osds out int num = 3*3*3; for (int i=0; i<num / 3; ++i) weight[i] = 0; c->dump_tree(&cout, NULL); c->set_choose_total_tries(100); for (int x = 0; x < 100; ++x) { vector<int> out; c->do_rule(0, x, out, 7, weight, 0); cout << x << " -> " << out << std::endl; int num_none = 0; for (unsigned i=0; i<out.size(); ++i) { if (out[i] == CRUSH_ITEM_NONE) num_none++; } ASSERT_EQ(1, num_none); ASSERT_EQ(0, get_num_dups(out)); } } TEST_F(CRUSHTest, indep_out_progressive) { std::unique_ptr<CrushWrapper> c(build_indep_map(cct, 3, 3, 3)); c->set_choose_total_tries(100); vector<__u32> tweight(c->get_max_devices(), 0x10000); c->dump_tree(&cout, NULL); int tchanged = 0; for (int x = 1; x < 5; ++x) { vector<__u32> weight(c->get_max_devices(), 0x10000); std::map<int,unsigned> pos; vector<int> prev; for (unsigned i=0; i<weight.size(); ++i) { vector<int> out; c->do_rule(0, x, out, 7, weight, 0); cout << "(" << i << "/" << weight.size() << " out) " << x << " -> " << out << std::endl; int num_none = 0; for (unsigned k=0; k<out.size(); ++k) { if (out[k] == CRUSH_ITEM_NONE) num_none++; } ASSERT_EQ(0, get_num_dups(out)); // make sure nothing moved int moved = 0; int changed = 0; for (unsigned j=0; j<out.size(); ++j) { if (i && out[j] != prev[j]) { ++changed; ++tchanged; } if (out[j] == CRUSH_ITEM_NONE) { continue; } if (i && pos.count(out[j])) { // result shouldn't have moved position if (j != pos[out[j]]) { cout << " " << out[j] << " moved from " << pos[out[j]] << " to " << j << std::endl; ++moved; } //ASSERT_EQ(j, pos[out[j]]); } } if (moved || changed) cout << " " << moved << " moved, " << changed << " changed" << std::endl; ASSERT_LE(moved, 1); ASSERT_LE(changed, 3); // mark another osd out weight[i] = 0; prev = out; pos.clear(); for (unsigned j=0; j<out.size(); ++j) { if (out[j] != CRUSH_ITEM_NONE) pos[out[j]] = j; } } } cout << tchanged << " total changed" << std::endl; } TEST_F(CRUSHTest, straw_zero) { // zero weight items should have no effect on placement. std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 1; c->set_type_name(ROOT_TYPE, "root"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int n = 5; int items[n], weights[n]; for (int i=0; i <n; ++i) { items[i] = i; weights[i] = 0x10000 * (n-i-1); } c->set_max_devices(n); string root_name0("root0"); int root0; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n, items, weights, &root0)); EXPECT_EQ(0, c->set_item_name(root0, root_name0)); string name0("rule0"); int rule0 = c->add_simple_rule(name0, root_name0, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); EXPECT_EQ(0, rule0); string root_name1("root1"); int root1; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n-1, items, weights, &root1)); EXPECT_EQ(0, c->set_item_name(root1, root_name1)); string name1("rule1"); int rule1 = c->add_simple_rule(name1, root_name1, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); EXPECT_EQ(1, rule1); c->finalize(); vector<unsigned> reweight(n, 0x10000); for (int i=0; i<10000; ++i) { vector<int> out0, out1; c->do_rule(rule0, i, out0, 1, reweight, 0); ASSERT_EQ(1u, out0.size()); c->do_rule(rule1, i, out1, 1, reweight, 0); ASSERT_EQ(1u, out1.size()); ASSERT_EQ(out0[0], out1[0]); //cout << i << "\t" << out0 << "\t" << out1 << std::endl; } } TEST_F(CRUSHTest, straw_same) { // items with the same weight should map about the same as items // with very similar weights. // // give the 0 vector a paired stair pattern, with dup weights. note // that the original straw flaw does not appear when there are 2 of // the initial weight, but it does when there is just 1. // // give the 1 vector a similar stair pattern, but make the same // steps weights slightly different (no dups). this works. // // compare the result and verify that the resulting mapping is // almost identical. std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 1; c->set_type_name(ROOT_TYPE, "root"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int n = 10; int items[n], weights[n]; for (int i=0; i <n; ++i) { items[i] = i; weights[i] = 0x10000 * ((i+1)/2 + 1); } c->set_max_devices(n); string root_name0("root0"); int root0; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n, items, weights, &root0)); EXPECT_EQ(0, c->set_item_name(root0, root_name0)); string name0("rule0"); int rule0 = c->add_simple_rule(name0, root_name0, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); EXPECT_EQ(0, rule0); for (int i=0; i <n; ++i) { items[i] = i; weights[i] = 0x10000 * ((i+1)/2 + 1) + (i%2)*100; } string root_name1("root1"); int root1; EXPECT_EQ(0, c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n, items, weights, &root1)); EXPECT_EQ(0, c->set_item_name(root1, root_name1)); string name1("rule1"); int rule1 = c->add_simple_rule(name1, root_name1, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); EXPECT_EQ(1, rule1); if (0) { crush_bucket_straw *sb0 = reinterpret_cast<crush_bucket_straw*>(c->get_crush_map()->buckets[-1-root0]); crush_bucket_straw *sb1 = reinterpret_cast<crush_bucket_straw*>(c->get_crush_map()->buckets[-1-root1]); for (int i=0; i<n; ++i) { cout << i << "\t" << sb0->item_weights[i] << "\t" << sb1->item_weights[i] << "\t" << "\t" << sb0->straws[i] << "\t" << sb1->straws[i] << std::endl; } } if (0) { JSONFormatter jf(true); jf.open_object_section("crush"); c->dump(&jf); jf.close_section(); jf.flush(cout); } c->finalize(); vector<int> sum0(n, 0), sum1(n, 0); vector<unsigned> reweight(n, 0x10000); int different = 0; int max = 100000; for (int i=0; i<max; ++i) { vector<int> out0, out1; c->do_rule(rule0, i, out0, 1, reweight, 0); ASSERT_EQ(1u, out0.size()); c->do_rule(rule1, i, out1, 1, reweight, 0); ASSERT_EQ(1u, out1.size()); sum0[out0[0]]++; sum1[out1[0]]++; if (out0[0] != out1[0]) different++; } for (int i=0; i<n; ++i) { cout << i << "\t" << ((double)weights[i] / (double)weights[0]) << "\t" << sum0[i] << "\t" << ((double)sum0[i]/(double)sum0[0]) << "\t" << sum1[i] << "\t" << ((double)sum1[i]/(double)sum1[0]) << std::endl; } double ratio = ((double)different / (double)max); cout << different << " of " << max << " = " << ratio << " different" << std::endl; ASSERT_LT(ratio, .001); } double calc_straw2_stddev(int *weights, int n, bool verbose) { std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int items[n]; for (int i=0; i <n; ++i) { items[i] = i; } c->set_max_devices(n); string root_name0("root0"); int root0; crush_bucket *b0 = crush_make_bucket(c->get_crush_map(), CRUSH_BUCKET_STRAW2, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n, items, weights); crush_add_bucket(c->get_crush_map(), 0, b0, &root0); c->set_item_name(root0, root_name0); string name0("rule0"); int rule0 = c->add_simple_rule(name0, root_name0, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); int sum[n]; double totalweight = 0; vector<unsigned> reweight(n); for (int i=0; i<n; ++i) { sum[i] = 0; reweight[i] = 0x10000; totalweight += weights[i]; } totalweight /= (double)0x10000; double avgweight = totalweight / n; c->finalize(); int total = 1000000; for (int i=0; i<total; ++i) { vector<int> out; c->do_rule(rule0, i, out, 1, reweight, 0); sum[out[0]]++; } double expected = (double)total / (double)n; if (verbose) cout << "expect\t\t\t" << expected << std::endl; double stddev = 0; double exptotal = 0; if (verbose) cout << "osd\tweight\tcount\tadjusted\n"; std::streamsize p = cout.precision(); cout << std::setprecision(4); for (int i=0; i<n; ++i) { double w = (double)weights[i] / (double)0x10000; double adj = (double)sum[i] * avgweight / w; stddev += (adj - expected) * (adj - expected); exptotal += adj; if (verbose) cout << i << "\t" << w << "\t" << sum[i] << "\t" << (int)adj << std::endl; } cout << std::setprecision(p); { stddev = sqrt(stddev / (double)n); if (verbose) cout << "std dev " << stddev << std::endl; double p = 1.0 / (double)n; double estddev = sqrt(exptotal * p * (1.0 - p)); if (verbose) cout << " vs " << estddev << "\t(expected)" << std::endl; } return stddev; } TEST_F(CRUSHTest, straw2_stddev) { int n = 15; int weights[n]; cout << "maxskew\tstddev\n"; for (double step = 1.0; step < 2; step += .25) { int w = 0x10000; for (int i = 0; i < n; ++i) { weights[i] = w; w *= step; } double stddev = calc_straw2_stddev(weights, n, true); cout << ((double)weights[n-1]/(double)weights[0]) << "\t" << stddev << std::endl; } } TEST_F(CRUSHTest, straw2_reweight) { // when we adjust the weight of an item in a straw2 bucket, // we should *only* see movement from or to that item, never // between other items. int weights[] = { 0x10000, 0x10000, 0x20000, 0x20000, 0x30000, 0x50000, 0x8000, 0x20000, 0x10000, 0x10000, 0x20000, 0x10000, 0x10000, 0x20000, 0x300000, 0x10000, 0x20000 }; int n = 15; std::unique_ptr<CrushWrapper> c(new CrushWrapper); const int ROOT_TYPE = 2; c->set_type_name(ROOT_TYPE, "root"); const int HOST_TYPE = 1; c->set_type_name(HOST_TYPE, "host"); const int OSD_TYPE = 0; c->set_type_name(OSD_TYPE, "osd"); int items[n]; for (int i=0; i <n; ++i) { items[i] = i; //weights[i] = 0x10000; } c->set_max_devices(n); string root_name0("root0"); int root0; crush_bucket *b0 = crush_make_bucket(c->get_crush_map(), CRUSH_BUCKET_STRAW2, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n, items, weights); EXPECT_EQ(0, crush_add_bucket(c->get_crush_map(), 0, b0, &root0)); EXPECT_EQ(0, c->set_item_name(root0, root_name0)); string name0("rule0"); int rule0 = c->add_simple_rule(name0, root_name0, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); EXPECT_EQ(0, rule0); int changed = 1; weights[changed] = weights[changed] / 10 * (rand() % 10); string root_name1("root1"); int root1; crush_bucket *b1 = crush_make_bucket(c->get_crush_map(), CRUSH_BUCKET_STRAW2, CRUSH_HASH_RJENKINS1, ROOT_TYPE, n, items, weights); EXPECT_EQ(0, crush_add_bucket(c->get_crush_map(), 0, b1, &root1)); EXPECT_EQ(0, c->set_item_name(root1, root_name1)); string name1("rule1"); int rule1 = c->add_simple_rule(name1, root_name1, "osd", "", "firstn", pg_pool_t::TYPE_REPLICATED); EXPECT_EQ(1, rule1); int sum[n]; double totalweight = 0; vector<unsigned> reweight(n); for (int i=0; i<n; ++i) { sum[i] = 0; reweight[i] = 0x10000; totalweight += weights[i]; } totalweight /= (double)0x10000; double avgweight = totalweight / n; c->finalize(); int total = 1000000; for (int i=0; i<total; ++i) { vector<int> out0, out1; c->do_rule(rule0, i, out0, 1, reweight, 0); ASSERT_EQ(1u, out0.size()); c->do_rule(rule1, i, out1, 1, reweight, 0); ASSERT_EQ(1u, out1.size()); sum[out1[0]]++; //sum[rand()%n]++; if (out1[0] == changed) { ASSERT_EQ(changed, out0[0]); } else if (out0[0] != changed) { ASSERT_EQ(out0[0], out1[0]); } } double expected = (double)total / (double)n; cout << "expect\t\t\t" << expected << std::endl; double stddev = 0; cout << "osd\tweight\tcount\tadjusted\n"; std::streamsize p = cout.precision(); cout << std::setprecision(4); for (int i=0; i<n; ++i) { double w = (double)weights[i] / (double)0x10000; double adj = (double)sum[i] * avgweight / w; stddev += (adj - expected) * (adj - expected); cout << i << "\t" << w << "\t" << sum[i] << "\t" << (int)adj << std::endl; } cout << std::setprecision(p); { stddev = sqrt(stddev / (double)n); cout << "std dev " << stddev << std::endl; double p = 1.0 / (double)n; double estddev = sqrt((double)total * p * (1.0 - p)); cout << " vs " << estddev << std::endl; } }
17,605
25.635401
107
cc
null
ceph-main/src/test/crush/crush_weights.sh
#!/usr/bin/env bash source $(dirname $0)/../detect-build-env-vars.sh if [ `uname` = FreeBSD ]; then SED=gsed else SED=sed fi read -r -d '' cm <<'EOF' # devices device 0 device0 device 1 device1 device 2 device2 device 3 device3 device 4 device4 # types type 0 osd type 1 domain type 2 pool # buckets domain root { id -1 # do not change unnecessarily # weight 5.00000 alg straw2 hash 0 # rjenkins1 item device0 weight 10.00000 item device1 weight 10.00000 item device2 weight 10.00000 item device3 weight 10.00000 item device4 weight 1.00000 } # rules rule data { id 0 type replicated step take root step choose firstn 0 type osd step emit } EOF three=($(echo "$cm" | crushtool -c /dev/fd/0 --test --show-utilization \ --min-x 1 --max-x 1000000 --num-rep 3 | \ grep "device \(0\|4\)" | $SED -e 's/^.*stored : \([0-9]\+\).*$/\1/')) if test $(echo "scale=5; (10 - ${three[0]}/${three[1]}) < .75" | bc) = 1; then echo 3 replicas weights better distributed than they should be. 1>&2 exit 1 fi one=($(echo "$cm" | crushtool -c /dev/fd/0 --test --show-utilization \ --min-x 1 --max-x 1000000 --num-rep 1 | \ grep "device \(0\|4\)" | $SED -e 's/^.*stored : \([0-9]\+\).*$/\1/')) if test $(echo "scale=5; (10 - ${one[0]}/${one[1]}) > .1 || (10 - ${one[0]}/${one[1]}) < -.1" | bc) = 1; then echo 1 replica not distributed as they should be. 1>&2 exit 1 fi
1,507
23.721311
109
sh
null
ceph-main/src/test/debian-strech/install-deps.sh
../../../install-deps.sh
24
24
24
sh
null
ceph-main/src/test/direct_messenger/DirectMessenger.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include "DirectMessenger.h" #include "DispatchStrategy.h" class DirectConnection : public Connection { /// sent messages are dispatched here DispatchStrategy *const dispatchers; /// the connection that will be attached to outgoing messages, so that replies /// can be dispatched back to the sender. the pointer is atomic for /// thread-safety between mark_down() and send_message(). no reference is held /// on this Connection to avoid cyclical refs. we don't need a reference /// because its owning DirectMessenger will mark both connections down (and /// clear this pointer) before dropping its own reference std::atomic<Connection*> reply_connection{nullptr}; private: FRIEND_MAKE_REF(DirectConnection); DirectConnection(CephContext *cct, DirectMessenger *m, DispatchStrategy *dispatchers) : Connection(cct, m), dispatchers(dispatchers) {} public: /// sets the Connection that will receive replies to outgoing messages void set_direct_reply_connection(ConnectionRef conn); /// return true if a peer connection exists bool is_connected() override; /// pass the given message directly to our dispatchers int send_message(Message *m) override; /// release our pointer to the peer connection. later calls to is_connected() /// will return false, and send_message() will fail with -ENOTCONN void mark_down() override; /// noop - keepalive messages are not needed within a process void send_keepalive() override {} /// noop - reconnect/recovery semantics are not needed within a process void mark_disposable() override {} }; void DirectConnection::set_direct_reply_connection(ConnectionRef conn) { reply_connection.store(conn.get()); } bool DirectConnection::is_connected() { // true between calls to set_direct_reply_connection() and mark_down() return reply_connection.load() != nullptr; } int DirectConnection::send_message(Message *m) { // read reply_connection atomically and take a reference ConnectionRef conn = reply_connection.load(); if (!conn) { m->put(); return -ENOTCONN; } // attach reply_connection to the Message, so that calls to // m->get_connection()->send_message() can be dispatched back to the sender m->set_connection(conn); dispatchers->ds_dispatch(m); return 0; } void DirectConnection::mark_down() { Connection *conn = reply_connection.load(); if (!conn) { return; // already marked down } if (!reply_connection.compare_exchange_weak(conn, nullptr)) { return; // lost the race to mark down } // called only once to avoid loops conn->mark_down(); } static ConnectionRef create_loopback(DirectMessenger *m, entity_name_t name, DispatchStrategy *dispatchers) { auto loopback = ceph::make_ref<DirectConnection>(m->cct, m, dispatchers); // loopback replies go to itself loopback->set_direct_reply_connection(loopback); loopback->set_peer_type(name.type()); loopback->set_features(CEPH_FEATURES_ALL); return loopback; } DirectMessenger::DirectMessenger(CephContext *cct, entity_name_t name, string mname, uint64_t nonce, DispatchStrategy *dispatchers) : SimplePolicyMessenger(cct, name, mname, nonce), dispatchers(dispatchers), loopback_connection(create_loopback(this, name, dispatchers)) { dispatchers->set_messenger(this); } DirectMessenger::~DirectMessenger() { } int DirectMessenger::set_direct_peer(DirectMessenger *peer) { if (get_myinst() == peer->get_myinst()) { return -EADDRINUSE; // must have a different entity instance } peer_inst = peer->get_myinst(); // allocate a Connection that dispatches to the peer messenger auto direct_connection = ceph::make_ref<DirectConnection>(cct, peer, peer->dispatchers.get()); direct_connection->set_peer_addr(peer_inst.addr); direct_connection->set_peer_type(peer_inst.name.type()); direct_connection->set_features(CEPH_FEATURES_ALL); // if set_direct_peer() was already called on the peer messenger, we can // finish by attaching their connections. if not, the later call to // peer->set_direct_peer() will attach their connection to ours auto connection = peer->get_connection(get_myinst()); if (connection) { auto p = static_cast<DirectConnection*>(connection.get()); p->set_direct_reply_connection(direct_connection); direct_connection->set_direct_reply_connection(p); } peer_connection = std::move(direct_connection); return 0; } int DirectMessenger::bind(const entity_addr_t &bind_addr) { if (peer_connection) { return -EINVAL; // can't change address after sharing it with the peer } set_myaddr(bind_addr); loopback_connection->set_peer_addr(bind_addr); return 0; } int DirectMessenger::client_bind(const entity_addr_t &bind_addr) { // same as bind return bind(bind_addr); } int DirectMessenger::start() { if (!peer_connection) { return -EINVAL; // did not connect to a peer } if (started) { return -EINVAL; // already started } dispatchers->start(); return SimplePolicyMessenger::start(); } int DirectMessenger::shutdown() { if (!started) { return -EINVAL; // not started } mark_down_all(); peer_connection.reset(); loopback_connection.reset(); dispatchers->shutdown(); SimplePolicyMessenger::shutdown(); sem.Put(); // signal wait() return 0; } void DirectMessenger::wait() { sem.Get(); // wait on signal from shutdown() dispatchers->wait(); } ConnectionRef DirectMessenger::get_connection(const entity_inst_t& dst) { if (dst == peer_inst) { return peer_connection; } if (dst == get_myinst()) { return loopback_connection; } return nullptr; } ConnectionRef DirectMessenger::get_loopback_connection() { return loopback_connection; } int DirectMessenger::send_message(Message *m, const entity_inst_t& dst) { auto conn = get_connection(dst); if (!conn) { m->put(); return -ENOTCONN; } return conn->send_message(m); } void DirectMessenger::mark_down(const entity_addr_t& addr) { ConnectionRef conn; if (addr == peer_inst.addr) { conn = peer_connection; } else if (addr == get_myaddr_legacy()) { conn = loopback_connection; } if (conn) { conn->mark_down(); } } void DirectMessenger::mark_down_all() { if (peer_connection) { peer_connection->mark_down(); } loopback_connection->mark_down(); }
6,907
26.304348
96
cc
null
ceph-main/src/test/direct_messenger/DirectMessenger.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2006 Sage Weil <[email protected]> * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef CEPH_MSG_DIRECTMESSENGER_H #define CEPH_MSG_DIRECTMESSENGER_H #include "msg/SimplePolicyMessenger.h" #include "common/Semaphore.h" class DispatchStrategy; /** * DirectMessenger provides a direct path between two messengers * within a process. A pair of DirectMessengers share their * DispatchStrategy with each other, and calls to send_message() * forward the message directly to the other. * * This is for testing and i/o injection only, and cannot be used * for normal messengers with ms_type. */ class DirectMessenger : public SimplePolicyMessenger { private: /// strategy for local dispatch std::unique_ptr<DispatchStrategy> dispatchers; /// peer instance for comparison in get_connection() entity_inst_t peer_inst; /// connection that sends to the peer's dispatchers ConnectionRef peer_connection; /// connection that sends to my own dispatchers ConnectionRef loopback_connection; /// semaphore for signalling wait() from shutdown() Semaphore sem; public: DirectMessenger(CephContext *cct, entity_name_t name, string mname, uint64_t nonce, DispatchStrategy *dispatchers); ~DirectMessenger(); /// attach to a peer messenger. must be called before start() int set_direct_peer(DirectMessenger *peer); // Messenger interface /// sets the addr. must not be called after set_direct_peer() or start() int bind(const entity_addr_t& bind_addr) override; /// sets the addr. must not be called after set_direct_peer() or start() int client_bind(const entity_addr_t& bind_addr) override; /// starts dispatchers int start() override; /// breaks connections, stops dispatchers, and unblocks callers of wait() int shutdown() override; /// blocks until shutdown() completes void wait() override; /// returns a connection to the peer instance, a loopback connection to our /// own instance, or null if not connected ConnectionRef get_connection(const entity_inst_t& dst) override; /// returns a loopback connection that dispatches to this messenger ConnectionRef get_loopback_connection() override; /// dispatches a message to the peer instance if connected int send_message(Message *m, const entity_inst_t& dst) override; /// mark down the connection for the given address void mark_down(const entity_addr_t& a) override; /// mark down all connections void mark_down_all() override; // unimplemented Messenger interface void set_addr_unknowns(const entity_addr_t &addr) override {} void set_addr(const entity_addr_t &addr) override {} int get_dispatch_queue_len() override { return 0; } double get_dispatch_queue_max_age(utime_t now) override { return 0; } void set_cluster_protocol(int p) override {} }; #endif
3,186
31.191919
77
h
null
ceph-main/src/test/direct_messenger/DispatchStrategy.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 CohortFS, LLC * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef DISPATCH_STRATEGY_H #define DISPATCH_STRATEGY_H #include "msg/Message.h" class Messenger; class DispatchStrategy { protected: Messenger *msgr = nullptr; public: DispatchStrategy() {} Messenger *get_messenger() { return msgr; } void set_messenger(Messenger *_msgr) { msgr = _msgr; } virtual void ds_dispatch(Message *m) = 0; virtual void shutdown() = 0; virtual void start() = 0; virtual void wait() = 0; virtual ~DispatchStrategy() {} }; #endif /* DISPATCH_STRATEGY_H */
906
22.868421
70
h
null
ceph-main/src/test/direct_messenger/FastStrategy.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 CohortFS, LLC * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef FAST_STRATEGY_H #define FAST_STRATEGY_H #include "DispatchStrategy.h" class FastStrategy : public DispatchStrategy { public: FastStrategy() {} void ds_dispatch(Message *m) override { msgr->ms_fast_preprocess(m); if (msgr->ms_can_fast_dispatch(m)) msgr->ms_fast_dispatch(m); else msgr->ms_deliver_dispatch(m); } void shutdown() override {} void start() override {} void wait() override {} virtual ~FastStrategy() {} }; #endif /* FAST_STRATEGY_H */
900
24.027778
70
h
null
ceph-main/src/test/direct_messenger/QueueStrategy.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 CohortFS, LLC * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <string> #include "QueueStrategy.h" #define dout_subsys ceph_subsys_ms #include "common/debug.h" QueueStrategy::QueueStrategy(int _n_threads) : n_threads(_n_threads), stop(false), mqueue(), disp_threads() { } void QueueStrategy::ds_dispatch(Message *m) { msgr->ms_fast_preprocess(m); if (msgr->ms_can_fast_dispatch(m)) { msgr->ms_fast_dispatch(m); return; } std::lock_guard l{lock}; mqueue.push_back(*m); if (disp_threads.size()) { if (! disp_threads.empty()) { QSThread *thrd = &disp_threads.front(); disp_threads.pop_front(); thrd->cond.notify_all(); } } } void QueueStrategy::entry(QSThread *thrd) { for (;;) { ceph::ref_t<Message> m; std::unique_lock l{lock}; for (;;) { if (! mqueue.empty()) { m = ceph::ref_t<Message>(&mqueue.front(), false); mqueue.pop_front(); break; } if (stop) break; disp_threads.push_front(*thrd); thrd->cond.wait(l); } l.unlock(); if (stop) { if (!m) break; continue; } get_messenger()->ms_deliver_dispatch(m); } } void QueueStrategy::shutdown() { QSThread *thrd; std::lock_guard l{lock}; stop = true; while (disp_threads.size()) { thrd = &(disp_threads.front()); disp_threads.pop_front(); thrd->cond.notify_all(); } } void QueueStrategy::wait() { std::unique_lock l{lock}; ceph_assert(stop); for (auto& thread : threads) { l.unlock(); // join outside of lock thread->join(); l.lock(); } } void QueueStrategy::start() { ceph_assert(!stop); std::lock_guard l{lock}; threads.reserve(n_threads); for (int ix = 0; ix < n_threads; ++ix) { std::string thread_name = "ms_qs_"; thread_name.append(std::to_string(ix)); auto thrd = std::make_unique<QSThread>(this); thrd->create(thread_name.c_str()); threads.emplace_back(std::move(thrd)); } }
2,295
20.259259
70
cc
null
ceph-main/src/test/direct_messenger/QueueStrategy.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014 CohortFS, LLC * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef QUEUE_STRATEGY_H #define QUEUE_STRATEGY_H #include <vector> #include <memory> #include <boost/intrusive/list.hpp> #include "DispatchStrategy.h" #include "msg/Messenger.h" namespace bi = boost::intrusive; class QueueStrategy : public DispatchStrategy { ceph::mutex lock = ceph::make_mutex("QueueStrategy::lock"); const int n_threads; bool stop; Message::Queue mqueue; class QSThread : public Thread { public: bi::list_member_hook<> thread_q; QueueStrategy *dq; ceph::condition_variable cond; explicit QSThread(QueueStrategy *dq) : thread_q(), dq(dq) {} void* entry() { dq->entry(this); return NULL; } typedef bi::list< QSThread, bi::member_hook< QSThread, bi::list_member_hook<>, &QSThread::thread_q > > Queue; }; std::vector<std::unique_ptr<QSThread>> threads; //< all threads QSThread::Queue disp_threads; //< waiting threads public: explicit QueueStrategy(int n_threads); void ds_dispatch(Message *m) override; void shutdown() override; void start() override; void wait() override; void entry(QSThread *thrd); virtual ~QueueStrategy() {} }; #endif /* QUEUE_STRATEGY_H */
1,597
23.96875
70
h
null
ceph-main/src/test/direct_messenger/test_direct_messenger.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab #include <condition_variable> #include <mutex> #include <thread> #include <gtest/gtest.h> #include "global/global_init.h" #include "common/ceph_argparse.h" #include "DirectMessenger.h" #include "FastStrategy.h" #include "QueueStrategy.h" #include "messages/MPing.h" /// mock dispatcher that calls the given callback class MockDispatcher : public Dispatcher { std::function<void(Message*)> callback; public: MockDispatcher(CephContext *cct, std::function<void(Message*)> callback) : Dispatcher(cct), callback(std::move(callback)) {} bool ms_handle_reset(Connection *con) override { return false; } void ms_handle_remote_reset(Connection *con) override {} bool ms_handle_refused(Connection *con) override { return false; } bool ms_dispatch(Message *m) override { callback(m); m->put(); return true; } }; /// test synchronous dispatch of messenger and connection interfaces TEST(DirectMessenger, SyncDispatch) { auto cct = g_ceph_context; // use FastStrategy for synchronous dispatch DirectMessenger client(cct, entity_name_t::CLIENT(1), "client", 0, new FastStrategy()); DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); ASSERT_EQ(0, client.set_direct_peer(&server)); ASSERT_EQ(0, server.set_direct_peer(&client)); bool got_request = false; bool got_reply = false; MockDispatcher client_dispatcher(cct, [&] (Message *m) { got_reply = true; }); client.add_dispatcher_head(&client_dispatcher); MockDispatcher server_dispatcher(cct, [&] (Message *m) { got_request = true; ASSERT_EQ(0, m->get_connection()->send_message(new MPing())); }); server.add_dispatcher_head(&server_dispatcher); ASSERT_EQ(0, client.start()); ASSERT_EQ(0, server.start()); // test DirectMessenger::send_message() ASSERT_EQ(0, client.send_message(new MPing(), server.get_myinst())); ASSERT_TRUE(got_request); ASSERT_TRUE(got_reply); // test DirectConnection::send_message() { got_request = false; got_reply = false; auto conn = client.get_connection(server.get_myinst()); ASSERT_EQ(0, conn->send_message(new MPing())); ASSERT_TRUE(got_request); ASSERT_TRUE(got_reply); } // test DirectMessenger::send_message() with loopback address got_request = false; got_reply = false; ASSERT_EQ(0, client.send_message(new MPing(), client.get_myinst())); ASSERT_FALSE(got_request); // server should never see this ASSERT_TRUE(got_reply); // test DirectConnection::send_message() with loopback address { got_request = false; got_reply = false; auto conn = client.get_connection(client.get_myinst()); ASSERT_EQ(0, conn->send_message(new MPing())); ASSERT_FALSE(got_request); // server should never see this ASSERT_TRUE(got_reply); } // test DirectConnection::send_message() with loopback connection { got_request = false; got_reply = false; auto conn = client.get_loopback_connection(); ASSERT_EQ(0, conn->send_message(new MPing())); ASSERT_FALSE(got_request); // server should never see this ASSERT_TRUE(got_reply); } ASSERT_EQ(0, client.shutdown()); client.wait(); ASSERT_EQ(0, server.shutdown()); server.wait(); } /// test asynchronous dispatch of messenger and connection interfaces TEST(DirectMessenger, AsyncDispatch) { auto cct = g_ceph_context; // use QueueStrategy for async replies DirectMessenger client(cct, entity_name_t::CLIENT(1), "client", 0, new QueueStrategy(1)); DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); ASSERT_EQ(0, client.set_direct_peer(&server)); ASSERT_EQ(0, server.set_direct_peer(&client)); // condition variable to wait on ping reply std::mutex mutex; std::condition_variable cond; bool done = false; auto wait_for_reply = [&] { std::unique_lock<std::mutex> lock(mutex); while (!done) { cond.wait(lock); } done = false; // clear for reuse }; // client dispatcher signals the condition variable on reply MockDispatcher client_dispatcher(cct, [&] (Message *m) { std::lock_guard<std::mutex> lock(mutex); done = true; cond.notify_one(); }); client.add_dispatcher_head(&client_dispatcher); MockDispatcher server_dispatcher(cct, [&] (Message *m) { // hold the lock over the call to send_message() to prove that the client's // dispatch is asynchronous. if it isn't, it will deadlock std::lock_guard<std::mutex> lock(mutex); ASSERT_EQ(0, m->get_connection()->send_message(new MPing())); }); server.add_dispatcher_head(&server_dispatcher); ASSERT_EQ(0, client.start()); ASSERT_EQ(0, server.start()); // test DirectMessenger::send_message() ASSERT_EQ(0, client.send_message(new MPing(), server.get_myinst())); wait_for_reply(); // test DirectConnection::send_message() { auto conn = client.get_connection(server.get_myinst()); ASSERT_EQ(0, conn->send_message(new MPing())); } wait_for_reply(); // test DirectMessenger::send_message() with loopback address { // hold the lock to test that loopback dispatch is asynchronous std::lock_guard<std::mutex> lock(mutex); ASSERT_EQ(0, client.send_message(new MPing(), client.get_myinst())); } wait_for_reply(); // test DirectConnection::send_message() with loopback address { auto conn = client.get_connection(client.get_myinst()); // hold the lock to test that loopback dispatch is asynchronous std::lock_guard<std::mutex> lock(mutex); ASSERT_EQ(0, conn->send_message(new MPing())); } wait_for_reply(); // test DirectConnection::send_message() with loopback connection { auto conn = client.get_loopback_connection(); // hold the lock to test that loopback dispatch is asynchronous std::lock_guard<std::mutex> lock(mutex); ASSERT_EQ(0, conn->send_message(new MPing())); } wait_for_reply(); ASSERT_EQ(0, client.shutdown()); client.wait(); ASSERT_EQ(0, server.shutdown()); server.wait(); } /// test that wait() blocks until shutdown() TEST(DirectMessenger, WaitShutdown) { auto cct = g_ceph_context; // test wait() with both Queue- and FastStrategy DirectMessenger client(cct, entity_name_t::CLIENT(1), "client", 0, new QueueStrategy(1)); DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); ASSERT_EQ(0, client.set_direct_peer(&server)); ASSERT_EQ(0, server.set_direct_peer(&client)); ASSERT_EQ(0, client.start()); ASSERT_EQ(0, server.start()); std::atomic<bool> client_waiting{false}; std::atomic<bool> server_waiting{false}; // spawn threads to wait() on each of the messengers std::thread client_thread([&] { client_waiting = true; client.wait(); client_waiting = false; }); std::thread server_thread([&] { server_waiting = true; server.wait(); server_waiting = false; }); // give them time to start std::this_thread::sleep_for(std::chrono::milliseconds(50)); ASSERT_TRUE(client_waiting); ASSERT_TRUE(server_waiting); // call shutdown to unblock the waiting threads ASSERT_EQ(0, client.shutdown()); ASSERT_EQ(0, server.shutdown()); client_thread.join(); server_thread.join(); ASSERT_FALSE(client_waiting); ASSERT_FALSE(server_waiting); } /// test connection and messenger interfaces after mark_down() TEST(DirectMessenger, MarkDown) { auto cct = g_ceph_context; DirectMessenger client(cct, entity_name_t::CLIENT(1), "client", 0, new FastStrategy()); DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); ASSERT_EQ(0, client.set_direct_peer(&server)); ASSERT_EQ(0, server.set_direct_peer(&client)); ASSERT_EQ(0, client.start()); ASSERT_EQ(0, server.start()); auto client_to_server = client.get_connection(server.get_myinst()); auto server_to_client = server.get_connection(client.get_myinst()); ASSERT_TRUE(client_to_server->is_connected()); ASSERT_TRUE(server_to_client->is_connected()); // mark_down() breaks the connection on both sides client_to_server->mark_down(); ASSERT_FALSE(client_to_server->is_connected()); ASSERT_EQ(-ENOTCONN, client_to_server->send_message(new MPing())); ASSERT_EQ(-ENOTCONN, client.send_message(new MPing(), server.get_myinst())); ASSERT_FALSE(server_to_client->is_connected()); ASSERT_EQ(-ENOTCONN, server_to_client->send_message(new MPing())); ASSERT_EQ(-ENOTCONN, server.send_message(new MPing(), client.get_myinst())); ASSERT_EQ(0, client.shutdown()); client.wait(); ASSERT_EQ(0, server.shutdown()); server.wait(); } /// test connection and messenger interfaces after shutdown() TEST(DirectMessenger, SendShutdown) { auto cct = g_ceph_context; // put client on the heap so we can free it early std::unique_ptr<DirectMessenger> client{ new DirectMessenger(cct, entity_name_t::CLIENT(1), "client", 0, new FastStrategy())}; DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); ASSERT_EQ(0, client->set_direct_peer(&server)); ASSERT_EQ(0, server.set_direct_peer(client.get())); ASSERT_EQ(0, client->start()); ASSERT_EQ(0, server.start()); const auto client_inst = client->get_myinst(); const auto server_inst = server.get_myinst(); auto client_to_server = client->get_connection(server_inst); auto server_to_client = server.get_connection(client_inst); ASSERT_TRUE(client_to_server->is_connected()); ASSERT_TRUE(server_to_client->is_connected()); // shut down the client to break connections ASSERT_EQ(0, client->shutdown()); client->wait(); ASSERT_FALSE(client_to_server->is_connected()); ASSERT_EQ(-ENOTCONN, client_to_server->send_message(new MPing())); ASSERT_EQ(-ENOTCONN, client->send_message(new MPing(), server_inst)); // free the client connection/messenger to test that calls to the server no // longer try to dereference them client_to_server.reset(); client.reset(); ASSERT_FALSE(server_to_client->is_connected()); ASSERT_EQ(-ENOTCONN, server_to_client->send_message(new MPing())); ASSERT_EQ(-ENOTCONN, server.send_message(new MPing(), client_inst)); ASSERT_EQ(0, server.shutdown()); server.wait(); } /// test connection and messenger interfaces after bind() TEST(DirectMessenger, Bind) { auto cct = g_ceph_context; DirectMessenger client(cct, entity_name_t::CLIENT(1), "client", 0, new FastStrategy()); DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); entity_addr_t client_addr; client_addr.set_family(AF_INET); client_addr.set_port(1); // client bind succeeds before set_direct_peer() ASSERT_EQ(0, client.bind(client_addr)); ASSERT_EQ(0, client.set_direct_peer(&server)); ASSERT_EQ(0, server.set_direct_peer(&client)); // server bind fails after set_direct_peer() entity_addr_t empty_addr; ASSERT_EQ(-EINVAL, server.bind(empty_addr)); ASSERT_EQ(0, client.start()); ASSERT_EQ(0, server.start()); auto client_to_server = client.get_connection(server.get_myinst()); auto server_to_client = server.get_connection(client.get_myinst()); ASSERT_TRUE(client_to_server->is_connected()); ASSERT_TRUE(server_to_client->is_connected()); // no address in connection to server ASSERT_EQ(empty_addr, client_to_server->get_peer_addr()); // bind address is reflected in connection to client ASSERT_EQ(client_addr, server_to_client->get_peer_addr()); // mark_down() with bind address breaks the connection server.mark_down(client_addr); ASSERT_FALSE(client_to_server->is_connected()); ASSERT_FALSE(server_to_client->is_connected()); ASSERT_EQ(0, client.shutdown()); client.wait(); ASSERT_EQ(0, server.shutdown()); server.wait(); } /// test connection and messenger interfaces before calls to set_direct_peer() TEST(DirectMessenger, StartWithoutPeer) { auto cct = g_ceph_context; DirectMessenger client(cct, entity_name_t::CLIENT(1), "client", 0, new FastStrategy()); DirectMessenger server(cct, entity_name_t::CLIENT(2), "server", 0, new FastStrategy()); // can't start until set_direct_peer() ASSERT_EQ(-EINVAL, client.start()); ASSERT_EQ(-EINVAL, server.start()); ASSERT_EQ(0, client.set_direct_peer(&server)); // only client can start ASSERT_EQ(0, client.start()); ASSERT_EQ(-EINVAL, server.start()); // client has a connection but can't send auto conn = client.get_connection(server.get_myinst()); ASSERT_NE(nullptr, conn); ASSERT_FALSE(conn->is_connected()); ASSERT_EQ(-ENOTCONN, conn->send_message(new MPing())); ASSERT_EQ(-ENOTCONN, client.send_message(new MPing(), server.get_myinst())); ASSERT_EQ(0, client.shutdown()); client.wait(); } int main(int argc, char **argv) { // command-line arguments auto args = argv_to_vec(argc, argv); auto cct = global_init(nullptr, args, CEPH_ENTITY_TYPE_ANY, CODE_ENVIRONMENT_DAEMON, CINIT_FLAG_NO_DEFAULT_CONFIG_FILE); common_init_finish(cct.get()); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
13,475
29.837529
79
cc
null
ceph-main/src/test/dokan/dokan.cc
/* * Ceph - scalable distributed file system * * Copyright (C) 2022 Cloudbase Solutions * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #include <windows.h> #include <iostream> #include <fstream> #include <filesystem> #include <sys/socket.h> #include <direct.h> #include "gtest/gtest.h" #include "common/SubProcess.h" #include "common/run_cmd.h" #include "include/uuid.h" #define DEFAULT_MOUNTPOINT "X:\\" #define MOUNT_POLL_ATTEMPT 10 #define MOUNT_POLL_INTERVAL_MS 1000 #define TEST_VOL_SERIAL "1234567890" #define MByte 1048576 namespace fs = std::filesystem; using namespace std::chrono_literals; std::string get_uuid() { uuid_d suffix; suffix.generate_random(); return suffix.to_string(); } bool move_eof(HANDLE handle, LARGE_INTEGER offset) { // Move file pointer to FILE_BEGIN + offset if (!SetFilePointerEx(handle, offset, NULL, FILE_BEGIN)) { std::cerr << "Setting file pointer failed. err: " << GetLastError() << std::endl; return false; } if (!SetEndOfFile(handle)) { std::cerr << "Setting EOF failed. err: " << GetLastError() << std::endl; return false; } return true; } void write_file(std::string file_path, std::string data) { std::ofstream file; file.open(file_path); ASSERT_TRUE(file.is_open()) << "Failed to open file: " << file_path; file << data; file.flush(); file.close(); } void expect_write_failure(std::string file_path) { std::ofstream file; file.open(file_path); ASSERT_FALSE(file.is_open()); } std::string read_file(std::string file_path) { std::ifstream file; file.open(file_path); std::string content((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>()); file.close(); return content; } void check_write_file(std::string file_path, std::string data) { write_file(file_path, data); ASSERT_EQ(read_file(file_path), data); } int wait_for_mount(std::string mount_path) { std::cerr << "Waiting for mount: " << mount_path << std::endl; int attempts = 0; do { attempts++; if (attempts < MOUNT_POLL_ATTEMPT) Sleep(MOUNT_POLL_INTERVAL_MS); } while (!fs::exists(mount_path) && attempts < MOUNT_POLL_ATTEMPT); if (!fs::exists(mount_path)) { std::cerr << "Timed out waiting for ceph-dokan mount: " << mount_path << std::endl; return -ETIMEDOUT; } std::cerr << "Successfully mounted: " << mount_path << std::endl; return 0; } void map_dokan(SubProcess** mount, const char* mountpoint) { SubProcess* new_mount = new SubProcess("ceph-dokan"); new_mount->add_cmd_args("map", "--win-vol-name", "TestCeph", "--win-vol-serial", TEST_VOL_SERIAL, "-l", mountpoint, NULL); *mount = new_mount; ASSERT_EQ(new_mount->spawn(), 0); ASSERT_EQ(wait_for_mount(mountpoint), 0); } void map_dokan_read_only( SubProcess** mount, const char* mountpoint ) { SubProcess* new_mount = new SubProcess("ceph-dokan"); new_mount->add_cmd_args("map", "--win-vol-name", "TestCeph", "--win-vol-serial", TEST_VOL_SERIAL, "--read-only", "-l", mountpoint, NULL); *mount = new_mount; ASSERT_EQ(new_mount->spawn(), 0); ASSERT_EQ(wait_for_mount(mountpoint), 0); std::cerr << mountpoint << " mounted in read-only mode" << std::endl; } void map_dokan_with_maxpath( SubProcess** mount, const char* mountpoint, uint64_t max_path_len) { SubProcess* new_mount = new SubProcess("ceph-dokan"); new_mount->add_cmd_args("map", "--debug", "--dokan-stderr", "--win-vol-name", "TestCeph", "--win-vol-serial", TEST_VOL_SERIAL, "--max-path-len", (std::to_string(max_path_len)).c_str(), "-l", mountpoint, NULL); *mount = new_mount; ASSERT_EQ(new_mount->spawn(), 0); if (256 <= max_path_len && max_path_len <= 4096) { ASSERT_EQ(wait_for_mount(mountpoint), 0); } else { ASSERT_NE(wait_for_mount(mountpoint), 0); } } void unmap_dokan(SubProcess* mount, const char* mountpoint) { std::string ret = run_cmd("ceph-dokan", "unmap", "-l", mountpoint, (char*)NULL); ASSERT_EQ(ret, "") << "Failed unmapping: " << mountpoint; std::cerr<< "Unmounted: " << mountpoint << std::endl; ASSERT_EQ(mount->join(), 0); } int get_volume_max_path(std::string mountpoint){ char volume_name[MAX_PATH + 1] = { 0 }; char file_system_name[MAX_PATH + 1] = { 0 }; DWORD serial_number = 0; DWORD max_component_len = 0; DWORD file_system_flags = 0; if (GetVolumeInformation( mountpoint.c_str(), volume_name, sizeof(volume_name), &serial_number, &max_component_len, &file_system_flags, file_system_name, sizeof(file_system_name)) != TRUE) { std::cerr << "GetVolumeInformation() failed, error: " << GetLastError() << std::endl; } return max_component_len; } static SubProcess* shared_mount = nullptr; class DokanTests : public testing::Test { protected: static void SetUpTestSuite() { map_dokan(&shared_mount, DEFAULT_MOUNTPOINT); } static void TearDownTestSuite() { if (shared_mount) { unmap_dokan(shared_mount, DEFAULT_MOUNTPOINT); } shared_mount = nullptr; } }; TEST_F(DokanTests, test_mount) { std::string mountpoint = "Y:\\"; SubProcess* mount = nullptr; map_dokan(&mount, mountpoint.c_str()); unmap_dokan(mount, mountpoint.c_str()); } TEST_F(DokanTests, test_mount_read_only) { std::string mountpoint = "Z:\\"; std::string data = "abc123"; std::string success_file_path = "ro_success_" + get_uuid(); std::string failed_file_path = "ro_fail_" + get_uuid(); SubProcess* mount = nullptr; map_dokan(&mount, mountpoint.c_str()); check_write_file(mountpoint + success_file_path, data); ASSERT_TRUE(fs::exists(mountpoint + success_file_path)); unmap_dokan(mount, mountpoint.c_str()); mount = nullptr; map_dokan_read_only(&mount, mountpoint.c_str()); expect_write_failure(mountpoint + failed_file_path); ASSERT_FALSE(fs::exists(mountpoint + failed_file_path)); ASSERT_TRUE(fs::exists(mountpoint + success_file_path)); ASSERT_EQ(read_file(mountpoint + success_file_path), data); std::string exception_msg( "filesystem error: cannot remove: No such device [" + mountpoint + success_file_path + "]"); EXPECT_THROW({ try { fs::remove(mountpoint + success_file_path); } catch(const fs::filesystem_error &e) { EXPECT_STREQ(e.what(), exception_msg.c_str()); throw; } }, fs::filesystem_error); unmap_dokan(mount, mountpoint.c_str()); map_dokan(&mount, mountpoint.c_str()); ASSERT_TRUE(fs::exists(mountpoint + success_file_path)); ASSERT_TRUE(fs::remove(mountpoint + success_file_path)); unmap_dokan(mount, mountpoint.c_str()); } TEST_F(DokanTests, test_delete_on_close) { std::string file_path = DEFAULT_MOUNTPOINT"file_" + get_uuid(); HANDLE hFile = CreateFile( file_path.c_str(), GENERIC_WRITE, // open for writing 0, // sharing mode, none in this case 0, // use default security descriptor CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, 0); ASSERT_NE(hFile, INVALID_HANDLE_VALUE) << "Could not open file: " << DEFAULT_MOUNTPOINT"test_create.txt " << "err: " << GetLastError() << std::endl; ASSERT_NE(CloseHandle(hFile), 0); // FILE_FLAG_DELETE_ON_CLOSE is used ASSERT_FALSE(fs::exists(file_path)); } TEST_F(DokanTests, test_io) { std::string data = "abcdef"; std::string file_path = "test_io_" + get_uuid(); std::string mountpoint = "I:\\"; SubProcess* mount = nullptr; map_dokan(&mount, mountpoint.c_str()); check_write_file(mountpoint + file_path, data); ASSERT_TRUE(fs::exists(mountpoint + file_path)); unmap_dokan(mount, mountpoint.c_str()); mountpoint = "O:\\"; mount = nullptr; map_dokan(&mount, mountpoint.c_str()); ASSERT_TRUE(fs::exists(mountpoint + file_path)); EXPECT_EQ(data, read_file(mountpoint + file_path)); ASSERT_TRUE(fs::remove((mountpoint + file_path).c_str())); ASSERT_FALSE(fs::exists(mountpoint + file_path)); unmap_dokan(mount, mountpoint.c_str()); } TEST_F(DokanTests, test_subfolders) { std::string base_dir_path = DEFAULT_MOUNTPOINT"base_dir_" + get_uuid() + "\\"; std::string sub_dir_path = base_dir_path + "test_sub_dir" + get_uuid(); std::string base_dir_file = base_dir_path + "file_" + get_uuid(); std::string sub_dir_file = sub_dir_path + "file_" + get_uuid(); std::string data = "abc"; ASSERT_EQ(fs::create_directory(base_dir_path), true); ASSERT_TRUE(fs::exists(base_dir_path)); ASSERT_EQ(fs::create_directory(sub_dir_path), true); ASSERT_TRUE(fs::exists(sub_dir_path)); check_write_file(base_dir_file, data); ASSERT_TRUE(fs::exists(base_dir_file)); check_write_file(sub_dir_file, data); ASSERT_TRUE(fs::exists(sub_dir_file)); ASSERT_TRUE(fs::remove((sub_dir_file).c_str())) << "Failed to remove file: " << sub_dir_file; ASSERT_FALSE(fs::exists(sub_dir_file)); // Remove empty dir ASSERT_TRUE(fs::remove((sub_dir_path).c_str())) << "Failed to remove directory: " << sub_dir_path; ASSERT_FALSE(fs::exists(sub_dir_file)); ASSERT_NE(fs::remove_all((base_dir_path).c_str()), 0) << "Failed to remove directory: " << base_dir_path; ASSERT_FALSE(fs::exists(sub_dir_file)); } TEST_F(DokanTests, test_find_files) { std::string basedir_path = "X:/find_" + get_uuid(); std::string subdir_path = basedir_path + "/dir_" + get_uuid(); std::string file1_path = basedir_path + "/file1_" + get_uuid(); std::string file2_path = subdir_path + "/file2_" + get_uuid(); ASSERT_TRUE( fs::create_directories(subdir_path) ); std::ofstream{file1_path}; std::ofstream{file2_path}; std::vector<std::string> paths; for (const auto & entry : fs::recursive_directory_iterator(basedir_path) ) { paths.push_back(entry.path().generic_string()); } ASSERT_NE(std::find(begin(paths), end(paths), subdir_path), end(paths)); ASSERT_NE(std::find(begin(paths), end(paths), file1_path), end(paths)); ASSERT_NE(std::find(begin(paths), end(paths), file2_path), end(paths)); // clean-up ASSERT_NE(fs::remove_all(basedir_path), 0); } TEST_F(DokanTests, test_move_file) { std::string dir1_path = DEFAULT_MOUNTPOINT "test_mv_1_" + get_uuid() + "\\"; std::string dir2_path = DEFAULT_MOUNTPOINT "test_mv_2_" + get_uuid() + "\\"; std::string file_name = "mv_file_" + get_uuid(); std::string data = "abcd"; ASSERT_TRUE(fs::create_directory(dir1_path)); ASSERT_TRUE(fs::create_directory(dir2_path)); check_write_file(dir1_path + file_name, data); fs::rename(dir1_path + file_name, dir2_path + file_name); ASSERT_TRUE(fs::exists(dir2_path + file_name)); ASSERT_FALSE(fs::exists(dir1_path + file_name)); ASSERT_EQ(data, read_file(dir2_path + file_name)); // clean-up ASSERT_NE(fs::remove_all(dir1_path),0); ASSERT_NE(fs::remove_all(dir2_path),0); } TEST_F(DokanTests, test_max_path) { std::string mountpoint = "P:\\"; std::string extended_mountpoint = "\\\\?\\" + mountpoint; SubProcess* mount = nullptr; char dir[200] = { 0 }; char file[200] = { 0 }; std::string data = "abcd1234"; memset(dir, 'd', sizeof(dir) - 1); memset(file, 'f', sizeof(file) - 1); uint64_t max_path_len = 4096; map_dokan_with_maxpath(&mount, mountpoint.c_str(), max_path_len); EXPECT_EQ(get_volume_max_path(extended_mountpoint), max_path_len); std::string long_dir_path = extended_mountpoint; std::string dir_names[15]; for (int i = 0; i < 15; i++) { std::string crt_dir = std::string(dir) + "_" + get_uuid() + "\\"; long_dir_path.append(crt_dir); int stat = _mkdir(long_dir_path.c_str()); ASSERT_EQ(stat, 0) << "Error creating directory " << i << ": " << GetLastError() << std::endl; dir_names[i] = crt_dir; } std::string file_path = long_dir_path + "\\" + std::string(file) + "_" + get_uuid(); check_write_file(file_path, data); // clean-up // fs::remove is unable to handle long Windows paths EXPECT_NE(DeleteFileA(file_path.c_str()), 0); for (int i = 14; i >= 0; i--) { std::string remove_dir = extended_mountpoint; for (int j = 0; j <= i; j++) { remove_dir.append(dir_names[j]); } EXPECT_NE(RemoveDirectoryA(remove_dir.c_str()), 0); } unmap_dokan(mount, mountpoint.c_str()); // value exceeds 32767, so a failure is expected max_path_len = 32770; map_dokan_with_maxpath(&mount, mountpoint.c_str(), max_path_len); ASSERT_FALSE(fs::exists(mountpoint)); // value is below 256, so a failure is expected max_path_len = 150; map_dokan_with_maxpath(&mount, mountpoint.c_str(), max_path_len); ASSERT_FALSE(fs::exists(mountpoint)); // default value map_dokan(&mount, mountpoint.c_str()); EXPECT_EQ(get_volume_max_path(mountpoint.c_str()), 256); unmap_dokan(mount, mountpoint.c_str()); } TEST_F(DokanTests, test_set_eof) { std::string file_path = DEFAULT_MOUNTPOINT"test_eof_" + get_uuid(); HANDLE hFile = CreateFile( file_path.c_str(), GENERIC_WRITE, // open for writing 0, // sharing mode, none in this case 0, // use default security descriptor CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, 0); ASSERT_NE(hFile, INVALID_HANDLE_VALUE) << "Could not open file: " << DEFAULT_MOUNTPOINT"test_create.txt " << "err: " << GetLastError() << std::endl; LARGE_INTEGER offset; offset.QuadPart = 2 * MByte; // 2MB LARGE_INTEGER file_size; ASSERT_TRUE(move_eof(hFile, offset)); ASSERT_NE(GetFileSizeEx(hFile, &file_size), 0); EXPECT_EQ(file_size.QuadPart, offset.QuadPart); offset.QuadPart = MByte; // 1MB ASSERT_TRUE(move_eof(hFile, offset)); ASSERT_NE(GetFileSizeEx(hFile, &file_size), 0); EXPECT_EQ(file_size.QuadPart, offset.QuadPart); ASSERT_NE(CloseHandle(hFile), 0); // FILE_FLAG_DELETE_ON_CLOSE is used ASSERT_FALSE(fs::exists(file_path)); } TEST_F(DokanTests, test_set_alloc_size) { std::string file_path = DEFAULT_MOUNTPOINT"test_alloc_size_" + get_uuid(); HANDLE hFile = CreateFile( file_path.c_str(), GENERIC_WRITE, // open for writing 0, // sharing mode, none in this case 0, // use default security descriptor CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, 0); ASSERT_NE(hFile, INVALID_HANDLE_VALUE) << "Could not open file: " << DEFAULT_MOUNTPOINT"test_create.txt " << "err: " << GetLastError() << std::endl; LARGE_INTEGER li; li.QuadPart = MByte; FILE_ALLOCATION_INFO fai; fai.AllocationSize = li; ASSERT_NE(SetFileInformationByHandle( hFile, FileAllocationInfo, &fai, sizeof(FILE_ALLOCATION_INFO) ),0) << "Error: " << GetLastError(); LARGE_INTEGER offset; offset.QuadPart = 2 * MByte; LARGE_INTEGER file_size; ASSERT_TRUE(move_eof(hFile, offset)); ASSERT_NE(GetFileSizeEx(hFile, &file_size), 0); EXPECT_EQ(file_size.QuadPart, offset.QuadPart); offset.QuadPart = MByte; ASSERT_TRUE(move_eof(hFile, offset)); ASSERT_NE(GetFileSizeEx(hFile, &file_size), 0); EXPECT_EQ(file_size.QuadPart, offset.QuadPart); ASSERT_NE(CloseHandle(hFile), 0); // FILE_FLAG_DELETE_ON_CLOSE is used ASSERT_FALSE(fs::exists(file_path)); } TEST_F(DokanTests, test_file_type) { std::string test_dir = DEFAULT_MOUNTPOINT"test_info_" + get_uuid() + "\\"; std::string file_path = test_dir + "file_" + get_uuid(); std::string dir_path = test_dir + "dir_" + get_uuid() + "\\"; ASSERT_TRUE(fs::create_directory(test_dir)); std::ofstream{file_path}; ASSERT_TRUE(fs::create_directory(dir_path)); ASSERT_TRUE(fs::is_regular_file(fs::status(file_path))); ASSERT_TRUE(fs::is_directory(fs::status(dir_path))); // clean-up fs::remove_all(test_dir); } TEST_F(DokanTests, test_volume_info) { char volume_name[MAX_PATH + 1] = { 0 }; char file_system_name[MAX_PATH + 1] = { 0 }; DWORD serial_number = 0; DWORD max_component_len = 0; DWORD file_system_flags = 0; ASSERT_EQ( GetVolumeInformation( DEFAULT_MOUNTPOINT, volume_name, sizeof(volume_name), &serial_number, &max_component_len, &file_system_flags, file_system_name, sizeof(file_system_name)),TRUE) << "GetVolumeInformation() failed, error: " << GetLastError() << std::endl; ASSERT_STREQ(volume_name, "TestCeph") << "Received: " << volume_name << std::endl; ASSERT_STREQ(file_system_name, "Ceph") << "Received: " << file_system_name << std::endl; ASSERT_EQ(max_component_len, 256); ASSERT_EQ(serial_number, std::stoi(TEST_VOL_SERIAL)) << "Received: " << serial_number << std::endl; // Consider adding specific flags // and check for them // ASSERT_EQ(file_system_flags, 271); } TEST_F(DokanTests, test_get_free_space) { std::error_code ec; const std::filesystem::space_info si = std::filesystem::space(DEFAULT_MOUNTPOINT, ec); ASSERT_EQ(ec.value(), 0); ASSERT_NE(static_cast<std::intmax_t>(si.capacity), 0); ASSERT_NE(static_cast<std::intmax_t>(si.free), 0); ASSERT_NE(static_cast<std::intmax_t>(si.available), 0); } TEST_F(DokanTests, test_file_timestamp) { std::string file1 = DEFAULT_MOUNTPOINT"test_time1_" + get_uuid(); std::string file2 = DEFAULT_MOUNTPOINT"test_time2_" + get_uuid(); std::string file3 = DEFAULT_MOUNTPOINT"test_time3_" + get_uuid(); std::ofstream{file1}; Sleep(1000); std::ofstream{file2}; Sleep(1000); std::ofstream{file3}; int64_t file1_creation = fs::last_write_time(file1) .time_since_epoch().count(); int64_t file2_creation = fs::last_write_time(file2) .time_since_epoch().count(); int64_t file3_creation = fs::last_write_time(file3) .time_since_epoch().count(); EXPECT_LT(file1_creation, file2_creation); EXPECT_LT(file2_creation, file3_creation); // add 1h to file 1 creation time fs::file_time_type file1_time = fs::last_write_time(file1); fs::last_write_time(file1, file1_time + 1h); int64_t file1_new_time = fs::last_write_time(file1) .time_since_epoch().count(); EXPECT_EQ((file1_time + 1h).time_since_epoch().count(), file1_new_time); EXPECT_GT(file1_new_time, file2_creation); EXPECT_GT(file1_new_time, file3_creation); ASSERT_TRUE(fs::remove(file1)); ASSERT_TRUE(fs::remove(file2)); ASSERT_TRUE(fs::remove(file3)); } TEST_F(DokanTests, test_delete_disposition) { std::string file_path = DEFAULT_MOUNTPOINT"test_disp_" + get_uuid(); HANDLE hFile = CreateFile(file_path.c_str(), GENERIC_ALL, // required for delete 0, // exclusive access NULL, CREATE_ALWAYS, 0, NULL); ASSERT_NE(hFile, INVALID_HANDLE_VALUE) << "Could not open file: " << file_path << "err: " << GetLastError() << std::endl; FILE_DISPOSITION_INFO fdi; fdi.DeleteFile = TRUE; // marking for deletion ASSERT_NE( SetFileInformationByHandle( hFile, FileDispositionInfo, &fdi, sizeof(FILE_DISPOSITION_INFO)), 0); ASSERT_NE(CloseHandle(hFile), 0); ASSERT_FALSE(fs::exists(file_path)); } bool check_create_disposition(std::string path, DWORD disposition) { HANDLE hFile = CreateFile(path.c_str(), GENERIC_WRITE, 0, // exclusive access NULL, disposition, 0, NULL); if(hFile == INVALID_HANDLE_VALUE) { return false; } if(CloseHandle(hFile) == 0) { return false; } return true; } TEST_F(DokanTests, test_create_dispositions) { std::string file_path = DEFAULT_MOUNTPOINT"test_create_" + get_uuid(); std::string non_existant_file = DEFAULT_MOUNTPOINT "test_create_" + get_uuid(); EXPECT_TRUE( check_create_disposition(file_path, CREATE_NEW)); // CREATE_ALWAYS with existing file EXPECT_TRUE( check_create_disposition(file_path, CREATE_ALWAYS)); EXPECT_EQ(GetLastError(), ERROR_ALREADY_EXISTS); // CREATE_NEW with existing file EXPECT_FALSE( check_create_disposition(file_path, CREATE_NEW)); EXPECT_EQ(GetLastError(), ERROR_FILE_EXISTS); // OPEN_EXISTING with existing file EXPECT_TRUE( check_create_disposition(file_path, OPEN_EXISTING)); ASSERT_FALSE(fs::exists(non_existant_file)); // OPEN_EXISTING with non-existant file EXPECT_FALSE( check_create_disposition(non_existant_file, OPEN_EXISTING)); EXPECT_EQ(GetLastError(), ERROR_FILE_NOT_FOUND); // OPEN_ALWAYS with existing file EXPECT_TRUE( check_create_disposition(file_path, OPEN_ALWAYS)); EXPECT_EQ(GetLastError(), ERROR_ALREADY_EXISTS); ASSERT_FALSE(fs::exists(non_existant_file)); // OPEN_ALWAYS with non-existant file EXPECT_TRUE( check_create_disposition(non_existant_file, OPEN_ALWAYS)); EXPECT_EQ(GetLastError(), 0); ASSERT_TRUE(fs::remove(non_existant_file)); // TRUNCATE_EXISTING with existing file EXPECT_TRUE( check_create_disposition(file_path, TRUNCATE_EXISTING)); // TRUNCATE_EXISTING with non-existant file EXPECT_FALSE( check_create_disposition(non_existant_file, TRUNCATE_EXISTING)); EXPECT_EQ(GetLastError(), ERROR_FILE_NOT_FOUND); // clean-up ASSERT_TRUE(fs::remove(file_path)); }
24,051
30.15544
80
cc
null
ceph-main/src/test/encoding/check-generated.sh
#!/usr/bin/env bash set -e source $(dirname $0)/../detect-build-env-vars.sh source $CEPH_ROOT/qa/standalone/ceph-helpers.sh dir=$1 tmp1=`mktemp /tmp/typ-XXXXXXXXX` tmp2=`mktemp /tmp/typ-XXXXXXXXX` tmp3=`mktemp /tmp/typ-XXXXXXXXX` tmp4=`mktemp /tmp/typ-XXXXXXXXX` failed=0 numtests=0 echo "checking ceph-dencoder generated test instances..." echo "numgen type" while read type; do num=`ceph-dencoder type $type count_tests` echo "$num $type" for n in `seq 1 1 $num 2>/dev/null`; do pids="" run_in_background pids save_stdout "$tmp1" ceph-dencoder type "$type" select_test "$n" dump_json run_in_background pids save_stdout "$tmp2" ceph-dencoder type "$type" select_test "$n" encode decode dump_json run_in_background pids save_stdout "$tmp3" ceph-dencoder type "$type" select_test "$n" copy dump_json run_in_background pids save_stdout "$tmp4" ceph-dencoder type "$type" select_test "$n" copy_ctor dump_json wait_background pids if [ $? -ne 0 ]; then echo "**** $type test $n encode+decode check failed ****" echo " ceph-dencoder type $type select_test $n encode decode" failed=$(($failed + 3)) continue fi # nondeterministic classes may dump nondeterministically. compare # the sorted json output. this is a weaker test, but is better # than nothing. deterministic=0 if ceph-dencoder type "$type" is_deterministic; then deterministic=1 fi if [ $deterministic -eq 0 ]; then echo " sorting json output for nondeterministic object" for f in $tmp1 $tmp2 $tmp3 $tmp4; do sort $f | sed 's/,$//' > $f.new mv $f.new $f done fi if ! cmp $tmp1 $tmp2; then echo "**** $type test $n dump_json check failed ****" echo " ceph-dencoder type $type select_test $n dump_json > $tmp1" echo " ceph-dencoder type $type select_test $n encode decode dump_json > $tmp2" diff $tmp1 $tmp2 failed=$(($failed + 1)) fi if ! cmp $tmp1 $tmp3; then echo "**** $type test $n copy dump_json check failed ****" echo " ceph-dencoder type $type select_test $n dump_json > $tmp1" echo " ceph-dencoder type $type select_test $n copy dump_json > $tmp2" diff $tmp1 $tmp2 failed=$(($failed + 1)) fi if ! cmp $tmp1 $tmp4; then echo "**** $type test $n copy_ctor dump_json check failed ****" echo " ceph-dencoder type $type select_test $n dump_json > $tmp1" echo " ceph-dencoder type $type select_test $n copy_ctor dump_json > $tmp2" diff $tmp1 $tmp2 failed=$(($failed + 1)) fi if [ $deterministic -ne 0 ]; then run_in_background pids ceph-dencoder type "$type" select_test $n encode export "$tmp1" run_in_background pids ceph-dencoder type "$type" select_test $n encode decode encode export "$tmp2" wait_background pids if ! cmp $tmp1 $tmp2; then echo "**** $type test $n binary reencode check failed ****" echo " ceph-dencoder type $type select_test $n encode export $tmp1" echo " ceph-dencoder type $type select_test $n encode decode encode export $tmp2" diff <(hexdump -C $tmp1) <(hexdump -C $tmp2) failed=$(($failed + 1)) fi fi numtests=$(($numtests + 3)) done done < <(ceph-dencoder list_types) rm -f $tmp1 $tmp2 $tmp3 $tmp4 if [ $failed -gt 0 ]; then echo "FAILED $failed / $numtests tests." exit 1 fi echo "passed $numtests tests."
3,335
31.705882
111
sh
null
ceph-main/src/test/encoding/generate-corpus-objects.sh
#!/usr/bin/env bash set -ex BDIR=`pwd` p=$1 echo path $p test ! -d $p mkdir $p strings bin/ceph-osd | grep "^$p/%s__%d.%x" v=`git describe | cut -c 2-` echo version $v echo 'binaries look ok, vstarting' echo MON=3 MDS=3 OSD=5 MDS=3 MGR=2 RGW=1 ../src/vstart.sh -x -n -l --bluestore -e export PATH=bin:$PATH # do some work to generate a hopefully braod set of object instances echo 'starting some background work' ../qa/workunits/rados/test.sh & ../qa/workunits/rbd/test_librbd.sh & ../qa/workunits/libcephfs/test.sh & ../qa/workunits/rgw/run-s3tests.sh & ceph-syn --syn makedirs 3 3 3 & echo 'waiting a bit' sleep 10 echo 'triggering some recovery' kill -9 `cat out/osd.0.pid` sleep 10 ceph osd out 0 sleep 10 init-ceph start osd.0 ceph osd in 0 sleep 5 echo 'triggering mds work' bin/ceph mds fail 0 echo 'waiting for worker to join (and ignoring errors)' wait || true echo 'importing' ../src/test/encoding/import.sh $p $v ../ceph-object-corpus/archive for d in ../ceph-object-corpus/archive/$v/objects/* do echo prune $d ../ceph-object-corpus/bin/prune.sh $d 25 done echo 'done'
1,105
17.433333
76
sh
null
ceph-main/src/test/encoding/identity.sh
#!/bin/sh -e dir=$1 set -e tmp1=`mktemp /tmp/typ-XXXXXXXXX` tmp2=`mktemp /tmp/typ-XXXXXXXXX` for type in `ls $dir` do if ./ceph-dencoder type $type 2>/dev/null; then echo "type $type" for o in `ls $dir/$type`; do f="$dir/$type/$o" echo "\t$f" ./ceph-dencoder type $type import $f decode dump_json > $tmp1 ./ceph-dencoder type $type import $f decode encode decode dump_json > $tmp2 cmp $tmp1 $tmp2 || exit 1 ./ceph-dencoder type $type import $f decode encode export $tmp1 cmp $tmp1 $f || exit 1 done else echo "skip $type" fi done rm -f $tmp1 $tmp2 echo OK
664
19.151515
87
sh
null
ceph-main/src/test/encoding/import-generated.sh
#!/bin/sh -e archive=$1 [ -d "$archive" ] || echo "usage: $0 <archive>" ver=`bin/ceph-dencoder version` echo "version $ver" [ -d "$archive/$ver" ] || mkdir "$archive/$ver" tmp1=`mktemp /tmp/typ-XXXXXXXXX` echo "numgen\ttype" for type in `bin/ceph-dencoder list_types`; do [ -d "$archive/$ver/objects/$type" ] || mkdir -p "$archive/$ver/objects/$type" num=`bin/ceph-dencoder type $type count_tests` echo "$num\t$type" max=$(($num - 1)) for n in `seq 0 $max`; do bin/ceph-dencoder type $type select_test $n encode export $tmp1 md=`md5sum $tmp1 | awk '{print $1}'` echo "\t$md" [ -e "$archive/$ver/objects/$type/$md" ] || cp $tmp1 $archive/$ver/objects/$type/$md done done rm $tmp1
716
22.129032
85
sh
null
ceph-main/src/test/encoding/import.sh
#!/bin/sh -e src=$1 ver=$2 archive=$3 [ -d "$archive" ] && [ -d "$src" ] || echo "usage: $0 <srcdir> <version> <archive>" [ -d "$archive/$ver" ] || mkdir "$archive/$ver" dest_dir="$archive/$ver/objects" [ -d "$dest_dir" ] || mkdir "$dest_dir" for f in `find $src -type f` do n=`basename $f` type=`echo $n | sed 's/__.*//'` md=`md5sum $f | awk '{print $1}'` [ -d "$dest_dir/$type" ] || mkdir $dest_dir/$type [ -e "$dest_dir/$type/$md" ] || cp $f $dest_dir/$type/$md done
497
19.75
83
sh
null
ceph-main/src/test/encoding/readable.sh
#!/usr/bin/env bash set -e source $(dirname $0)/../detect-build-env-vars.sh [ -z "$CEPH_ROOT" ] && CEPH_ROOT=.. dir=$CEPH_ROOT/ceph-object-corpus failed=0 numtests=0 pids="" if [ -x ./ceph-dencoder ]; then CEPH_DENCODER=./ceph-dencoder else CEPH_DENCODER=ceph-dencoder fi myversion=`$CEPH_DENCODER version` DEBUG=0 WAITALL_DELAY=.1 debug() { if [ "$DEBUG" -gt 0 ]; then echo "DEBUG: $*" >&2; fi } test_object() { local type=$1 local output_file=$2 local failed=0 local numtests=0 tmp1=`mktemp /tmp/test_object_1-XXXXXXXXX` tmp2=`mktemp /tmp/test_object_2-XXXXXXXXX` rm -f $output_file if $CEPH_DENCODER type $type 2>/dev/null; then #echo "type $type"; echo " $vdir/objects/$type" # is there a fwd incompat change between $arversion and $version? incompat="" incompat_paths="" sawarversion=0 for iv in `ls $dir/archive | sort -n`; do if [ "$iv" = "$arversion" ]; then sawarversion=1 fi if [ $sawarversion -eq 1 ] && [ -e "$dir/archive/$iv/forward_incompat/$type" ]; then incompat="$iv" # Check if we'll be ignoring only specified objects, not whole type. If so, remember # all paths for this type into variable. Assuming that this path won't contain any # whitechars (implication of above for loop). if [ -d "$dir/archive/$iv/forward_incompat/$type" ]; then if [ -n "`ls $dir/archive/$iv/forward_incompat/$type/ | sort -n`" ]; then incompat_paths="$incompat_paths $dir/archive/$iv/forward_incompat/$type" else echo "type $type directory empty, ignoring whole type instead of single objects" fi; fi fi if [ "$iv" = "$version" ]; then rm -rf $tmp1 $tmp2 break fi done if [ -n "$incompat" ]; then if [ -z "$incompat_paths" ]; then echo "skipping incompat $type version $arversion, changed at $incompat < code $myversion" rm -rf $tmp1 $tmp2 return else # If we are ignoring not whole type, but objects that are in $incompat_path, # we don't skip here, just give info. echo "postponed skip one of incompact $type version $arversion, changed at $incompat < code $myversion" fi; fi for f in `ls $vdir/objects/$type`; do skip=0; # Check if processed object $f of $type should be skipped (postponed skip) if [ -n "$incompat_paths" ]; then for i_path in $incompat_paths; do # Check if $f is a symbolic link and if it's pointing to existing target if [ -L "$i_path/$f" ]; then echo "skipping object $f of type $type" skip=1 break fi; done; fi; if [ $skip -ne 0 ]; then continue fi; $CEPH_DENCODER type $type import $vdir/objects/$type/$f decode dump_json > $tmp1 & pid1="$!" $CEPH_DENCODER type $type import $vdir/objects/$type/$f decode encode decode dump_json > $tmp2 & pid2="$!" #echo "\t$vdir/$type/$f" if ! wait $pid1; then echo "**** failed to decode $vdir/objects/$type/$f ****" failed=$(($failed + 1)) rm -f $tmp1 $tmp2 continue fi if ! wait $pid2; then echo "**** failed to decode+encode+decode $vdir/objects/$type/$f ****" failed=$(($failed + 1)) rm -f $tmp1 $tmp2 continue fi # nondeterministic classes may dump # nondeterministically. compare the sorted json # output. this is a weaker test, but is better than # nothing. if ! $CEPH_DENCODER type $type is_deterministic; then echo " sorting json output for nondeterministic object" for f in $tmp1 $tmp2; do sort $f | sed 's/,$//' > $f.new mv $f.new $f done fi if ! cmp $tmp1 $tmp2; then echo "**** reencode of $vdir/objects/$type/$f resulted in a different dump ****" diff $tmp1 $tmp2 failed=$(($failed + 1)) fi numtests=$(($numtests + 1)) rm -f $tmp1 $tmp2 done else echo "skipping unrecognized type $type" rm -f $tmp1 $tmp2 fi echo "failed=$failed" > $output_file echo "numtests=$numtests" >> $output_file } waitall() { # PID... ## Wait for children to exit and indicate whether all exited with 0 status. local errors=0 while :; do debug "Processes remaining: $*" for pid in "$@"; do shift if kill -0 "$pid" 2>/dev/null; then debug "$pid is still alive." set -- "$@" "$pid" elif wait "$pid"; then debug "$pid exited with zero exit status." else debug "$pid exited with non-zero exit status." errors=$(($errors + 1)) fi done [ $# -eq 0 ] && break sleep ${WAITALL_DELAY:-1} done [ $errors -eq 0 ] } ###### # MAIN ###### do_join() { waitall $pids pids="" # Reading the output of jobs to compute failed & numtests # Tests are run in parallel but sum should be done sequentialy to avoid # races between threads while [ "$running_jobs" -ge 0 ]; do if [ -f $output_file.$running_jobs ]; then read_failed=$(grep "^failed=" $output_file.$running_jobs | cut -d "=" -f 2) read_numtests=$(grep "^numtests=" $output_file.$running_jobs | cut -d "=" -f 2) rm -f $output_file.$running_jobs failed=$(($failed + $read_failed)) numtests=$(($numtests + $read_numtests)) fi running_jobs=$(($running_jobs - 1)) done running_jobs=0 } # Using $MAX_PARALLEL_JOBS jobs if defined, unless the number of logical # processors if [ `uname` == FreeBSD -o `uname` == Darwin ]; then NPROC=`sysctl -n hw.ncpu` max_parallel_jobs=${MAX_PARALLEL_JOBS:-${NPROC}} else max_parallel_jobs=${MAX_PARALLEL_JOBS:-$(nproc)} fi output_file=`mktemp /tmp/output_file-XXXXXXXXX` running_jobs=0 for arversion in `ls $dir/archive | sort -n`; do vdir="$dir/archive/$arversion" #echo $vdir if [ ! -d "$vdir/objects" ]; then continue; fi for type in `ls $vdir/objects`; do test_object $type $output_file.$running_jobs & pids="$pids $!" running_jobs=$(($running_jobs + 1)) # Once we spawned enough jobs, let's wait them to complete # Every spawned job have almost the same execution time so # it's not a big deal having them not ending at the same time if [ "$running_jobs" -eq "$max_parallel_jobs" ]; then do_join fi rm -f ${output_file}* done done do_join if [ $failed -gt 0 ]; then echo "FAILED $failed / $numtests tests." exit 1 fi if [ $numtests -eq 0 ]; then echo "FAILED: no tests found to run!" exit 1 fi echo "passed $numtests tests."
7,056
28.161157
113
sh
null
ceph-main/src/test/erasure-code/ErasureCodeExample.h
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #ifndef CEPH_ERASURE_CODE_EXAMPLE_H #define CEPH_ERASURE_CODE_EXAMPLE_H #include <unistd.h> #include <errno.h> #include <algorithm> #include <sstream> #include "crush/CrushWrapper.h" #include "osd/osd_types.h" #include "erasure-code/ErasureCode.h" #define FIRST_DATA_CHUNK 0 #define SECOND_DATA_CHUNK 1 #define DATA_CHUNKS 2u #define CODING_CHUNK 2 #define CODING_CHUNKS 1u #define MINIMUM_TO_RECOVER 2u class ErasureCodeExample final : public ErasureCode { public: ~ErasureCodeExample() override {} int create_rule(const std::string &name, CrushWrapper &crush, std::ostream *ss) const override { return crush.add_simple_rule(name, "default", "host", "", "indep", pg_pool_t::TYPE_ERASURE, ss); } int minimum_to_decode_with_cost(const std::set<int> &want_to_read, const std::map<int, int> &available, std::set<int> *minimum) override { // // If one chunk is more expensive to fetch than the others, // recover it instead. For instance, if the cost reflects the // time it takes for a chunk to be retrieved from a remote // OSD and if CPU is cheap, it could make sense to recover // instead of fetching the chunk. // std::map<int, int> c2c(available); if (c2c.size() > DATA_CHUNKS) { if (c2c[FIRST_DATA_CHUNK] > c2c[SECOND_DATA_CHUNK] && c2c[FIRST_DATA_CHUNK] > c2c[CODING_CHUNK]) c2c.erase(FIRST_DATA_CHUNK); else if(c2c[SECOND_DATA_CHUNK] > c2c[FIRST_DATA_CHUNK] && c2c[SECOND_DATA_CHUNK] > c2c[CODING_CHUNK]) c2c.erase(SECOND_DATA_CHUNK); else if(c2c[CODING_CHUNK] > c2c[FIRST_DATA_CHUNK] && c2c[CODING_CHUNK] > c2c[SECOND_DATA_CHUNK]) c2c.erase(CODING_CHUNK); } std::set <int> available_chunks; for (std::map<int, int>::const_iterator i = c2c.begin(); i != c2c.end(); ++i) available_chunks.insert(i->first); return _minimum_to_decode(want_to_read, available_chunks, minimum); } unsigned int get_chunk_count() const override { return DATA_CHUNKS + CODING_CHUNKS; } unsigned int get_data_chunk_count() const override { return DATA_CHUNKS; } unsigned int get_chunk_size(unsigned int object_size) const override { return ( object_size / DATA_CHUNKS ) + 1; } int encode(const std::set<int> &want_to_encode, const bufferlist &in, std::map<int, bufferlist> *encoded) override { // // make sure all data chunks have the same length, allocating // padding if necessary. // unsigned int chunk_length = get_chunk_size(in.length()); bufferlist out(in); unsigned int width = get_chunk_count() * get_chunk_size(in.length()); bufferptr pad(width - in.length()); pad.zero(0, get_data_chunk_count()); out.push_back(pad); // // compute the coding chunk with first chunk ^ second chunk // char *p = out.c_str(); for (unsigned i = 0; i < chunk_length; i++) p[i + CODING_CHUNK * chunk_length] = p[i + FIRST_DATA_CHUNK * chunk_length] ^ p[i + SECOND_DATA_CHUNK * chunk_length]; // // populate the bufferlist with bufferptr pointing // to chunk boundaries // const bufferptr &ptr = out.front(); for (auto j = want_to_encode.begin(); j != want_to_encode.end(); ++j) { bufferlist tmp; bufferptr chunk(ptr, (*j) * chunk_length, chunk_length); tmp.push_back(chunk); tmp.claim_append((*encoded)[*j]); (*encoded)[*j].swap(tmp); } return 0; } int encode_chunks(const std::set<int> &want_to_encode, std::map<int, bufferlist> *encoded) override { ceph_abort(); return 0; } int _decode(const std::set<int> &want_to_read, const std::map<int, bufferlist> &chunks, std::map<int, bufferlist> *decoded) override { // // All chunks have the same size // unsigned chunk_length = (*chunks.begin()).second.length(); for (std::set<int>::iterator i = want_to_read.begin(); i != want_to_read.end(); ++i) { if (chunks.find(*i) != chunks.end()) { // // If the chunk is available, just copy the bufferptr pointer // to the decoded argument. // (*decoded)[*i] = chunks.find(*i)->second; } else if(chunks.size() != 2) { // // If a chunk is missing and there are not enough chunks // to recover, abort. // return -ERANGE; } else { // // No matter what the missing chunk is, XOR of the other // two recovers it. // std::map<int, bufferlist>::const_iterator k = chunks.begin(); const char *a = k->second.front().c_str(); ++k; const char *b = k->second.front().c_str(); bufferptr chunk(chunk_length); char *c = chunk.c_str(); for (unsigned j = 0; j < chunk_length; j++) { c[j] = a[j] ^ b[j]; } bufferlist tmp; tmp.append(chunk); tmp.claim_append((*decoded)[*i]); (*decoded)[*i].swap(tmp); } } return 0; } int decode_chunks(const std::set<int> &want_to_read, const std::map<int, bufferlist> &chunks, std::map<int, bufferlist> *decoded) override { ceph_abort(); return 0; } const std::vector<int> &get_chunk_mapping() const override { static std::vector<int> mapping; return mapping; } }; #endif
5,876
28.984694
78
h
null
ceph-main/src/test/erasure-code/ErasureCodePluginExample.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <unistd.h> #include "ceph_ver.h" #include "erasure-code/ErasureCodePlugin.h" #include "ErasureCodeExample.h" using namespace std; class ErasureCodePluginExample : public ErasureCodePlugin { public: int factory(const std::string &directory, ErasureCodeProfile &profile, ErasureCodeInterfaceRef *erasure_code, ostream *ss) override { *erasure_code = ErasureCodeInterfaceRef(new ErasureCodeExample()); (*erasure_code)->init(profile, ss); return 0; } }; const char *__erasure_code_version() { return CEPH_GIT_NICE_VER; } int __erasure_code_init(char *plugin_name, char *directory) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); return instance.add(plugin_name, new ErasureCodePluginExample()); }
1,376
28.934783
78
cc
null
ceph-main/src/test/erasure-code/ErasureCodePluginFailToInitialize.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include "ceph_ver.h" extern "C" const char *__erasure_code_version() { return CEPH_GIT_NICE_VER; } extern "C" int __erasure_code_init(char *plugin_name, char *directory) { return -ESRCH; }
791
28.333333
77
cc
null
ceph-main/src/test/erasure-code/ErasureCodePluginFailToRegister.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include "ceph_ver.h" extern "C" const char *__erasure_code_version() { return CEPH_GIT_NICE_VER; } extern "C" int __erasure_code_init(char *plugin_name, char *directory) { return 0; }
767
28.538462
77
cc
null
ceph-main/src/test/erasure-code/ErasureCodePluginHangs.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <unistd.h> #include "ceph_ver.h" extern "C" const char *__erasure_code_version() { return CEPH_GIT_NICE_VER; } extern "C" int __erasure_code_init(char *plugin_name, char *directory) { sleep(10); return 0; }
800
27.607143
77
cc
null
ceph-main/src/test/erasure-code/ErasureCodePluginMissingEntryPoint.cc
#include "ceph_ver.h" // missing int __erasure_code_init(char *plugin_name, char *directory) {} extern "C" const char *__erasure_code_version() { return CEPH_GIT_NICE_VER; }
177
24.428571
77
cc
null
ceph-main/src/test/erasure-code/ErasureCodePluginMissingVersion.cc
// missing __erasure_code_version int __this_is_an_used_variable_to_avoid_warnings;
85
20.5
49
cc
null
ceph-main/src/test/erasure-code/TestErasureCode.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "erasure-code/ErasureCode.h" #include "global/global_context.h" #include "common/config.h" #include "gtest/gtest.h" using namespace std; class ErasureCodeTest : public ErasureCode { public: map<int, bufferlist> encode_chunks_encoded; unsigned int k; unsigned int m; unsigned int chunk_size; ErasureCodeTest(unsigned int _k, unsigned int _m, unsigned int _chunk_size) : k(_k), m(_m), chunk_size(_chunk_size) {} ~ErasureCodeTest() override {} int init(ErasureCodeProfile &profile, ostream *ss) override { return 0; } unsigned int get_chunk_count() const override { return k + m; } unsigned int get_data_chunk_count() const override { return k; } unsigned int get_chunk_size(unsigned int object_size) const override { return chunk_size; } int encode_chunks(const set<int> &want_to_encode, map<int, bufferlist> *encoded) override { encode_chunks_encoded = *encoded; return 0; } int decode_chunks(const set<int> &want_to_read, const map<int, bufferlist> &chunks, map<int, bufferlist> *decoded) override { ceph_abort_msg("ErasureCode::decode_chunks not implemented"); } int create_rule(const string &name, CrushWrapper &crush, ostream *ss) const override { return 0; } }; /* * If we have a buffer of 5 bytes (X below) and a chunk size of 3 * bytes, for k=3, m=1 an additional 7 bytes (P and C below) will * need to be allocated for padding (P) and the 3 coding bytes (C). * * X -+ +----------+ +-X * X | | data 0 | | X * X | +----------+ | X * X | +----------+ | X -> +-X * X -+ | data 1 | +-X -> | X * P -+ +----------+ | P * P | +----------+ | P * P | | data 2 | | P * P | +----------+ | P * C | +----------+ | C * C | | coding 3 | | C * C -+ +----------+ +-C * * The data chunks 1 and 2 (data 1 and data 2 above) overflow the * original buffer because it needs padding. A new buffer will * be allocated to contain the chunk that overflows and all other * chunks after it, including the coding chunk(s). * * The following test creates a siguation where the buffer provided * for encoding is not memory aligned. After encoding it asserts that: * * a) each chunk is SIMD aligned * b) the data 1 chunk content is as expected which implies that its * content has been copied over. * * It is possible for a flawed implementation to pas the test because the * underlying allocation function enforces it. */ TEST(ErasureCodeTest, encode_memory_align) { int k = 3; int m = 1; unsigned chunk_size = ErasureCode::SIMD_ALIGN * 7; ErasureCodeTest erasure_code(k, m, chunk_size); set<int> want_to_encode; for (unsigned int i = 0; i < erasure_code.get_chunk_count(); i++) want_to_encode.insert(i); string data(chunk_size + chunk_size / 2, 'X'); // uses 1.5 chunks out of 3 // make sure nothing is memory aligned bufferptr ptr(buffer::create_aligned(data.length() + 1, ErasureCode::SIMD_ALIGN)); ptr.copy_in(1, data.length(), data.c_str()); ptr.set_offset(1); ptr.set_length(data.length()); bufferlist in; in.append(ptr); map<int, bufferlist> encoded; ASSERT_FALSE(in.is_aligned(ErasureCode::SIMD_ALIGN)); ASSERT_EQ(0, erasure_code.encode(want_to_encode, in, &encoded)); for (unsigned int i = 0; i < erasure_code.get_chunk_count(); i++) ASSERT_TRUE(encoded[i].is_aligned(ErasureCode::SIMD_ALIGN)); for (unsigned i = 0; i < chunk_size / 2; i++) ASSERT_EQ(encoded[1][i], 'X'); ASSERT_NE(encoded[1][chunk_size / 2], 'X'); } TEST(ErasureCodeTest, encode_misaligned_non_contiguous) { int k = 3; int m = 1; unsigned chunk_size = ErasureCode::SIMD_ALIGN * 7; ErasureCodeTest erasure_code(k, m, chunk_size); set<int> want_to_encode; for (unsigned int i = 0; i < erasure_code.get_chunk_count(); i++) want_to_encode.insert(i); string data(chunk_size, 'X'); // create a non contiguous bufferlist where the frist and the second // bufferptr are not size aligned although they are memory aligned bufferlist in; { bufferptr ptr(buffer::create_aligned(data.length() - 1, ErasureCode::SIMD_ALIGN)); in.append(ptr); } { bufferptr ptr(buffer::create_aligned(data.length() + 1, ErasureCode::SIMD_ALIGN)); in.append(ptr); } map<int, bufferlist> encoded; ASSERT_FALSE(in.is_contiguous()); ASSERT_TRUE(in.front().is_aligned(ErasureCode::SIMD_ALIGN)); ASSERT_FALSE(in.front().is_n_align_sized(chunk_size)); ASSERT_TRUE(in.back().is_aligned(ErasureCode::SIMD_ALIGN)); ASSERT_FALSE(in.back().is_n_align_sized(chunk_size)); ASSERT_EQ(0, erasure_code.encode(want_to_encode, in, &encoded)); for (unsigned int i = 0; i < erasure_code.get_chunk_count(); i++) { ASSERT_TRUE(encoded[i].is_aligned(ErasureCode::SIMD_ALIGN)); ASSERT_TRUE(encoded[i].is_n_align_sized(chunk_size)); } } /* * Local Variables: * compile-command: "cd ../.. ; * make -j4 unittest_erasure_code && * valgrind --tool=memcheck --leak-check=full \ * ./unittest_erasure_code \ * --gtest_filter=*.* --log-to-stderr=true" * End: */
5,710
32.594118
86
cc
null
ceph-main/src/test/erasure-code/TestErasureCodeClay.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2018 Indian Institute of Science <[email protected]> * * Author: Myna Vajha <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "crush/CrushWrapper.h" #include "include/stringify.h" #include "erasure-code/clay/ErasureCodeClay.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodeClay, sanity_check_k) { ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "1"; profile["m"] = "1"; ostringstream errors; EXPECT_EQ(-EINVAL, clay.init(profile, &errors)); EXPECT_NE(std::string::npos, errors.str().find("must be >= 2")); } TEST(ErasureCodeClay, encode_decode) { ostringstream errors; ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; int r= clay.init(profile, &cerr); EXPECT_EQ(0, r); #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); int want_to_encode[] = { 0, 1, 2, 3 }; map<int, bufferlist> encoded; EXPECT_EQ(0, clay.encode(set<int>(want_to_encode, want_to_encode+4), in, &encoded)); EXPECT_EQ(4u, encoded.size()); unsigned length = encoded[0].length(); EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), length)); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str() + length, in.length() - length)); // all chunks are available { int want_to_decode[] = { 0, 1 }; map<int, bufferlist> decoded; EXPECT_EQ(0, clay._decode(set<int>(want_to_decode, want_to_decode+2), encoded, &decoded)); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(length, decoded[0].length()); EXPECT_EQ(0, memcmp(decoded[0].c_str(), in.c_str(), length)); EXPECT_EQ(0, memcmp(decoded[1].c_str(), in.c_str() + length, in.length() - length)); } // check all two chunks missing possibilities and recover them for (int i=1; i<4; i++) { for (int j=0; j<i; j++) { map<int, bufferlist> degraded = encoded; degraded.erase(j); degraded.erase(i); EXPECT_EQ(2u, degraded.size()); int want_to_decode[] = {j,i}; map<int, bufferlist> decoded; EXPECT_EQ(0, clay._decode(set<int>(want_to_decode, want_to_decode+2), degraded, &decoded)); EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(length, decoded[j].length()); EXPECT_EQ(0, memcmp(decoded[j].c_str(), encoded[j].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[i].c_str(), encoded[i].c_str(), length)); } } //check for all one chunk missing possibilities int sc_size = length/clay.sub_chunk_no; int avail[] = {0,1,2,3}; for (int i=0; i < 4; i++) { set<int> want_to_read; want_to_read.insert(i); set<int> available(avail, avail+4); available.erase(i); map<int, vector<pair<int,int>>> minimum; EXPECT_EQ(0, clay.minimum_to_decode(want_to_read, available, &minimum)); map<int, bufferlist> helper; for (map<int, vector<pair<int,int>>>::iterator h=minimum.begin(); h!= minimum.end(); ++h) { for(vector<pair<int,int>>::iterator ind=h->second.begin(); ind != h->second.end(); ++ind) { bufferlist temp; temp.substr_of(encoded[h->first], ind->first*sc_size, ind->second*sc_size); helper[h->first].append(temp); } } for (map<int, vector<pair<int,int>>>::iterator h=minimum.begin(); h!= minimum.end(); ++h) { EXPECT_EQ(length/clay.q, helper[h->first].length()); } EXPECT_EQ(3u, helper.size()); map<int, bufferlist> decoded; EXPECT_EQ(0, clay.decode(want_to_read, helper, &decoded, length)); EXPECT_EQ(1u, decoded.size()); EXPECT_EQ(0, memcmp(decoded[i].c_str(), encoded[i].c_str(), length)); } } TEST(ErasureCodeClay, encode_decode_aloof_nodes) { ostringstream errors; ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "3"; profile["m"] = "3"; profile["d"] = "4"; int r= clay.init(profile, &cerr); EXPECT_EQ(0, r); #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); int want_to_encode[] = { 0, 1, 2, 3, 4, 5 }; map<int, bufferlist> encoded; EXPECT_EQ(0, clay.encode(set<int>(want_to_encode, want_to_encode+6), in, &encoded)); EXPECT_EQ(6u, encoded.size()); unsigned length = encoded[0].length(); if (in.length() < length) { EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); } else if (in.length() <= 2*length ) { EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str()+length, in.length()-length)); } else { EXPECT_EQ(1, in.length() <= 3*length); EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str()+length, length)); EXPECT_EQ(0, memcmp(encoded[2].c_str(), in.c_str()+2*length, in.length()-2*length)); } // all chunks are available { int want_to_decode[] = { 0, 1, 2 }; map<int, bufferlist> decoded; EXPECT_EQ(0, clay._decode(set<int>(want_to_decode, want_to_decode+3), encoded, &decoded)); EXPECT_EQ(3u, decoded.size()); EXPECT_EQ(length, decoded[0].length()); EXPECT_EQ(0, memcmp(decoded[0].c_str(), encoded[0].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[1].c_str(), encoded[1].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[2].c_str(), encoded[2].c_str(), length)); } // check all three chunks missing possibilities and recover them for (int i=2; i<6; i++) { for (int j=1; j<i; j++) { for(int k=0; k<j; k++) { map<int, bufferlist> degraded = encoded; degraded.erase(k); degraded.erase(j); degraded.erase(i); EXPECT_EQ(3u, degraded.size()); int want_to_decode[] = {k,j,i}; map<int, bufferlist> decoded; EXPECT_EQ(0, clay._decode(set<int>(want_to_decode, want_to_decode+3), degraded, &decoded)); EXPECT_EQ(6u, decoded.size()); EXPECT_EQ(length, decoded[j].length()); EXPECT_EQ(0, memcmp(decoded[k].c_str(), encoded[k].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[j].c_str(), encoded[j].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[i].c_str(), encoded[i].c_str(), length)); } } } //check for all one chunk missing possibilities int sc_size = length/clay.sub_chunk_no; int avail[] = {0,1,2,3,4,5}; for (int i=0; i < 6; i++) { vector<pair<int,int>> repair_subchunks; map<int, vector<pair<int,int>>> minimum; set<int> want_to_read; want_to_read.insert(i); set<int> available(avail, avail+6); available.erase(i); clay.minimum_to_decode(want_to_read, available, &minimum); map<int, bufferlist> helper; for (map<int, vector<pair<int,int>>>::iterator h=minimum.begin(); h!= minimum.end(); ++h) { for(vector<pair<int,int>>::iterator ind=h->second.begin(); ind != h->second.end(); ++ind) { bufferlist temp; temp.substr_of(encoded[h->first], ind->first*sc_size, ind->second*sc_size); helper[h->first].append(temp); } } for (map<int, vector<pair<int,int>>>::iterator h=minimum.begin(); h!= minimum.end(); ++h) { EXPECT_EQ(length/clay.q, helper[h->first].length()); } EXPECT_EQ((unsigned)clay.d, helper.size()); map<int, bufferlist> decoded; EXPECT_EQ(0, clay.decode(want_to_read, helper, &decoded, length)); EXPECT_EQ(1u, decoded.size()); EXPECT_EQ(0, memcmp(decoded[i].c_str(), encoded[i].c_str(), length)); } } TEST(ErasureCodeClay, encode_decode_shortening_case) { ostringstream errors; ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "4"; profile["m"] = "3"; profile["d"] = "5"; int r= clay.init(profile, &cerr); EXPECT_EQ(0, r); EXPECT_EQ(2, clay.q); EXPECT_EQ(4, clay.t); EXPECT_EQ(1, clay.nu); bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); int want_to_encode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> encoded; EXPECT_EQ(0, clay.encode(set<int>(want_to_encode, want_to_encode+7), in, &encoded)); EXPECT_EQ(7u, encoded.size()); unsigned length = encoded[0].length(); if (in.length() < length) { EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); } else if (in.length() <= 2*length) { EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str()+length, in.length()-length)); } else if (in.length() <= 3*length) { EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str()+length, length)); EXPECT_EQ(0, memcmp(encoded[2].c_str(), in.c_str()+2*length, in.length()-2*length)); } else { EXPECT_EQ(1, in.length() <= 4*length); EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), in.length())); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str()+length, length)); EXPECT_EQ(0, memcmp(encoded[2].c_str(), in.c_str()+2*length, length)); EXPECT_EQ(0, memcmp(encoded[3].c_str(), in.c_str()+3*length, in.length()-3*length)); } // all chunks are available { int want_to_decode[] = { 0, 1, 2, 3 }; map<int, bufferlist> decoded; EXPECT_EQ(0, clay._decode(set<int>(want_to_decode, want_to_decode+4), encoded, &decoded)); EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(length, decoded[0].length()); EXPECT_EQ(0, memcmp(decoded[0].c_str(), encoded[0].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[1].c_str(), encoded[1].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[2].c_str(), encoded[2].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[3].c_str(), encoded[3].c_str(), length)); } // check all three chunks missing possibilities and recover them for (int i=2; i<7; i++) { for (int j=1; j<i; j++) { for(int k=0; k<j; k++) { map<int, bufferlist> degraded = encoded; degraded.erase(k); degraded.erase(j); degraded.erase(i); EXPECT_EQ(4u, degraded.size()); int want_to_decode[] = {k,j,i}; map<int, bufferlist> decoded; EXPECT_EQ(0, clay._decode(set<int>(want_to_decode, want_to_decode+3), degraded, &decoded)); EXPECT_EQ(7u, decoded.size()); EXPECT_EQ(length, decoded[j].length()); EXPECT_EQ(0, memcmp(decoded[k].c_str(), encoded[k].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[j].c_str(), encoded[j].c_str(), length)); EXPECT_EQ(0, memcmp(decoded[i].c_str(), encoded[i].c_str(), length)); } } } //check for all one chunk missing possibilities int sc_size = length/clay.sub_chunk_no; int avail[] = {0,1,2,3,4,5,6}; for (int i=0; i < 7; i++) { vector<pair<int,int>> repair_subchunks; map<int, vector<pair<int,int>>> minimum; set<int> want_to_read; want_to_read.insert(i); set<int> available(avail, avail+7); available.erase(i); clay.minimum_to_decode(want_to_read, available, &minimum); map<int, bufferlist> helper; for (map<int, vector<pair<int,int>>>::iterator h=minimum.begin(); h!= minimum.end(); ++h) { for(vector<pair<int,int>>::iterator ind=h->second.begin(); ind != h->second.end(); ++ind) { bufferlist temp; temp.substr_of(encoded[h->first], ind->first*sc_size, ind->second*sc_size); helper[h->first].append(temp); } } for (map<int, vector<pair<int,int>>>::iterator h=minimum.begin(); h!= minimum.end(); ++h) { EXPECT_EQ(length/clay.q, helper[h->first].length()); } EXPECT_EQ(static_cast<size_t>(clay.d), helper.size()); map<int, bufferlist> decoded; EXPECT_EQ(0, clay.decode(want_to_read, helper, &decoded, length)); EXPECT_EQ(1u, decoded.size()); EXPECT_EQ(length, decoded[i].length()); EXPECT_EQ(0, memcmp(decoded[i].c_str(), encoded[i].c_str(), length)); } } TEST(ErasureCodeClay, minimum_to_decode) { ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; EXPECT_EQ(0, clay.init(profile, &cerr)); // // If trying to read nothing, the minimum is empty. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; EXPECT_EQ(0, clay._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_TRUE(minimum.empty()); } // // There is no way to read a chunk if none are available. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); EXPECT_EQ(-EIO, clay._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // Reading a subset of the available chunks is always possible. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); available_chunks.insert(0); EXPECT_EQ(0, clay._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(want_to_read, minimum); } // // There is no way to read a missing chunk if there is less than k // chunks available. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); want_to_read.insert(1); available_chunks.insert(0); EXPECT_EQ(-EIO, clay._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // When chunks are not available, the minimum can be made of any // chunks. For instance, to read 1 and 3 below the minimum could be // 2 and 3 which may seem better because it contains one of the // chunks to be read. But it won't be more efficient than retrieving // 0 and 2 instead because, in both cases, the decode function will // need to run the same recovery operation and use the same amount // of CPU and memory. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(1); want_to_read.insert(3); available_chunks.insert(0); available_chunks.insert(2); available_chunks.insert(3); EXPECT_EQ(0, clay._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(2u, minimum.size()); EXPECT_EQ(0u, minimum.count(3)); } } TEST(ErasureCodeClay, encode) { ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; EXPECT_EQ(0, clay.init(profile, &cerr)); unsigned aligned_object_size = clay.get_chunk_size(1) * 2 * 2; { // // When the input bufferlist needs to be padded because // it is not properly aligned, it is padded with zeros. // bufferlist in; map<int,bufferlist> encoded; int want_to_encode[] = { 0, 1, 2, 3 }; int trail_length = 1; in.append(string(aligned_object_size + trail_length, 'X')); EXPECT_EQ(0, clay.encode(set<int>(want_to_encode, want_to_encode+4), in, &encoded)); EXPECT_EQ(4u, encoded.size()); char *last_chunk = encoded[1].c_str(); int length =encoded[1].length(); EXPECT_EQ('X', last_chunk[0]); EXPECT_EQ('\0', last_chunk[length - trail_length]); } { // // When only the first chunk is required, the encoded map only // contains the first chunk. Although the clay encode // internally allocated a buffer because of padding requirements // and also computes the coding chunks, they are released before // the return of the method, as shown when running the tests thru // valgrind (there is no leak). // bufferlist in; map<int,bufferlist> encoded; set<int> want_to_encode; want_to_encode.insert(0); int trail_length = 1; in.append(string(aligned_object_size + trail_length, 'X')); EXPECT_EQ(0, clay.encode(want_to_encode, in, &encoded)); EXPECT_EQ(1u, encoded.size()); } } TEST(ErasureCodeClay, create_rule) { std::unique_ptr<CrushWrapper> c = std::make_unique<CrushWrapper>(); c->create(); int root_type = 2; c->set_type_name(root_type, "root"); int host_type = 1; c->set_type_name(host_type, "host"); int osd_type = 0; c->set_type_name(osd_type, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, root_type, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); map<string,string> loc; loc["root"] = "default"; int num_host = 4; int num_osd = 5; int osd = 0; for (int h=0; h<num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o=0; o<num_osd; ++o, ++osd) { c->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } c->finalize(); { stringstream ss; ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; EXPECT_EQ(0, clay.init(profile, &cerr)); int ruleid = clay.create_rule("myrule", *c, &ss); EXPECT_EQ(0, ruleid); EXPECT_EQ(-EEXIST, clay.create_rule("myrule", *c, &ss)); // // the minimum that is expected from the created rule is to // successfully map get_chunk_count() devices from the crushmap, // at least once. // vector<__u32> weight(c->get_max_devices(), 0x10000); vector<int> out; int x = 0; c->do_rule(ruleid, x, out, clay.get_chunk_count(), weight, 0); ASSERT_EQ(out.size(), clay.get_chunk_count()); for (unsigned i=0; i<out.size(); ++i) ASSERT_NE(CRUSH_ITEM_NONE, out[i]); } { stringstream ss; ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["crush-root"] = "BAD"; EXPECT_EQ(0, clay.init(profile, &cerr)); EXPECT_EQ(-ENOENT, clay.create_rule("otherrule", *c, &ss)); EXPECT_EQ("root item BAD does not exist", ss.str()); } { stringstream ss; ErasureCodeClay clay(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["crush-failure-domain"] = "WORSE"; EXPECT_EQ(0, clay.init(profile, &cerr)); EXPECT_EQ(-EINVAL, clay.create_rule("otherrule", *c, &ss)); EXPECT_EQ("unknown type WORSE", ss.str()); } } /* * Local Variables: * compile-command: "cd ../.. ; * make -j4 unittest_erasure_code_clay && * valgrind --tool=memcheck \ * ./unittest_erasure_code_clay \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
20,469
33.288107
97
cc
null
ceph-main/src/test/erasure-code/TestErasureCodeExample.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013 Cloudwatt <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <stdlib.h> #include "include/stringify.h" #include "ErasureCodeExample.h" #include "global/global_context.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodeExample, chunk_size) { ErasureCodeExample example; EXPECT_EQ(3u, example.get_chunk_count()); EXPECT_EQ(11u, example.get_chunk_size(20)); } TEST(ErasureCodeExample, minimum_to_decode) { ErasureCodeExample example; set<int> available_chunks; set<int> want_to_read; want_to_read.insert(1); { set<int> minimum; EXPECT_EQ(-EIO, example._minimum_to_decode(want_to_read, available_chunks, &minimum)); } available_chunks.insert(0); available_chunks.insert(2); { set<int> minimum; EXPECT_EQ(0, example._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(available_chunks, minimum); EXPECT_EQ(2u, minimum.size()); EXPECT_EQ(1u, minimum.count(0)); EXPECT_EQ(1u, minimum.count(2)); } { set<int> minimum; available_chunks.insert(1); EXPECT_EQ(0, example._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(1u, minimum.size()); EXPECT_EQ(1u, minimum.count(1)); } } TEST(ErasureCodeExample, minimum_to_decode_with_cost) { ErasureCodeExample example; map<int,int> available; set<int> want_to_read; want_to_read.insert(1); { set<int> minimum; EXPECT_EQ(-EIO, example.minimum_to_decode_with_cost(want_to_read, available, &minimum)); } available[0] = 1; available[2] = 1; { set<int> minimum; EXPECT_EQ(0, example.minimum_to_decode_with_cost(want_to_read, available, &minimum)); EXPECT_EQ(2u, minimum.size()); EXPECT_EQ(1u, minimum.count(0)); EXPECT_EQ(1u, minimum.count(2)); } { set<int> minimum; available[1] = 1; EXPECT_EQ(0, example.minimum_to_decode_with_cost(want_to_read, available, &minimum)); EXPECT_EQ(1u, minimum.size()); EXPECT_EQ(1u, minimum.count(1)); } { set<int> minimum; available[1] = 2; EXPECT_EQ(0, example.minimum_to_decode_with_cost(want_to_read, available, &minimum)); EXPECT_EQ(2u, minimum.size()); EXPECT_EQ(1u, minimum.count(0)); EXPECT_EQ(1u, minimum.count(2)); } } TEST(ErasureCodeExample, encode_decode) { ErasureCodeExample example; bufferlist in; in.append("ABCDE"); set<int> want_to_encode; for(unsigned int i = 0; i < example.get_chunk_count(); i++) want_to_encode.insert(i); map<int, bufferlist> encoded; EXPECT_EQ(0, example.encode(want_to_encode, in, &encoded)); EXPECT_EQ(example.get_chunk_count(), encoded.size()); EXPECT_EQ(example.get_chunk_size(in.length()), encoded[0].length()); EXPECT_EQ('A', encoded[0][0]); EXPECT_EQ('B', encoded[0][1]); EXPECT_EQ('C', encoded[0][2]); EXPECT_EQ('D', encoded[1][0]); EXPECT_EQ('E', encoded[1][1]); EXPECT_EQ('A'^'D', encoded[2][0]); EXPECT_EQ('B'^'E', encoded[2][1]); EXPECT_EQ('C'^0, encoded[2][2]); // all chunks are available { int want_to_decode[] = { 0, 1 }; map<int, bufferlist> decoded; EXPECT_EQ(0, example._decode(set<int>(want_to_decode, want_to_decode+2), encoded, &decoded)); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(3u, decoded[0].length()); EXPECT_EQ('A', decoded[0][0]); EXPECT_EQ('B', decoded[0][1]); EXPECT_EQ('C', decoded[0][2]); EXPECT_EQ('D', decoded[1][0]); EXPECT_EQ('E', decoded[1][1]); } // one chunk is missing { map<int, bufferlist> degraded = encoded; degraded.erase(0); EXPECT_EQ(2u, degraded.size()); int want_to_decode[] = { 0, 1 }; map<int, bufferlist> decoded; EXPECT_EQ(0, example._decode(set<int>(want_to_decode, want_to_decode+2), degraded, &decoded)); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(3u, decoded[0].length()); EXPECT_EQ('A', decoded[0][0]); EXPECT_EQ('B', decoded[0][1]); EXPECT_EQ('C', decoded[0][2]); EXPECT_EQ('D', decoded[1][0]); EXPECT_EQ('E', decoded[1][1]); } } TEST(ErasureCodeExample, decode) { ErasureCodeExample example; #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); int want_to_encode[] = { 0, 1, 2 }; map<int, bufferlist> encoded; EXPECT_EQ(0, example.encode(set<int>(want_to_encode, want_to_encode+3), in, &encoded)); EXPECT_EQ(3u, encoded.size()); // successfull decode bufferlist out; EXPECT_EQ(0, example.decode_concat(encoded, &out)); bufferlist usable; usable.substr_of(out, 0, in.length()); EXPECT_TRUE(usable == in); // cannot recover map<int, bufferlist> degraded; degraded[0] = encoded[0]; EXPECT_EQ(-ERANGE, example.decode_concat(degraded, &out)); } TEST(ErasureCodeExample, create_rule) { std::unique_ptr<CrushWrapper> c = std::make_unique<CrushWrapper>(); c->create(); c->set_type_name(2, "root"); c->set_type_name(1, "host"); c->set_type_name(0, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 5, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); map<string,string> loc; loc["root"] = "default"; int num_host = 2; int num_osd = 5; int osd = 0; for (int h=0; h<num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o=0; o<num_osd; ++o, ++osd) { c->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } stringstream ss; ErasureCodeExample example; EXPECT_EQ(0, example.create_rule("myrule", *c, &ss)); } /* * Local Variables: * compile-command: "cd ../.. ; * make -j4 && * make unittest_erasure_code_example && * valgrind --leak-check=full --tool=memcheck \ * ./unittest_erasure_code_example --gtest_filter=*.* \ * --log-to-stderr=true --debug-osd=20 * " * End: */
7,018
27.188755
85
cc
null
ceph-main/src/test/erasure-code/TestErasureCodeIsa.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- /* * Ceph - scalable distributed file system * * Copyright (C) 2014 CERN (Switzerland) * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Andreas-Joachim Peters <[email protected]> * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "crush/CrushWrapper.h" #include "include/stringify.h" #include "erasure-code/isa/ErasureCodeIsa.h" #include "erasure-code/isa/xor_op.h" #include "global/global_context.h" #include "common/config.h" #include "gtest/gtest.h" using namespace std; ErasureCodeIsaTableCache tcache; class IsaErasureCodeTest : public ::testing::Test { public: void compare_chunks(bufferlist &in, map<int, bufferlist> &encoded); void encode_decode(unsigned object_size); }; void IsaErasureCodeTest::compare_chunks(bufferlist &in, map<int, bufferlist> &encoded) { unsigned object_size = in.length(); unsigned chunk_size = encoded[0].length(); for (unsigned i = 0; i < encoded.size(); i++) { if (i * chunk_size >= object_size) break; int chunk_length = object_size > (i + 1) * chunk_size ? chunk_size : object_size - i * chunk_size; EXPECT_EQ(0, memcmp(encoded[i].c_str(), in.c_str() + i * chunk_size, chunk_length)); } } void IsaErasureCodeTest::encode_decode(unsigned object_size) { ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; Isa.init(profile, &cerr); string payload(object_size, 'X'); bufferlist in; // may be multiple bufferptr if object_size is larger than CEPH_PAGE_SIZE in.append(payload.c_str(), payload.length()); int want_to_encode[] = {0, 1, 2, 3}; map<int, bufferlist> encoded; EXPECT_EQ(0, Isa.encode(set<int>(want_to_encode, want_to_encode + 4), in, &encoded)); EXPECT_EQ(4u, encoded.size()); unsigned chunk_size = encoded[0].length(); EXPECT_EQ(chunk_size, Isa.get_chunk_size(object_size)); compare_chunks(in, encoded); // all chunks are available { int want_to_decode[] = {0, 1}; map<int, bufferlist> decoded; EXPECT_EQ(0, Isa._decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded)); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(chunk_size, decoded[0].length()); compare_chunks(in, decoded); } // one data chunk is missing { map<int, bufferlist> degraded = encoded; string enc1(encoded[1].c_str(), chunk_size); degraded.erase(1); EXPECT_EQ(3u, degraded.size()); int want_to_decode[] = {1}; map<int, bufferlist> decoded; EXPECT_EQ(0, Isa._decode(set<int>(want_to_decode, want_to_decode + 1), degraded, &decoded)); // always decode all, regardless of want_to_decode EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(chunk_size, decoded[1].length()); EXPECT_EQ(0, memcmp(decoded[1].c_str(), enc1.c_str(), chunk_size)); } // non-xor coding chunk is missing { map<int, bufferlist> degraded = encoded; string enc3(encoded[3].c_str(), chunk_size); degraded.erase(3); EXPECT_EQ(3u, degraded.size()); int want_to_decode[] = {3}; map<int, bufferlist> decoded; EXPECT_EQ(0, Isa._decode(set<int>(want_to_decode, want_to_decode + 1), degraded, &decoded)); // always decode all, regardless of want_to_decode EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(chunk_size, decoded[3].length()); EXPECT_EQ(0, memcmp(decoded[3].c_str(), enc3.c_str(), chunk_size)); } // xor coding chunk is missing { map<int, bufferlist> degraded = encoded; string enc2(encoded[2].c_str(), chunk_size); degraded.erase(2); EXPECT_EQ(3u, degraded.size()); int want_to_decode[] = {2}; map<int, bufferlist> decoded; EXPECT_EQ(0, Isa._decode(set<int>(want_to_decode, want_to_decode + 1), degraded, &decoded)); // always decode all, regardless of want_to_decode EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(chunk_size, decoded[2].length()); EXPECT_EQ(0, memcmp(decoded[2].c_str(), enc2.c_str(), chunk_size)); } // one data and one coding chunk is missing { map<int, bufferlist> degraded = encoded; string enc3(encoded[3].c_str(), chunk_size); degraded.erase(1); degraded.erase(3); EXPECT_EQ(2u, degraded.size()); int want_to_decode[] = {1, 3}; map<int, bufferlist> decoded; EXPECT_EQ(0, Isa._decode(set<int>(want_to_decode, want_to_decode + 2), degraded, &decoded)); // always decode all, regardless of want_to_decode EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(chunk_size, decoded[1].length()); EXPECT_EQ(0, memcmp(decoded[3].c_str(), enc3.c_str(), chunk_size)); } // two data chunks are missing { map<int, bufferlist> degraded = encoded; degraded.erase(0); degraded.erase(1); EXPECT_EQ(2u, degraded.size()); int want_to_decode[] = {0, 1}; map<int, bufferlist> decoded; EXPECT_EQ(0, Isa._decode(set<int>(want_to_decode, want_to_decode + 2), degraded, &decoded)); // always decode all, regardless of want_to_decode EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(chunk_size, decoded[0].length()); compare_chunks(in, decoded); } } TEST_F(IsaErasureCodeTest, encode_decode) { encode_decode(1); encode_decode(EC_ISA_ADDRESS_ALIGNMENT); encode_decode(EC_ISA_ADDRESS_ALIGNMENT + 1); encode_decode(2048); encode_decode(4096); encode_decode(4096 + 1); } TEST_F(IsaErasureCodeTest, minimum_to_decode) { ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; Isa.init(profile, &cerr); // // If trying to read nothing, the minimum is empty. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; EXPECT_EQ(0, Isa._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_TRUE(minimum.empty()); } // // There is no way to read a chunk if none are available. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); EXPECT_EQ(-EIO, Isa._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // Reading a subset of the available chunks is always possible. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); available_chunks.insert(0); EXPECT_EQ(0, Isa._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(want_to_read, minimum); } // // There is no way to read a missing chunk if there is less than k // chunks available. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); want_to_read.insert(1); available_chunks.insert(0); EXPECT_EQ(-EIO, Isa._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // When chunks are not available, the minimum can be made of any // chunks. For instance, to read 1 and 3 below the minimum could be // 2 and 3 which may seem better because it contains one of the // chunks to be read. But it won't be more efficient than retrieving // 0 and 2 instead because, in both cases, the decode function will // need to run the same recovery operation and use the same amount // of CPU and memory. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(1); want_to_read.insert(3); available_chunks.insert(0); available_chunks.insert(2); available_chunks.insert(3); EXPECT_EQ(0, Isa._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(2u, minimum.size()); EXPECT_EQ(0u, minimum.count(3)); } } TEST_F(IsaErasureCodeTest, chunk_size) { { ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "1"; Isa.init(profile, &cerr); const int k = 2; ASSERT_EQ(EC_ISA_ADDRESS_ALIGNMENT, Isa.get_chunk_size(1)); ASSERT_EQ(EC_ISA_ADDRESS_ALIGNMENT, Isa.get_chunk_size(EC_ISA_ADDRESS_ALIGNMENT * k - 1)); ASSERT_EQ(EC_ISA_ADDRESS_ALIGNMENT * 2, Isa.get_chunk_size(EC_ISA_ADDRESS_ALIGNMENT * k + 1)); } { ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "3"; profile["m"] = "1"; Isa.init(profile, &cerr); const int k = 3; ASSERT_EQ(EC_ISA_ADDRESS_ALIGNMENT, Isa.get_chunk_size(1)); ASSERT_EQ(EC_ISA_ADDRESS_ALIGNMENT, Isa.get_chunk_size(EC_ISA_ADDRESS_ALIGNMENT * k - 1)); ASSERT_EQ(EC_ISA_ADDRESS_ALIGNMENT * 2, Isa.get_chunk_size(EC_ISA_ADDRESS_ALIGNMENT * k + 1)); unsigned object_size = EC_ISA_ADDRESS_ALIGNMENT * k * 1024 + 1; ASSERT_NE(0u, object_size % k); ASSERT_NE(0u, object_size % EC_ISA_ADDRESS_ALIGNMENT); unsigned chunk_size = Isa.get_chunk_size(object_size); ASSERT_EQ(0u, chunk_size % EC_ISA_ADDRESS_ALIGNMENT); ASSERT_GT(chunk_size, (chunk_size * k) - object_size); } } TEST_F(IsaErasureCodeTest, encode) { ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; Isa.init(profile, &cerr); unsigned aligned_object_size = Isa.get_alignment() * 2; { // // When the input bufferlist needs to be padded because // it is not properly aligned, it is padded with zeros. // bufferlist in; map<int,bufferlist> encoded; int want_to_encode[] = { 0, 1, 2, 3 }; int trail_length = 1; in.append(string(aligned_object_size + trail_length, 'X')); EXPECT_EQ(0, Isa.encode(set<int>(want_to_encode, want_to_encode+4), in, &encoded)); EXPECT_EQ(4u, encoded.size()); char *last_chunk = encoded[1].c_str(); int length =encoded[1].length(); EXPECT_EQ('X', last_chunk[0]); EXPECT_EQ('\0', last_chunk[length - trail_length]); } { // // When only the first chunk is required, the encoded map only // contains the first chunk. Although the Isa encode // internally allocated a buffer because of padding requirements // and also computes the coding chunks, they are released before // the return of the method, as shown when running the tests thru // valgrind (there is no leak). // bufferlist in; map<int,bufferlist> encoded; set<int> want_to_encode; want_to_encode.insert(0); int trail_length = 1; in.append(string(aligned_object_size + trail_length, 'X')); EXPECT_EQ(0, Isa.encode(want_to_encode, in, &encoded)); EXPECT_EQ(1u, encoded.size()); } } TEST_F(IsaErasureCodeTest, sanity_check_k) { ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "1"; profile["m"] = "1"; ostringstream errors; EXPECT_EQ(-EINVAL, Isa.init(profile, &errors)); EXPECT_NE(std::string::npos, errors.str().find("must be >= 2")); } bool DecodeAndVerify(ErasureCodeIsaDefault& Isa, map<int, bufferlist> &degraded, set<int> want_to_decode, buffer::ptr* enc, int length) { map<int, bufferlist> decoded; bool ok; // decode as requested ok = Isa._decode(want_to_decode, degraded, &decoded); for (int i = 0; i < (int) decoded.size(); i++) { // compare all the buffers with their original ok |= memcmp(decoded[i].c_str(), enc[i].c_str(), length); } return ok; } TEST_F(IsaErasureCodeTest, isa_vandermonde_exhaustive) { // Test all possible failure scenarios and reconstruction cases for // a (12,4) configuration using the vandermonde matrix ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "12"; profile["m"] = "4"; Isa.init(profile, &cerr); const int k = 12; const int m = 4; #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); set<int>want_to_encode; map<int, bufferlist> encoded; for (int i = 0; i < (k + m); i++) { want_to_encode.insert(i); } EXPECT_EQ(0, Isa.encode(want_to_encode, in, &encoded)); EXPECT_EQ((unsigned) (k + m), encoded.size()); unsigned length = encoded[0].length(); for (int i = 0; i < k; i++) { EXPECT_EQ(0, memcmp(encoded[i].c_str(), in.c_str() + (i * length), length)); } buffer::ptr enc[k + m]; // create buffers with a copy of the original data to be able to compare it after decoding { for (int i = 0; i < (k + m); i++) { buffer::ptr newenc(buffer::create_page_aligned(LARGE_ENOUGH)); enc[i] = newenc; enc[i].zero(); enc[i].set_length(0); enc[i].append(encoded[i].c_str(), length); } } // loop through all possible loss scenarios int cnt_cf = 0; for (int l1 = 0; l1 < (k + m); l1++) { map<int, bufferlist> degraded = encoded; set<int> want_to_decode; bool err; degraded.erase(l1); want_to_decode.insert(l1); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l2 = l1 + 1; l2 < (k + m); l2++) { degraded.erase(l2); want_to_decode.insert(l2); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l3 = l2 + 1; l3 < (k + m); l3++) { degraded.erase(l3); want_to_decode.insert(l3); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l4 = l3 + 1; l4 < (k + m); l4++) { degraded.erase(l4); want_to_decode.insert(l4); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); degraded[l4] = encoded[l4]; want_to_decode.erase(l4); cnt_cf++; } degraded[l3] = encoded[l3]; want_to_decode.erase(l3); } degraded[l2] = encoded[l2]; want_to_decode.erase(l2); } degraded[l1] = encoded[l1]; want_to_decode.erase(l1); } EXPECT_EQ(2516, cnt_cf); EXPECT_EQ(2506, tcache.getDecodingTableCacheSize()); // 3 entries from (2,2) test and 2503 from (12,4) } TEST_F(IsaErasureCodeTest, isa_cauchy_exhaustive) { // Test all possible failure scenarios and reconstruction cases for // a (12,4) configuration using the cauchy matrix ErasureCodeIsaDefault Isa(tcache,ErasureCodeIsaDefault::kCauchy); ErasureCodeProfile profile; profile["k"] = "12"; profile["m"] = "4"; profile["technique"] = "cauchy"; Isa.init(profile, &cerr); const int k = 12; const int m = 4; #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); set<int>want_to_encode; map<int, bufferlist> encoded; for (int i = 0; i < (k + m); i++) { want_to_encode.insert(i); } EXPECT_EQ(0, Isa.encode(want_to_encode, in, &encoded)); EXPECT_EQ((unsigned) (k + m), encoded.size()); unsigned length = encoded[0].length(); for (int i = 0; i < k; i++) { EXPECT_EQ(0, memcmp(encoded[i].c_str(), in.c_str() + (i * length), length)); } buffer::ptr enc[k + m]; // create buffers with a copy of the original data to be able to compare it after decoding { for (int i = 0; i < (k + m); i++) { buffer::ptr newenc(buffer::create_page_aligned(LARGE_ENOUGH)); enc[i] = newenc; enc[i].zero(); enc[i].set_length(0); enc[i].append(encoded[i].c_str(), length); } } // loop through all possible loss scenarios int cnt_cf = 0; for (int l1 = 0; l1 < (k + m); l1++) { map<int, bufferlist> degraded = encoded; set<int> want_to_decode; bool err; degraded.erase(l1); want_to_decode.insert(l1); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l2 = l1 + 1; l2 < (k + m); l2++) { degraded.erase(l2); want_to_decode.insert(l2); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l3 = l2 + 1; l3 < (k + m); l3++) { degraded.erase(l3); want_to_decode.insert(l3); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l4 = l3 + 1; l4 < (k + m); l4++) { degraded.erase(l4); want_to_decode.insert(l4); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); degraded[l4] = encoded[l4]; want_to_decode.erase(l4); cnt_cf++; } degraded[l3] = encoded[l3]; want_to_decode.erase(l3); } degraded[l2] = encoded[l2]; want_to_decode.erase(l2); } degraded[l1] = encoded[l1]; want_to_decode.erase(l1); } EXPECT_EQ(2516, cnt_cf); EXPECT_EQ(2516, tcache.getDecodingTableCacheSize(ErasureCodeIsaDefault::kCauchy)); } TEST_F(IsaErasureCodeTest, isa_cauchy_cache_trash) { // Test all possible failure scenarios and reconstruction cases for // a (12,4) configuration using the cauchy matrix ErasureCodeIsaDefault Isa(tcache,ErasureCodeIsaDefault::kCauchy); ErasureCodeProfile profile; profile["k"] = "16"; profile["m"] = "4"; profile["technique"] = "cauchy"; Isa.init(profile, &cerr); const int k = 16; const int m = 4; #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); set<int>want_to_encode; map<int, bufferlist> encoded; for (int i = 0; i < (k + m); i++) { want_to_encode.insert(i); } EXPECT_EQ(0, Isa.encode(want_to_encode, in, &encoded)); EXPECT_EQ((unsigned) (k + m), encoded.size()); unsigned length = encoded[0].length(); for (int i = 0; i < k; i++) { EXPECT_EQ(0, memcmp(encoded[i].c_str(), in.c_str() + (i * length), length)); } buffer::ptr enc[k + m]; // create buffers with a copy of the original data to be able to compare it after decoding { for (int i = 0; i < (k + m); i++) { buffer::ptr newenc(buffer::create_page_aligned(LARGE_ENOUGH)); enc[i] = newenc; enc[i].zero(); enc[i].set_length(0); enc[i].append(encoded[i].c_str(), length); } } // loop through all possible loss scenarios int cnt_cf = 0; for (int l1 = 0; l1 < (k + m); l1++) { map<int, bufferlist> degraded = encoded; set<int> want_to_decode; bool err; degraded.erase(l1); want_to_decode.insert(l1); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l2 = l1 + 1; l2 < (k + m); l2++) { degraded.erase(l2); want_to_decode.insert(l2); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l3 = l2 + 1; l3 < (k + m); l3++) { degraded.erase(l3); want_to_decode.insert(l3); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; for (int l4 = l3 + 1; l4 < (k + m); l4++) { degraded.erase(l4); want_to_decode.insert(l4); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); degraded[l4] = encoded[l4]; want_to_decode.erase(l4); cnt_cf++; } degraded[l3] = encoded[l3]; want_to_decode.erase(l3); } degraded[l2] = encoded[l2]; want_to_decode.erase(l2); } degraded[l1] = encoded[l1]; want_to_decode.erase(l1); } EXPECT_EQ(6195, cnt_cf); EXPECT_EQ(2516, tcache.getDecodingTableCacheSize(ErasureCodeIsaDefault::kCauchy)); } TEST_F(IsaErasureCodeTest, isa_xor_codec) { // Test all possible failure scenarios and reconstruction cases for // a (4,1) RAID-5 like configuration ErasureCodeIsaDefault Isa(tcache); ErasureCodeProfile profile; profile["k"] = "4"; profile["m"] = "1"; Isa.init(profile, &cerr); const int k = 4; const int m = 1; #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); set<int>want_to_encode; map<int, bufferlist> encoded; for (int i = 0; i < (k + m); i++) { want_to_encode.insert(i); } EXPECT_EQ(0, Isa.encode(want_to_encode, in, &encoded)); EXPECT_EQ((unsigned) (k + m), encoded.size()); unsigned length = encoded[0].length(); for (int i = 0; i < k; i++) { EXPECT_EQ(0, memcmp(encoded[i].c_str(), in.c_str() + (i * length), length)); } buffer::ptr enc[k + m]; // create buffers with a copy of the original data to be able to compare it after decoding { for (int i = 0; i < (k + m); i++) { buffer::ptr newenc(buffer::create_page_aligned(LARGE_ENOUGH)); enc[i] = newenc; enc[i].zero(); enc[i].set_length(0); enc[i].append(encoded[i].c_str(), length); } } // loop through all possible loss scenarios int cnt_cf = 0; for (int l1 = 0; l1 < (k + m); l1++) { map<int, bufferlist> degraded = encoded; set<int> want_to_decode; bool err; degraded.erase(l1); want_to_decode.insert(l1); err = DecodeAndVerify(Isa, degraded, want_to_decode, enc, length); EXPECT_EQ(0, err); cnt_cf++; degraded[l1] = encoded[l1]; want_to_decode.erase(l1); } EXPECT_EQ(5, cnt_cf); } TEST_F(IsaErasureCodeTest, create_rule) { std::unique_ptr<CrushWrapper> c = std::make_unique<CrushWrapper>(); c->create(); int root_type = 2; c->set_type_name(root_type, "root"); int host_type = 1; c->set_type_name(host_type, "host"); int osd_type = 0; c->set_type_name(osd_type, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, root_type, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); map<string,string> loc; loc["root"] = "default"; int num_host = 4; int num_osd = 5; int osd = 0; for (int h=0; h<num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o=0; o<num_osd; ++o, ++osd) { c->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } c->finalize(); { stringstream ss; ErasureCodeIsaDefault isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; isa.init(profile, &cerr); int rule = isa.create_rule("myrule", *c, &ss); EXPECT_EQ(0, rule); EXPECT_EQ(-EEXIST, isa.create_rule("myrule", *c, &ss)); // // the minimum that is expected from the created rule is to // successfully map get_chunk_count() devices from the crushmap, // at least once. // vector<__u32> weight(c->get_max_devices(), 0x10000); vector<int> out; int x = 0; c->do_rule(rule, x, out, isa.get_chunk_count(), weight, 0); ASSERT_EQ(out.size(), isa.get_chunk_count()); for (unsigned i=0; i<out.size(); ++i) ASSERT_NE(CRUSH_ITEM_NONE, out[i]); } { stringstream ss; ErasureCodeIsaDefault isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; profile["crush-root"] = "BAD"; isa.init(profile, &cerr); EXPECT_EQ(-ENOENT, isa.create_rule("otherrule", *c, &ss)); EXPECT_EQ("root item BAD does not exist", ss.str()); } { stringstream ss; ErasureCodeIsaDefault isa(tcache); ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; profile["crush-failure-domain"] = "WORSE"; isa.init(profile, &cerr); EXPECT_EQ(-EINVAL, isa.create_rule("otherrule", *c, &ss)); EXPECT_EQ("unknown type WORSE", ss.str()); } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 unittest_erasure_code_isa && * libtool --mode=execute valgrind --tool=memcheck \ * ./unittest_erasure_code_isa \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
31,936
31.992769
130
cc
null
ceph-main/src/test/erasure-code/TestErasureCodeJerasure.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013,2014 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "crush/CrushWrapper.h" #include "include/stringify.h" #include "erasure-code/jerasure/ErasureCodeJerasure.h" #include "global/global_context.h" #include "common/config.h" #include "gtest/gtest.h" using namespace std; template <typename T> class ErasureCodeTest : public ::testing::Test { public: }; typedef ::testing::Types< ErasureCodeJerasureReedSolomonVandermonde, ErasureCodeJerasureReedSolomonRAID6, ErasureCodeJerasureCauchyOrig, ErasureCodeJerasureCauchyGood, ErasureCodeJerasureLiberation, ErasureCodeJerasureBlaumRoth, ErasureCodeJerasureLiber8tion > JerasureTypes; TYPED_TEST_SUITE(ErasureCodeTest, JerasureTypes); TYPED_TEST(ErasureCodeTest, sanity_check_k) { TypeParam jerasure; ErasureCodeProfile profile; profile["k"] = "1"; profile["m"] = "1"; profile["packetsize"] = "8"; ostringstream errors; EXPECT_EQ(-EINVAL, jerasure.init(profile, &errors)); EXPECT_NE(std::string::npos, errors.str().find("must be >= 2")); } TYPED_TEST(ErasureCodeTest, encode_decode) { const char *per_chunk_alignments[] = { "false", "true" }; for (int per_chunk_alignment = 0 ; per_chunk_alignment < 2; per_chunk_alignment++) { TypeParam jerasure; ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["packetsize"] = "8"; profile["jerasure-per-chunk-alignment"] = per_chunk_alignments[per_chunk_alignment]; jerasure.init(profile, &cerr); #define LARGE_ENOUGH 2048 bufferptr in_ptr(buffer::create_page_aligned(LARGE_ENOUGH)); in_ptr.zero(); in_ptr.set_length(0); const char *payload = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; in_ptr.append(payload, strlen(payload)); bufferlist in; in.push_back(in_ptr); int want_to_encode[] = { 0, 1, 2, 3 }; map<int, bufferlist> encoded; EXPECT_EQ(0, jerasure.encode(set<int>(want_to_encode, want_to_encode+4), in, &encoded)); EXPECT_EQ(4u, encoded.size()); unsigned length = encoded[0].length(); EXPECT_EQ(0, memcmp(encoded[0].c_str(), in.c_str(), length)); EXPECT_EQ(0, memcmp(encoded[1].c_str(), in.c_str() + length, in.length() - length)); // all chunks are available { int want_to_decode[] = { 0, 1 }; map<int, bufferlist> decoded; EXPECT_EQ(0, jerasure._decode(set<int>(want_to_decode, want_to_decode+2), encoded, &decoded)); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(length, decoded[0].length()); EXPECT_EQ(0, memcmp(decoded[0].c_str(), in.c_str(), length)); EXPECT_EQ(0, memcmp(decoded[1].c_str(), in.c_str() + length, in.length() - length)); } // two chunks are missing { map<int, bufferlist> degraded = encoded; degraded.erase(0); degraded.erase(1); EXPECT_EQ(2u, degraded.size()); int want_to_decode[] = { 0, 1 }; map<int, bufferlist> decoded; EXPECT_EQ(0, jerasure._decode(set<int>(want_to_decode, want_to_decode+2), degraded, &decoded)); // always decode all, regardless of want_to_decode EXPECT_EQ(4u, decoded.size()); EXPECT_EQ(length, decoded[0].length()); EXPECT_EQ(0, memcmp(decoded[0].c_str(), in.c_str(), length)); EXPECT_EQ(0, memcmp(decoded[1].c_str(), in.c_str() + length, in.length() - length)); } } } TYPED_TEST(ErasureCodeTest, minimum_to_decode) { TypeParam jerasure; ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "7"; profile["packetsize"] = "8"; jerasure.init(profile, &cerr); // // If trying to read nothing, the minimum is empty. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; EXPECT_EQ(0, jerasure._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_TRUE(minimum.empty()); } // // There is no way to read a chunk if none are available. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); EXPECT_EQ(-EIO, jerasure._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // Reading a subset of the available chunks is always possible. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); available_chunks.insert(0); EXPECT_EQ(0, jerasure._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(want_to_read, minimum); } // // There is no way to read a missing chunk if there is less than k // chunks available. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(0); want_to_read.insert(1); available_chunks.insert(0); EXPECT_EQ(-EIO, jerasure._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // When chunks are not available, the minimum can be made of any // chunks. For instance, to read 1 and 3 below the minimum could be // 2 and 3 which may seem better because it contains one of the // chunks to be read. But it won't be more efficient than retrieving // 0 and 2 instead because, in both cases, the decode function will // need to run the same recovery operation and use the same amount // of CPU and memory. // { set<int> want_to_read; set<int> available_chunks; set<int> minimum; want_to_read.insert(1); want_to_read.insert(3); available_chunks.insert(0); available_chunks.insert(2); available_chunks.insert(3); EXPECT_EQ(0, jerasure._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(2u, minimum.size()); EXPECT_EQ(0u, minimum.count(3)); } } TEST(ErasureCodeTest, encode) { ErasureCodeJerasureReedSolomonVandermonde jerasure; ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; jerasure.init(profile, &cerr); unsigned aligned_object_size = jerasure.get_alignment() * 2; { // // When the input bufferlist needs to be padded because // it is not properly aligned, it is padded with zeros. // bufferlist in; map<int,bufferlist> encoded; int want_to_encode[] = { 0, 1, 2, 3 }; int trail_length = 1; in.append(string(aligned_object_size + trail_length, 'X')); EXPECT_EQ(0, jerasure.encode(set<int>(want_to_encode, want_to_encode+4), in, &encoded)); EXPECT_EQ(4u, encoded.size()); char *last_chunk = encoded[1].c_str(); int length =encoded[1].length(); EXPECT_EQ('X', last_chunk[0]); EXPECT_EQ('\0', last_chunk[length - trail_length]); } { // // When only the first chunk is required, the encoded map only // contains the first chunk. Although the jerasure encode // internally allocated a buffer because of padding requirements // and also computes the coding chunks, they are released before // the return of the method, as shown when running the tests thru // valgrind (there is no leak). // bufferlist in; map<int,bufferlist> encoded; set<int> want_to_encode; want_to_encode.insert(0); int trail_length = 1; in.append(string(aligned_object_size + trail_length, 'X')); EXPECT_EQ(0, jerasure.encode(want_to_encode, in, &encoded)); EXPECT_EQ(1u, encoded.size()); } } TEST(ErasureCodeTest, create_rule) { std::unique_ptr<CrushWrapper> c = std::make_unique<CrushWrapper>(); c->create(); int root_type = 2; c->set_type_name(root_type, "root"); int host_type = 1; c->set_type_name(host_type, "host"); int osd_type = 0; c->set_type_name(osd_type, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, root_type, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); map<string,string> loc; loc["root"] = "default"; int num_host = 4; int num_osd = 5; int osd = 0; for (int h=0; h<num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o=0; o<num_osd; ++o, ++osd) { c->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } c->finalize(); { stringstream ss; ErasureCodeJerasureReedSolomonVandermonde jerasure; ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; jerasure.init(profile, &cerr); int rule = jerasure.create_rule("myrule", *c, &ss); EXPECT_EQ(0, rule); EXPECT_EQ(-EEXIST, jerasure.create_rule("myrule", *c, &ss)); // // the minimum that is expected from the created rule is to // successfully map get_chunk_count() devices from the crushmap, // at least once. // vector<__u32> weight(c->get_max_devices(), 0x10000); vector<int> out; int x = 0; c->do_rule(rule, x, out, jerasure.get_chunk_count(), weight, 0); ASSERT_EQ(out.size(), jerasure.get_chunk_count()); for (unsigned i=0; i<out.size(); ++i) ASSERT_NE(CRUSH_ITEM_NONE, out[i]); } { stringstream ss; ErasureCodeJerasureReedSolomonVandermonde jerasure; ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; profile["crush-root"] = "BAD"; jerasure.init(profile, &cerr); EXPECT_EQ(-ENOENT, jerasure.create_rule("otherrule", *c, &ss)); EXPECT_EQ("root item BAD does not exist", ss.str()); } { stringstream ss; ErasureCodeJerasureReedSolomonVandermonde jerasure; ErasureCodeProfile profile; profile["k"] = "2"; profile["m"] = "2"; profile["w"] = "8"; profile["crush-failure-domain"] = "WORSE"; jerasure.init(profile, &cerr); EXPECT_EQ(-EINVAL, jerasure.create_rule("otherrule", *c, &ss)); EXPECT_EQ("unknown type WORSE", ss.str()); } } /* * Local Variables: * compile-command: "cd ../.. ; * make -j4 unittest_erasure_code_jerasure && * valgrind --tool=memcheck \ * ./unittest_erasure_code_jerasure \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
11,003
28.660377
85
cc
null
ceph-main/src/test/erasure-code/TestErasureCodeLrc.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2014 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "crush/CrushWrapper.h" #include "include/stringify.h" #include "erasure-code/lrc/ErasureCodeLrc.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodeLrc, parse_rule) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); EXPECT_EQ("default", lrc.rule_root); EXPECT_EQ("host", lrc.rule_steps.front().type); ErasureCodeProfile profile; profile["crush-root"] = "other"; EXPECT_EQ(0, lrc.parse_rule(profile, &cerr)); EXPECT_EQ("other", lrc.rule_root); profile["crush-steps"] = "[]"; EXPECT_EQ(0, lrc.parse_rule(profile, &cerr)); EXPECT_TRUE(lrc.rule_steps.empty()); profile["crush-steps"] = "0"; EXPECT_EQ(ERROR_LRC_ARRAY, lrc.parse_rule(profile, &cerr)); profile["crush-steps"] = "{"; EXPECT_EQ(ERROR_LRC_PARSE_JSON, lrc.parse_rule(profile, &cerr)); profile["crush-steps"] = "[0]"; EXPECT_EQ(ERROR_LRC_ARRAY, lrc.parse_rule(profile, &cerr)); profile["crush-steps"] = "[[0]]"; EXPECT_EQ(ERROR_LRC_RULE_OP, lrc.parse_rule(profile, &cerr)); profile["crush-steps"] = "[[\"choose\", 0]]"; EXPECT_EQ(ERROR_LRC_RULE_TYPE, lrc.parse_rule(profile, &cerr)); profile["crush-steps"] = "[[\"choose\", \"host\", []]]"; EXPECT_EQ(ERROR_LRC_RULE_N, lrc.parse_rule(profile, &cerr)); profile["crush-steps"] = "[[\"choose\", \"host\", 2]]"; EXPECT_EQ(0, lrc.parse_rule(profile, &cerr)); const ErasureCodeLrc::Step &step = lrc.rule_steps.front(); EXPECT_EQ("choose", step.op); EXPECT_EQ("host", step.type); EXPECT_EQ(2, step.n); profile["crush-steps"] = "[" " [\"choose\", \"rack\", 2], " " [\"chooseleaf\", \"host\", 5], " "]"; EXPECT_EQ(0, lrc.parse_rule(profile, &cerr)); EXPECT_EQ(2U, lrc.rule_steps.size()); { const ErasureCodeLrc::Step &step = lrc.rule_steps[0]; EXPECT_EQ("choose", step.op); EXPECT_EQ("rack", step.type); EXPECT_EQ(2, step.n); } { const ErasureCodeLrc::Step &step = lrc.rule_steps[1]; EXPECT_EQ("chooseleaf", step.op); EXPECT_EQ("host", step.type); EXPECT_EQ(5, step.n); } } TEST(ErasureCodeTest, create_rule) { CrushWrapper *c = new CrushWrapper; c->create(); int root_type = 3; c->set_type_name(root_type, "root"); int rack_type = 2; c->set_type_name(rack_type, "rack"); int host_type = 1; c->set_type_name(host_type, "host"); int osd_type = 0; c->set_type_name(osd_type, "osd"); int rootno; c->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, root_type, 0, NULL, NULL, &rootno); c->set_item_name(rootno, "default"); map<string,string> loc; loc["root"] = "default"; // // Set all to 10 so that the item number it trivial to decompose // into rack/host/osd. // int num_rack; int num_host; int num_osd; num_rack = num_host = num_osd = 10; int osd = 0; for (int r=0; r<num_rack; ++r) { loc["rack"] = string("rack-") + stringify(r); for (int h=0; h<num_host; ++h) { loc["host"] = string("host-") + stringify(r) + string("-") + stringify(h); for (int o=0; o<num_osd; ++o, ++osd) { c->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } } c->finalize(); ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); EXPECT_EQ(0, lrc.create_rule("rule1", *c, &cerr)); ErasureCodeProfile profile; unsigned int racks = 2; unsigned int hosts = 5; profile["crush-steps"] = "[" " [\"choose\", \"rack\", " + stringify(racks) + "], " " [\"chooseleaf\", \"host\", " + stringify(hosts) + "], " "]"; const char *rule_name = "rule2"; EXPECT_EQ(0, lrc.parse_rule(profile, &cerr)); EXPECT_EQ(1, lrc.create_rule(rule_name, *c, &cerr)); vector<__u32> weight; for (int o = 0; o < c->get_max_devices(); o++) weight.push_back(0x10000); int rule = c->get_rule_id(rule_name); vector<int> out; unsigned int n = racks * hosts; c->do_rule(rule, 1, out, n, weight, 0); EXPECT_EQ(n, out.size()); // // check that the first five are in the same rack and the next five // in the same rack // int first_rack = out[0] / num_host / num_osd; EXPECT_EQ(first_rack, out[1] / num_host / num_osd); EXPECT_EQ(first_rack, out[2] / num_host / num_osd); EXPECT_EQ(first_rack, out[3] / num_host / num_osd); EXPECT_EQ(first_rack, out[4] / num_host / num_osd); int second_rack = out[5] / num_host / num_osd; EXPECT_EQ(second_rack, out[6] / num_host / num_osd); EXPECT_EQ(second_rack, out[7] / num_host / num_osd); EXPECT_EQ(second_rack, out[8] / num_host / num_osd); EXPECT_EQ(second_rack, out[9] / num_host / num_osd); } TEST(ErasureCodeLrc, parse_kml) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; EXPECT_EQ(0, lrc.parse_kml(profile, &cerr)); profile["k"] = "4"; EXPECT_EQ(ERROR_LRC_ALL_OR_NOTHING, lrc.parse_kml(profile, &cerr)); const char *generated[] = { "mapping", "layers", "crush-steps" }; profile["m"] = "2"; profile["l"] = "3"; for (int i = 0; i < 3; i++) { profile[generated[i]] = "SET"; EXPECT_EQ(ERROR_LRC_GENERATED, lrc.parse_kml(profile, &cerr)); profile.erase(profile.find(generated[i])); } profile["k"] = "4"; profile["m"] = "2"; profile["l"] = "7"; EXPECT_EQ(ERROR_LRC_K_M_MODULO, lrc.parse_kml(profile, &cerr)); profile["k"] = "3"; profile["m"] = "3"; profile["l"] = "3"; EXPECT_EQ(ERROR_LRC_K_MODULO, lrc.parse_kml(profile, &cerr)); profile["k"] = "4"; profile["m"] = "2"; profile["l"] = "3"; EXPECT_EQ(0, lrc.parse_kml(profile, &cerr)); EXPECT_EQ("[ " " [ \"DDc_DDc_\", \"\" ]," " [ \"DDDc____\", \"\" ]," " [ \"____DDDc\", \"\" ]," "]", profile["layers"]); EXPECT_EQ("DD__DD__", profile["mapping"]); EXPECT_EQ("chooseleaf", lrc.rule_steps[0].op); EXPECT_EQ("host", lrc.rule_steps[0].type); EXPECT_EQ(0, lrc.rule_steps[0].n); EXPECT_EQ(1U, lrc.rule_steps.size()); profile.erase(profile.find("mapping")); profile.erase(profile.find("layers")); profile["k"] = "4"; profile["m"] = "2"; profile["l"] = "3"; profile["crush-failure-domain"] = "osd"; EXPECT_EQ(0, lrc.parse_kml(profile, &cerr)); EXPECT_EQ("chooseleaf", lrc.rule_steps[0].op); EXPECT_EQ("osd", lrc.rule_steps[0].type); EXPECT_EQ(0, lrc.rule_steps[0].n); EXPECT_EQ(1U, lrc.rule_steps.size()); profile.erase(profile.find("mapping")); profile.erase(profile.find("layers")); profile["k"] = "4"; profile["m"] = "2"; profile["l"] = "3"; profile["crush-failure-domain"] = "osd"; profile["crush-locality"] = "rack"; EXPECT_EQ(0, lrc.parse_kml(profile, &cerr)); EXPECT_EQ("choose", lrc.rule_steps[0].op); EXPECT_EQ("rack", lrc.rule_steps[0].type); EXPECT_EQ(2, lrc.rule_steps[0].n); EXPECT_EQ("chooseleaf", lrc.rule_steps[1].op); EXPECT_EQ("osd", lrc.rule_steps[1].type); EXPECT_EQ(4, lrc.rule_steps[1].n); EXPECT_EQ(2U, lrc.rule_steps.size()); profile.erase(profile.find("mapping")); profile.erase(profile.find("layers")); } TEST(ErasureCodeLrc, layers_description) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; json_spirit::mArray description; EXPECT_EQ(ERROR_LRC_DESCRIPTION, lrc.layers_description(profile, &description, &cerr)); { const char *description_string = "\"not an array\""; profile["layers"] = description_string; EXPECT_EQ(ERROR_LRC_ARRAY, lrc.layers_description(profile, &description, &cerr)); } { const char *description_string = "invalid json"; profile["layers"] = description_string; EXPECT_EQ(ERROR_LRC_PARSE_JSON, lrc.layers_description(profile, &description, &cerr)); } { const char *description_string = "[]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); } } TEST(ErasureCodeLrc, layers_parse) { { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char *description_string ="[ 0 ]"; profile["layers"] = description_string; json_spirit::mArray description; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); EXPECT_EQ(ERROR_LRC_ARRAY, lrc.layers_parse(description_string, description, &cerr)); } { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char *description_string ="[ [ 0 ] ]"; profile["layers"] = description_string; json_spirit::mArray description; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); EXPECT_EQ(ERROR_LRC_STR, lrc.layers_parse(description_string, description, &cerr)); } { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char *description_string ="[ [ \"\", 0 ] ]"; profile["layers"] = description_string; json_spirit::mArray description; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); EXPECT_EQ(ERROR_LRC_CONFIG_OPTIONS, lrc.layers_parse(description_string, description, &cerr)); } // // The second element can be an object describing the plugin // profile. // { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char *description_string ="[ [ \"\", { \"a\": \"b\" }, \"ignored\" ] ]"; profile["layers"] = description_string; json_spirit::mArray description; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); EXPECT_EQ(0, lrc.layers_parse(description_string, description, &cerr)); EXPECT_EQ("b", lrc.layers.front().profile["a"]); } // // The second element can be a str_map parseable string describing the plugin // profile. // { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char *description_string ="[ [ \"\", \"a=b c=d\" ] ]"; profile["layers"] = description_string; json_spirit::mArray description; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); EXPECT_EQ(0, lrc.layers_parse(description_string, description, &cerr)); EXPECT_EQ("b", lrc.layers.front().profile["a"]); EXPECT_EQ("d", lrc.layers.front().profile["c"]); } } TEST(ErasureCodeLrc, layers_sanity_checks) { { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "__DDD__DD"; const char *description_string = "[ " " [ \"_cDDD_cDD\", \"\" ]," " [ \"c_DDD____\", \"\" ]," " [ \"_____cDDD\", \"\" ]," "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); } { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char *description_string = "[ " "]"; profile["layers"] = description_string; EXPECT_EQ(ERROR_LRC_MAPPING, lrc.init(profile, &cerr)); } { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = ""; const char *description_string = "[ " "]"; profile["layers"] = description_string; EXPECT_EQ(ERROR_LRC_LAYERS_COUNT, lrc.init(profile, &cerr)); } { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "DD"; const char *description_string = "[ " " [ \"DD??\", \"\" ], " " [ \"DD\", \"\" ], " " [ \"DD\", \"\" ], " "]"; profile["layers"] = description_string; EXPECT_EQ(-EINVAL, lrc.init(profile, &cerr)); } } TEST(ErasureCodeLrc, layers_init) { { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; const char* env = getenv("CEPH_LIB"); string directory(env ? env : "lib"); string description_string = "[ " " [ \"_cDDD_cDD_\", \"directory=" + directory + "\" ]," "]"; profile["layers"] = description_string; json_spirit::mArray description; EXPECT_EQ(0, lrc.layers_description(profile, &description, &cerr)); EXPECT_EQ(0, lrc.layers_parse(description_string, description, &cerr)); EXPECT_EQ(0, lrc.layers_init(&cerr)); EXPECT_EQ("5", lrc.layers.front().profile["k"]); EXPECT_EQ("2", lrc.layers.front().profile["m"]); EXPECT_EQ("jerasure", lrc.layers.front().profile["plugin"]); EXPECT_EQ("reed_sol_van", lrc.layers.front().profile["technique"]); } } TEST(ErasureCodeLrc, init) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "__DDD__DD"; const char *description_string = "[ " " [ \"_cDDD_cDD\", \"\" ]," " [ \"c_DDD____\", \"\" ]," " [ \"_____cDDD\", \"\" ]," "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); } TEST(ErasureCodeLrc, init_kml) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["k"] = "4"; profile["m"] = "2"; profile["l"] = "3"; EXPECT_EQ(0, lrc.init(profile, &cerr)); EXPECT_EQ((unsigned int)(4 + 2 + (4 + 2) / 3), lrc.get_chunk_count()); } TEST(ErasureCodeLrc, minimum_to_decode) { // trivial : no erasures, the minimum is want_to_read { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "__DDD__DD"; const char *description_string = "[ " " [ \"_cDDD_cDD\", \"\" ]," " [ \"c_DDD____\", \"\" ]," " [ \"_____cDDD\", \"\" ]," "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); set<int> want_to_read; want_to_read.insert(1); set<int> available_chunks; available_chunks.insert(1); available_chunks.insert(2); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(want_to_read, minimum); } // locally repairable erasure { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "__DDD__DD_"; const char *description_string = "[ " " [ \"_cDDD_cDD_\", \"\" ]," " [ \"c_DDD_____\", \"\" ]," " [ \"_____cDDD_\", \"\" ]," " [ \"_____DDDDc\", \"\" ]," "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); EXPECT_EQ(profile["mapping"].length(), lrc.get_chunk_count()); { // want to read the last chunk set<int> want_to_read; want_to_read.insert(lrc.get_chunk_count() - 1); // all chunks are available except the last chunk set<int> available_chunks; for (int i = 0; i < (int)lrc.get_chunk_count() - 1; i++) available_chunks.insert(i); // _____DDDDc can recover c set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); set<int> expected_minimum; expected_minimum.insert(5); expected_minimum.insert(6); expected_minimum.insert(7); expected_minimum.insert(8); EXPECT_EQ(expected_minimum, minimum); } { set<int> want_to_read; want_to_read.insert(0); set<int> available_chunks; for (int i = 1; i < (int)lrc.get_chunk_count(); i++) available_chunks.insert(i); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); set<int> expected_minimum; expected_minimum.insert(2); expected_minimum.insert(3); expected_minimum.insert(4); EXPECT_EQ(expected_minimum, minimum); } } // implicit parity required { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "__DDD__DD"; const char *description_string = "[ " " [ \"_cDDD_cDD\", \"\" ]," " [ \"c_DDD____\", \"\" ]," " [ \"_____cDDD\", \"\" ]," "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); EXPECT_EQ(profile["mapping"].length(), lrc.get_chunk_count()); set<int> want_to_read; want_to_read.insert(8); // // unable to recover, too many chunks missing // { set<int> available_chunks; available_chunks.insert(0); available_chunks.insert(1); // missing (2) // missing (3) available_chunks.insert(4); available_chunks.insert(5); available_chunks.insert(6); // missing (7) // missing (8) set<int> minimum; EXPECT_EQ(-EIO, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); } // // We want to read chunk 8 and encoding was done with // // _cDDD_cDD // c_DDD____ // _____cDDD // // First strategy fails: // // 012345678 // xxXXXxxXX initial chunks // xx.XXxx.. missing (2, 7, 8) // _____cDDD fail : can recover 1 but 2 are missing // c_DDD____ ignored because 8 is not used (i.e. _) // _cDDD_cDD fail : can recover 2 but 3 are missing // // Second strategy succeeds: // // 012345678 // xxXXXxxXX initial chunks // xx.XXxx.. missing (2, 7, 8) // _____cDDD fail : can recover 1 but 2 are missing // c_DDD____ success: recovers chunk 2 // _cDDD_cDD success: recovers chunk 7, 8 // { set<int> available_chunks; available_chunks.insert(0); available_chunks.insert(1); // missing (2) available_chunks.insert(3); available_chunks.insert(4); available_chunks.insert(5); available_chunks.insert(6); // missing (7) // missing (8) set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(available_chunks, minimum); } } } TEST(ErasureCodeLrc, encode_decode) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "__DD__DD"; const char *description_string = "[ " " [ \"_cDD_cDD\", \"\" ]," // global layer " [ \"c_DD____\", \"\" ]," // first local layer " [ \"____cDDD\", \"\" ]," // second local layer "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); EXPECT_EQ(4U, lrc.get_data_chunk_count()); unsigned int chunk_size = g_conf().get_val<Option::size_t>("osd_pool_erasure_code_stripe_unit"); unsigned int stripe_width = lrc.get_data_chunk_count() * chunk_size; EXPECT_EQ(chunk_size, lrc.get_chunk_size(stripe_width)); set<int> want_to_encode; map<int, bufferlist> encoded; for (unsigned int i = 0; i < lrc.get_chunk_count(); ++i) { want_to_encode.insert(i); bufferptr ptr(buffer::create_page_aligned(chunk_size)); bufferlist tmp; tmp.push_back(ptr); tmp.claim_append(encoded[i]); encoded[i].swap(tmp); } const vector<int> &mapping = lrc.get_chunk_mapping(); char c = 'A'; for (unsigned int i = 0; i < lrc.get_data_chunk_count(); i++) { int j = mapping[i]; string s(chunk_size, c); encoded[j].clear(); encoded[j].append(s); c++; } EXPECT_EQ(0, lrc.encode_chunks(want_to_encode, &encoded)); { map<int, bufferlist> chunks; chunks[4] = encoded[4]; chunks[5] = encoded[5]; chunks[6] = encoded[6]; set<int> want_to_read; want_to_read.insert(7); set<int> available_chunks; available_chunks.insert(4); available_chunks.insert(5); available_chunks.insert(6); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); // only need three chunks from the second local layer EXPECT_EQ(3U, minimum.size()); EXPECT_EQ(1U, minimum.count(4)); EXPECT_EQ(1U, minimum.count(5)); EXPECT_EQ(1U, minimum.count(6)); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, chunks, &decoded)); string s(chunk_size, 'D'); EXPECT_EQ(s, string(decoded[7].c_str(), chunk_size)); } { set<int> want_to_read; want_to_read.insert(2); map<int, bufferlist> chunks; chunks[1] = encoded[1]; chunks[3] = encoded[3]; chunks[5] = encoded[5]; chunks[6] = encoded[6]; chunks[7] = encoded[7]; set<int> available_chunks; available_chunks.insert(1); available_chunks.insert(3); available_chunks.insert(5); available_chunks.insert(6); available_chunks.insert(7); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(5U, minimum.size()); EXPECT_EQ(available_chunks, minimum); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, encoded, &decoded)); string s(chunk_size, 'A'); EXPECT_EQ(s, string(decoded[2].c_str(), chunk_size)); } { set<int> want_to_read; want_to_read.insert(3); want_to_read.insert(6); want_to_read.insert(7); set<int> available_chunks; available_chunks.insert(0); available_chunks.insert(1); available_chunks.insert(2); // available_chunks.insert(3); available_chunks.insert(4); available_chunks.insert(5); // available_chunks.insert(6); // available_chunks.insert(7); encoded.erase(3); encoded.erase(6); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(4U, minimum.size()); // only need two chunks from the first local layer EXPECT_EQ(1U, minimum.count(0)); EXPECT_EQ(1U, minimum.count(2)); // the above chunks will rebuild chunk 3 and the global layer only needs // three more chunks to reach the required amount of chunks (4) to recover // the last two EXPECT_EQ(1U, minimum.count(1)); EXPECT_EQ(1U, minimum.count(2)); EXPECT_EQ(1U, minimum.count(5)); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, encoded, &decoded)); { string s(chunk_size, 'B'); EXPECT_EQ(s, string(decoded[3].c_str(), chunk_size)); } { string s(chunk_size, 'C'); EXPECT_EQ(s, string(decoded[6].c_str(), chunk_size)); } { string s(chunk_size, 'D'); EXPECT_EQ(s, string(decoded[7].c_str(), chunk_size)); } } } TEST(ErasureCodeLrc, encode_decode_2) { ErasureCodeLrc lrc(g_conf().get_val<std::string>("erasure_code_dir")); ErasureCodeProfile profile; profile["mapping"] = "DD__DD__"; const char *description_string = "[ " " [ \"DDc_DDc_\", \"\" ]," " [ \"DDDc____\", \"\" ]," " [ \"____DDDc\", \"\" ]," "]"; profile["layers"] = description_string; EXPECT_EQ(0, lrc.init(profile, &cerr)); EXPECT_EQ(4U, lrc.get_data_chunk_count()); unsigned int chunk_size = g_conf().get_val<Option::size_t>("osd_pool_erasure_code_stripe_unit"); unsigned int stripe_width = lrc.get_data_chunk_count() * chunk_size; EXPECT_EQ(chunk_size, lrc.get_chunk_size(stripe_width)); set<int> want_to_encode; map<int, bufferlist> encoded; for (unsigned int i = 0; i < lrc.get_chunk_count(); ++i) { want_to_encode.insert(i); bufferptr ptr(buffer::create_page_aligned(chunk_size)); bufferlist tmp; tmp.push_back(ptr); tmp.claim_append(encoded[i]); encoded[i].swap(tmp); } const vector<int> &mapping = lrc.get_chunk_mapping(); char c = 'A'; for (unsigned int i = 0; i < lrc.get_data_chunk_count(); i++) { int j = mapping[i]; string s(chunk_size, c); encoded[j].clear(); encoded[j].append(s); c++; } EXPECT_EQ(0, lrc.encode_chunks(want_to_encode, &encoded)); { set<int> want_to_read; want_to_read.insert(0); map<int, bufferlist> chunks; chunks[1] = encoded[1]; chunks[3] = encoded[3]; chunks[4] = encoded[4]; chunks[5] = encoded[5]; chunks[6] = encoded[6]; chunks[7] = encoded[7]; set<int> available_chunks; available_chunks.insert(1); available_chunks.insert(3); available_chunks.insert(4); available_chunks.insert(5); available_chunks.insert(6); available_chunks.insert(7); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(4U, minimum.size()); EXPECT_EQ(1U, minimum.count(1)); EXPECT_EQ(1U, minimum.count(4)); EXPECT_EQ(1U, minimum.count(5)); EXPECT_EQ(1U, minimum.count(6)); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, chunks, &decoded)); string s(chunk_size, 'A'); EXPECT_EQ(s, string(decoded[0].c_str(), chunk_size)); } { set<int> want_to_read; for (unsigned int i = 0; i < lrc.get_chunk_count(); i++) want_to_read.insert(i); map<int, bufferlist> chunks; chunks[1] = encoded[1]; chunks[3] = encoded[3]; chunks[5] = encoded[5]; chunks[6] = encoded[6]; chunks[7] = encoded[7]; set<int> available_chunks; available_chunks.insert(1); available_chunks.insert(3); available_chunks.insert(5); available_chunks.insert(6); available_chunks.insert(7); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(5U, minimum.size()); EXPECT_EQ(1U, minimum.count(1)); EXPECT_EQ(1U, minimum.count(3)); EXPECT_EQ(1U, minimum.count(5)); EXPECT_EQ(1U, minimum.count(6)); EXPECT_EQ(1U, minimum.count(7)); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, chunks, &decoded)); { string s(chunk_size, 'A'); EXPECT_EQ(s, string(decoded[0].c_str(), chunk_size)); } { string s(chunk_size, 'B'); EXPECT_EQ(s, string(decoded[1].c_str(), chunk_size)); } { string s(chunk_size, 'C'); EXPECT_EQ(s, string(decoded[4].c_str(), chunk_size)); } { string s(chunk_size, 'D'); EXPECT_EQ(s, string(decoded[5].c_str(), chunk_size)); } } { set<int> want_to_read; for (unsigned int i = 0; i < lrc.get_chunk_count(); i++) want_to_read.insert(i); map<int, bufferlist> chunks; chunks[1] = encoded[1]; chunks[3] = encoded[3]; chunks[5] = encoded[5]; chunks[6] = encoded[6]; chunks[7] = encoded[7]; set<int> available_chunks; available_chunks.insert(1); available_chunks.insert(3); available_chunks.insert(5); available_chunks.insert(6); available_chunks.insert(7); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(5U, minimum.size()); EXPECT_EQ(1U, minimum.count(1)); EXPECT_EQ(1U, minimum.count(3)); EXPECT_EQ(1U, minimum.count(5)); EXPECT_EQ(1U, minimum.count(6)); EXPECT_EQ(1U, minimum.count(7)); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, chunks, &decoded)); { string s(chunk_size, 'A'); EXPECT_EQ(s, string(decoded[0].c_str(), chunk_size)); } { string s(chunk_size, 'B'); EXPECT_EQ(s, string(decoded[1].c_str(), chunk_size)); } { string s(chunk_size, 'C'); EXPECT_EQ(s, string(decoded[4].c_str(), chunk_size)); } { string s(chunk_size, 'D'); EXPECT_EQ(s, string(decoded[5].c_str(), chunk_size)); } } { set<int> want_to_read; want_to_read.insert(6); map<int, bufferlist> chunks; chunks[0] = encoded[0]; chunks[1] = encoded[1]; chunks[3] = encoded[3]; chunks[5] = encoded[5]; chunks[7] = encoded[7]; set<int> available_chunks; available_chunks.insert(0); available_chunks.insert(1); available_chunks.insert(3); available_chunks.insert(5); available_chunks.insert(7); set<int> minimum; EXPECT_EQ(0, lrc._minimum_to_decode(want_to_read, available_chunks, &minimum)); EXPECT_EQ(available_chunks, minimum); map<int, bufferlist> decoded; EXPECT_EQ(0, lrc._decode(want_to_read, chunks, &decoded)); } } /* * Local Variables: * compile-command: "cd ../.. ; * make -j4 unittest_erasure_code_lrc && valgrind --tool=memcheck \ * ./unittest_erasure_code_lrc \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
29,144
30.474082
98
cc
null
ceph-main/src/test/erasure-code/TestErasureCodePlugin.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013,2014 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <signal.h> #include <stdlib.h> #include "common/Thread.h" #include "erasure-code/ErasureCodePlugin.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; class ErasureCodePluginRegistryTest : public ::testing::Test {}; TEST_F(ErasureCodePluginRegistryTest, factory_mutex) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); { unique_lock l{instance.lock, std::try_to_lock}; EXPECT_TRUE(l.owns_lock()); } // // Test that the loading of a plugin is protected by a mutex. std::thread sleep_for_10_secs([] { ErasureCodeProfile profile; ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); ErasureCodeInterfaceRef erasure_code; instance.factory("hangs", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr); }); auto wait_until = [&instance](bool loading, unsigned max_secs) { auto delay = 0ms; const auto DELAY_MAX = std::chrono::seconds(max_secs); for (; delay < DELAY_MAX; delay = (delay + 1ms) * 2) { cout << "Trying (1) with delay " << delay << "us\n"; if (delay.count() > 0) { std::this_thread::sleep_for(delay); } if (instance.loading == loading) { return true; } } return false; }; // should be loading in 5 seconds ASSERT_TRUE(wait_until(true, 5)); { unique_lock l{instance.lock, std::try_to_lock}; EXPECT_TRUE(!l.owns_lock()); } // should finish loading in 15 seconds ASSERT_TRUE(wait_until(false, 15)); { unique_lock l{instance.lock, std::try_to_lock}; EXPECT_TRUE(l.owns_lock()); } sleep_for_10_secs.join(); } TEST_F(ErasureCodePluginRegistryTest, all) { ErasureCodeProfile profile; string directory = g_conf().get_val<std::string>("erasure_code_dir"); ErasureCodeInterfaceRef erasure_code; ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); EXPECT_FALSE(erasure_code); EXPECT_EQ(-EIO, instance.factory("invalid", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); EXPECT_EQ(-EXDEV, instance.factory("missing_version", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); EXPECT_EQ(-ENOENT, instance.factory("missing_entry_point", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); EXPECT_EQ(-ESRCH, instance.factory("fail_to_initialize", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); EXPECT_EQ(-EBADF, instance.factory("fail_to_register", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("example", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); ErasureCodePlugin *plugin = 0; { std::lock_guard l{instance.lock}; EXPECT_EQ(-EEXIST, instance.load("example", directory, &plugin, &cerr)); EXPECT_EQ(-ENOENT, instance.remove("does not exist")); EXPECT_EQ(0, instance.remove("example")); EXPECT_EQ(0, instance.load("example", directory, &plugin, &cerr)); } } /* * Local Variables: * compile-command: "cd ../../../build ; make -j4 && * make unittest_erasure_code_plugin && * valgrind --tool=memcheck \ * ./bin/unittest_erasure_code_plugin \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
4,366
32.083333
80
cc
null
ceph-main/src/test/erasure-code/TestErasureCodePluginClay.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2018 Indian Institute of Science <[email protected]> * * Author: Myna Vajha <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "erasure-code/ErasureCodePlugin.h" #include "log/Log.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodePlugin, factory) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); ErasureCodeProfile profile; { ErasureCodeInterfaceRef erasure_code; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("clay", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code); } //check clay plugin with scalar_mds=jerasure { const char *techniques[] = { "reed_sol_van", "reed_sol_r6_op", "cauchy_orig", "cauchy_good", "liber8tion", 0 }; for(const char **technique = techniques; *technique; technique++) { ErasureCodeInterfaceRef erasure_code; ErasureCodeProfile profile; profile["scalar_mds"] = "jerasure"; profile["technique"] = *technique; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("clay", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } } #ifdef WITH_EC_ISA_PLUGIN //check clay plugin with scalar_mds=isa { const char *techniques[] = { "reed_sol_van", "cauchy", 0 }; for(const char **technique = techniques; *technique; technique++) { ErasureCodeInterfaceRef erasure_code; ErasureCodeProfile profile; profile["scalar_mds"] = "isa"; profile["technique"] = *technique; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("clay", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } } #endif //check clay plugin with scalar_mds=shec { const char *techniques[] = { "single", "multiple", 0 }; for(const char **technique = techniques; *technique; technique++) { ErasureCodeInterfaceRef erasure_code; ErasureCodeProfile profile; profile["scalar_mds"] = "shec"; profile["technique"] = *technique; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("clay", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_erasure_code_plugin_clay && * valgrind --tool=memcheck ./unittest_erasure_code_plugin_clay \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
3,539
29.782609
86
cc
null
ceph-main/src/test/erasure-code/TestErasureCodePluginIsa.cc
/* * Ceph - scalable distributed file system * * Copyright (C) 2014 CERN (Switzerland) * * Author: Andreas-Joachim Peters <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "arch/probe.h" #include "arch/intel.h" #include "erasure-code/ErasureCodePlugin.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodePlugin, factory) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); ErasureCodeProfile profile; { ErasureCodeInterfaceRef erasure_code; EXPECT_FALSE(erasure_code); EXPECT_EQ(-EIO, instance.factory("no-isa", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); } const char *techniques[] = { "reed_sol_van", 0 }; for(const char **technique = techniques; *technique; technique++) { ErasureCodeInterfaceRef erasure_code; profile["technique"] = *technique; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("isa", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_erasure_code_plugin_isa && * valgrind --tool=memcheck ./unittest_erasure_code_plugin_isa \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
1,815
27.825397
78
cc
null
ceph-main/src/test/erasure-code/TestErasureCodePluginJerasure.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2013,2014 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "erasure-code/ErasureCodePlugin.h" #include "log/Log.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodePlugin, factory) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); ErasureCodeProfile profile; { ErasureCodeInterfaceRef erasure_code; EXPECT_FALSE(erasure_code); EXPECT_EQ(-ENOENT, instance.factory("jerasure", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_FALSE(erasure_code); } const char *techniques[] = { "reed_sol_van", "reed_sol_r6_op", "cauchy_orig", "cauchy_good", "liberation", "blaum_roth", "liber8tion", 0 }; for(const char **technique = techniques; *technique; technique++) { ErasureCodeInterfaceRef erasure_code; ErasureCodeProfile profile; profile["technique"] = *technique; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("jerasure", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_erasure_code_plugin_jerasure && * valgrind --tool=memcheck ./unittest_erasure_code_plugin_jerasure \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
2,122
28.486111
78
cc
null
ceph-main/src/test/erasure-code/TestErasureCodePluginLrc.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2014 Cloudwatt <[email protected]> * Copyright (C) 2014 Red Hat <[email protected]> * * Author: Loic Dachary <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "arch/probe.h" #include "arch/intel.h" #include "erasure-code/ErasureCodePlugin.h" #include "global/global_context.h" #include "common/config_proxy.h" #include "gtest/gtest.h" using namespace std; TEST(ErasureCodePlugin, factory) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); ErasureCodeProfile profile; profile["mapping"] = "DD_"; profile["layers"] = "[ [ \"DDc\", \"\" ] ]"; ErasureCodeInterfaceRef erasure_code; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("lrc", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_erasure_code_plugin_lrc && * valgrind --tool=memcheck ./unittest_erasure_code_plugin_lrc \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
1,539
29.196078
78
cc
null
ceph-main/src/test/erasure-code/TestErasureCodePluginShec.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph distributed storage system * * Copyright (C) 2015 FUJITSU LIMITED * * Author: Shotaro Kawaguchi <[email protected]> * Author: Takanori Nakao <[email protected]> * Author: Takeshi Miyamae <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ #include <errno.h> #include <stdlib.h> #include "erasure-code/ErasureCodePlugin.h" #include "global/global_context.h" #include "gtest/gtest.h" #include "common/config_proxy.h" using namespace std; TEST(ErasureCodePlugin, factory) { ErasureCodePluginRegistry &instance = ErasureCodePluginRegistry::instance(); map<std::string,std::string> profile; { ErasureCodeInterfaceRef erasure_code; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("shec", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } const char *techniques[] = { "single", "multiple", 0 }; for(const char **technique = techniques; *technique; technique++) { ErasureCodeInterfaceRef erasure_code; profile["technique"] = *technique; EXPECT_FALSE(erasure_code); EXPECT_EQ(0, instance.factory("shec", g_conf().get_val<std::string>("erasure_code_dir"), profile, &erasure_code, &cerr)); EXPECT_TRUE(erasure_code.get()); } } /* * Local Variables: * compile-command: "cd ../.. ; make -j4 && * make unittest_erasure_code_plugin_shec && * valgrind --tool=memcheck ./unittest_erasure_code_plugin_shec \ * --gtest_filter=*.* --log-to-stderr=true --debug-osd=20" * End: */
1,977
28.969697
78
cc
null
ceph-main/src/test/erasure-code/TestErasureCodeShec.cc
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2014,2015 FUJITSU LIMITED * * Author: Shotaro Kawaguchi <[email protected]> * Author: Takanori Nakao <[email protected]> * Author: Takeshi Miyamae <[email protected]> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * */ //SUMMARY: TestErasureCodeShec #include <errno.h> #include <pthread.h> #include <stdlib.h> #include "crush/CrushWrapper.h" #include "osd/osd_types.h" #include "include/stringify.h" #include "erasure-code/shec/ErasureCodeShec.h" #include "erasure-code/ErasureCodePlugin.h" #include "global/global_context.h" #include "gtest/gtest.h" using namespace std; void* thread1(void* pParam); void* thread2(void* pParam); void* thread3(void* pParam); void* thread4(void* pParam); void* thread5(void* pParam); static int g_flag = 0; TEST(ErasureCodeShec, init_1) { //all parameters are normal values ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); //check profile EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); EXPECT_EQ(ErasureCodeShec::MULTIPLE, shec->technique); EXPECT_STREQ("default", shec->rule_root.c_str()); EXPECT_STREQ("osd", shec->rule_failure_domain.c_str()); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_2) { //all parameters are normal values ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-root"] = "test"; (*profile)["crush-failure-domain"] = "host"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "8"; int r = shec->init(*profile, &cerr); //check profile EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); EXPECT_EQ(ErasureCodeShec::MULTIPLE, shec->technique); EXPECT_STREQ("test", shec->rule_root.c_str()); EXPECT_STREQ("host", shec->rule_failure_domain.c_str()); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_3) { //all parameters are normal values ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "16"; int r = shec->init(*profile, &cerr); //check profile EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(16, shec->w); EXPECT_EQ(ErasureCodeShec::MULTIPLE, shec->technique); EXPECT_STREQ("default", shec->rule_root.c_str()); EXPECT_STREQ("osd", shec->rule_failure_domain.c_str()); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_4) { //all parameters are normal values ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "32"; int r = shec->init(*profile, &cerr); //check profile EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(32, shec->w); EXPECT_EQ(ErasureCodeShec::MULTIPLE, shec->technique); EXPECT_STREQ("default", shec->rule_root.c_str()); EXPECT_STREQ("osd", shec->rule_failure_domain.c_str()); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_5) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); //plugin is not specified (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_6) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "jerasure"; //unexpected value (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_7) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "abc"; //unexpected value (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_8) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_9) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-root"] = "abc"; //unexpected value (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_10) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "abc"; //unexpected value (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_11) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = "abc"; //unexpected value (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_12) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "-1"; //unexpected value (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_13) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "abc"; (*profile)["k"] = "0.1"; //unexpected value (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_14) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "a"; //unexpected value (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_15) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; //k is not specified (*profile)["m"] = "3"; (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_16) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "-1"; //unexpected value (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_17) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "0.1"; //unexpected value (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_18) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "a"; //unexpected value (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_19) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; //m is not specified (*profile)["c"] = "2"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_20) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "-1"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_21) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "0.1"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_22) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "a"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_23) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; //c is not specified int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_24) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "1"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); //w is default value delete shec; delete profile; } TEST(ErasureCodeShec, init_25) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "-1"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); //w is default value delete shec; delete profile; } TEST(ErasureCodeShec, init_26) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "0.1"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); //w is default value delete shec; delete profile; } TEST(ErasureCodeShec, init_27) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "a"; //unexpected value int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); //w is default value delete shec; delete profile; } TEST(ErasureCodeShec, init_28) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "10"; //c > m int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_29) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; //k is not specified //m is not specified //c is not specified int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); //k,m,c are default values EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); delete shec; delete profile; } TEST(ErasureCodeShec, init_30) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "12"; (*profile)["m"] = "8"; (*profile)["c"] = "8"; int r = shec->init(*profile, &cerr); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(12, shec->k); EXPECT_EQ(8, shec->m); EXPECT_EQ(8, shec->c); delete shec; delete profile; } TEST(ErasureCodeShec, init_31) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "13"; (*profile)["m"] = "7"; (*profile)["c"] = "7"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_32) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "7"; (*profile)["m"] = "13"; (*profile)["c"] = "13"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_33) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "12"; (*profile)["m"] = "9"; (*profile)["c"] = "8"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init_34) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "8"; (*profile)["m"] = "12"; (*profile)["c"] = "12"; int r = shec->init(*profile, &cerr); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, init2_4) { //all parameters are normal values ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); int r = shec->init(*profile, &cerr); //init executed twice //check profile EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); EXPECT_EQ(ErasureCodeShec::MULTIPLE, shec->technique); EXPECT_STREQ("default", shec->rule_root.c_str()); EXPECT_STREQ("osd", shec->rule_failure_domain.c_str()); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, init2_5) { //all parameters are normal values ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); ErasureCodeProfile *profile2 = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "host"; (*profile)["k"] = "10"; (*profile)["m"] = "6"; (*profile)["c"] = "5"; (*profile)["w"] = "16"; int r = shec->init(*profile, &cerr); //reexecute init (*profile2)["plugin"] = "shec"; (*profile2)["technique"] = ""; (*profile2)["crush-failure-domain"] = "osd"; (*profile2)["k"] = "4"; (*profile2)["m"] = "3"; (*profile2)["c"] = "2"; shec->init(*profile2, &cerr); EXPECT_EQ(4, shec->k); EXPECT_EQ(3, shec->m); EXPECT_EQ(2, shec->c); EXPECT_EQ(8, shec->w); EXPECT_EQ(ErasureCodeShec::MULTIPLE, shec->technique); EXPECT_STREQ("default", shec->rule_root.c_str()); EXPECT_STREQ("osd", shec->rule_failure_domain.c_str()); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); delete shec; delete profile; delete profile2; } TEST(ErasureCodeShec, minimum_to_decode_8) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; for (int i = 0; i < 8; ++i) { want_to_decode.insert(i); } for (int i = 0; i < 5; ++i) { available_chunks.insert(i); } int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_9) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; for (int i = 0; i < 4; ++i) { want_to_decode.insert(i); } for (int i = 0; i < 8; ++i) { available_chunks.insert(i); } int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_10) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; for (int i = 0; i < 7; ++i) { want_to_decode.insert(i); } for (int i = 4; i < 7; ++i) { available_chunks.insert(i); } int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_EQ(-EIO, r); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_11) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; for (int i = 0; i < 5; ++i) { want_to_decode.insert(i); } for (int i = 4; i < 7; ++i) { available_chunks.insert(i); } int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_EQ(-EIO, r); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_12) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; //minimum_chunks is NULL for (int i = 0; i < 7; ++i) { want_to_decode.insert(i); available_chunks.insert(i); } int r = shec->_minimum_to_decode(want_to_decode, available_chunks, NULL); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_13) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks, minimum; for (int i = 0; i < 7; ++i) { want_to_decode.insert(i); available_chunks.insert(i); } shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); minimum = minimum_chunks; //normal value for (int i = 100; i < 120; ++i) { minimum_chunks.insert(i); //insert extra data } int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(minimum, minimum_chunks); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode2_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; want_to_decode.insert(0); available_chunks.insert(0); available_chunks.insert(1); available_chunks.insert(2); int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_TRUE(minimum_chunks.size()); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode2_3) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; want_to_decode.insert(0); want_to_decode.insert(2); available_chunks.insert(0); available_chunks.insert(1); available_chunks.insert(2); available_chunks.insert(3); pthread_t tid; g_flag = 0; pthread_create(&tid, NULL, thread1, shec); while (g_flag == 0) { usleep(1); } sleep(1); printf("*** test start ***\n"); int r = shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(want_to_decode, minimum_chunks); printf("*** test end ***\n"); g_flag = 0; pthread_join(tid, NULL); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_with_cost_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode_with_cost set<int> want_to_decode; map<int, int> available_chunks; set<int> minimum_chunks; for (int i = 0; i < 7; ++i) { want_to_decode.insert(i); available_chunks.insert(make_pair(i, i)); } int r = shec->minimum_to_decode_with_cost(want_to_decode, available_chunks, &minimum_chunks); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_TRUE(minimum_chunks.size()); delete shec; delete profile; } TEST(ErasureCodeShec, minimum_to_decode_with_cost_2_3) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //minimum_to_decode_with_cost set<int> want_to_decode; map<int, int> available_chunks; set<int> minimum_chunks; want_to_decode.insert(0); want_to_decode.insert(2); available_chunks[0] = 0; available_chunks[1] = 1; available_chunks[2] = 2; available_chunks[3] = 3; pthread_t tid; g_flag = 0; pthread_create(&tid, NULL, thread2, shec); while (g_flag == 0) { usleep(1); } sleep(1); printf("*** test start ***\n"); int r = shec->minimum_to_decode_with_cost(want_to_decode, available_chunks, &minimum_chunks); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(want_to_decode, minimum_chunks); printf("*** test end ***\n"); g_flag = 0; pthread_join(tid, NULL); delete shec; delete profile; } TEST(ErasureCodeShec, encode_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "0123"//128 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; decoded.clear(); r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_NE(nullptr, shec->matrix); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(32u, decoded[0].length()); bufferlist out1, out2, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) { out1.append(encoded[i]); } //out2 is "decoded" r = shec->decode_concat(encoded, &out2); usable.substr_of(out2, 0, in.length()); EXPECT_FALSE(out1 == in); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, encode_2) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(32u, decoded[0].length()); bufferlist out1, out2, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) out1.append(encoded[i]); //out2 is "decoded" shec->decode_concat(encoded, &out2); usable.substr_of(out2, 0, in.length()); EXPECT_FALSE(out1 == in); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, encode_3) { ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); bufferlist in; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 ); set<int> want_to_encode; for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } want_to_encode.insert(10); want_to_encode.insert(11); map<int, bufferlist> encoded; int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), decoded[0].length()); bufferlist out1, out2, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) { out1.append(encoded[i]); } //out2 is "decoded" shec->decode_concat(encoded, &out2); usable.substr_of(out2, 0, in.length()); EXPECT_FALSE(out1 == in); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, encode_4) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 ); for (unsigned int i = 0; i < shec->get_chunk_count() - 1; ++i) { want_to_encode.insert(i); } want_to_encode.insert(100); int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count()-1, encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), decoded[0].length()); bufferlist out1, out2, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) { out1.append(encoded[i]); } //out2 is "decoded" shec->decode_concat(encoded, &out2); usable.substr_of(out2, 0, in.length()); EXPECT_FALSE(out1 == in); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, encode_8) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, NULL); //encoded = NULL EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, encode_9) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } for (int i = 0; i < 100; ++i) { encoded[i].append("ABCDEFGHIJKLMNOPQRSTUVWXYZ"); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(-EINVAL, r); delete shec; delete profile; } TEST(ErasureCodeShec, encode2_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "0123"//128 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(32u, decoded[0].length()); bufferlist out1, out2, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) { out1.append(encoded[i]); } //out2 is "decoded" shec->decode_concat(encoded, &out2); usable.substr_of(out2, 0, in.length()); EXPECT_FALSE(out1 == in); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, encode2_3) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "0123"//128 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } pthread_t tid; g_flag = 0; pthread_create(&tid, NULL, thread4, shec); while (g_flag == 0) { usleep(1); } sleep(1); printf("*** test start ***\n"); int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); printf("*** test end ***\n"); g_flag = 0; pthread_join(tid, NULL); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); EXPECT_EQ(32u, decoded[0].length()); bufferlist out1, out2, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) { out1.append(encoded[i]); } //out2 is "decoded" shec->decode_concat(encoded, &out2); usable.substr_of(out2, 0, in.length()); EXPECT_FALSE(out1 == in); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, decode_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 7), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(7u, decoded.size()); bufferlist usable; int cmp; unsigned int c_size = shec->get_chunk_size(in.length()); for (unsigned int i = 0; i < shec->get_data_chunk_count(); ++i) { usable.clear(); EXPECT_EQ(c_size, decoded[i].length()); if ( c_size * (i+1) <= in.length() ) { usable.substr_of(in, c_size * i, c_size); cmp = memcmp(decoded[i].c_str(), usable.c_str(), c_size); } else { usable.substr_of(in, c_size * i, in.length() % c_size); cmp = memcmp(decoded[i].c_str(), usable.c_str(), in.length() % c_size); } EXPECT_EQ(0, cmp); } delete shec; delete profile; } TEST(ErasureCodeShec, decode_8) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6, 7 }; //more than k+m map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 8), encoded, &decoded); EXPECT_EQ(0, r); EXPECT_EQ(7u, decoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); bufferlist usable; int cmp; unsigned int c_size = shec->get_chunk_size(in.length()); for (unsigned int i = 0; i < shec->get_data_chunk_count(); ++i) { usable.clear(); EXPECT_EQ(c_size, decoded[i].length()); if ( c_size * (i+1) <= in.length() ) { usable.substr_of(in, c_size * i, c_size); cmp = memcmp(decoded[i].c_str(), usable.c_str(), c_size); } else { usable.substr_of(in, c_size * i, in.length() % c_size); cmp = memcmp(decoded[i].c_str(), usable.c_str(), in.length() % c_size); } EXPECT_EQ(0, cmp); } delete shec; delete profile; } TEST(ErasureCodeShec, decode_9) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; map<int, bufferlist> decoded; //extra data bufferlist buf; buf.append("abc"); encoded[100] = buf; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 10), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(7u, decoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), decoded[0].length()); bufferlist out1, usable; //out1 is "encoded" for (unsigned int i = 0; i < encoded.size(); ++i) { out1.append(encoded[i]); } EXPECT_FALSE(out1 == in); //usable is "decoded" int cmp; unsigned int c_size = shec->get_chunk_size(in.length()); for (unsigned int i = 0; i < shec->get_data_chunk_count(); ++i) { usable.clear(); EXPECT_EQ(c_size, decoded[i].length()); if ( c_size * (i+1) <= in.length() ) { usable.substr_of(in, c_size * i, c_size); cmp = memcmp(decoded[i].c_str(), usable.c_str(), c_size); } else { usable.substr_of(in, c_size * i, in.length() % c_size); cmp = memcmp(decoded[i].c_str(), usable.c_str(), in.length() % c_size); } EXPECT_EQ(0, cmp); } delete shec; delete profile; } TEST(ErasureCodeShec, decode_10) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; //more than k+m map<int, bufferlist> decoded, inchunks; for ( unsigned int i = 0; i < 3; ++i) { inchunks.insert(make_pair(i, encoded[i])); } r = shec->_decode(set<int>(want_to_decode, want_to_decode + 7), inchunks, &decoded); EXPECT_EQ(-1, r); delete shec; delete profile; } TEST(ErasureCodeShec, decode_11) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCD"//128 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4 }; map<int, bufferlist> decoded, inchunks; for ( unsigned int i = 4; i < 7; ++i) { inchunks.insert(make_pair(i, encoded[i])); } r = shec->_decode(set<int>(want_to_decode, want_to_decode + 5), inchunks, &decoded); EXPECT_EQ(-1, r); delete shec; delete profile; } TEST(ErasureCodeShec, decode_12) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; //decoded = NULL r = shec->_decode(set<int>(want_to_decode, want_to_decode + 7), encoded, NULL); EXPECT_NE(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, decode_13) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6 }; map<int, bufferlist> decoded; //extra data bufferlist buf; buf.append("a"); for (int i = 0; i < 100; ++i) { decoded[i] = buf; } r = shec->_decode(set<int>(want_to_decode, want_to_decode + 7), encoded, &decoded); EXPECT_NE(0, r); delete shec; delete profile; } TEST(ErasureCodeShec, decode2_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; map<int, bufferlist> decoded; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); bufferlist out; shec->decode_concat(encoded, &out); bufferlist usable; usable.substr_of(out, 0, in.length()); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, decode2_3) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); // all chunks are available //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; map<int, bufferlist> decoded; pthread_t tid; g_flag = 0; pthread_create(&tid, NULL, thread4, shec); while (g_flag == 0) { usleep(1); } sleep(1); printf("*** test start ***\n"); r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); EXPECT_TRUE(shec->matrix != NULL); EXPECT_EQ(0, r); EXPECT_EQ(2u, decoded.size()); printf("*** test end ***\n"); g_flag = 0; pthread_join(tid, NULL); bufferlist out; shec->decode_concat(encoded, &out); bufferlist usable; usable.substr_of(out, 0, in.length()); EXPECT_TRUE(usable == in); delete shec; delete profile; } TEST(ErasureCodeShec, decode2_4) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //encode bufferlist in; set<int> want_to_encode; map<int, bufferlist> encoded; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } int r = shec->encode(want_to_encode, in, &encoded); EXPECT_EQ(0, r); EXPECT_EQ(shec->get_chunk_count(), encoded.size()); EXPECT_EQ(shec->get_chunk_size(in.length()), encoded[0].length()); //decode int want_to_decode[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; map<int, bufferlist> decoded; // cannot recover bufferlist out; map<int, bufferlist> degraded; degraded[0] = encoded[0]; r = shec->_decode(set<int>(want_to_decode, want_to_decode + 2), degraded, &decoded); EXPECT_EQ(-1, r); delete shec; delete profile; } TEST(ErasureCodeShec, create_rule_1_2) { //create rule CrushWrapper *crush = new CrushWrapper; crush->create(); crush->set_type_name(2, "root"); crush->set_type_name(1, "host"); crush->set_type_name(0, "osd"); int rootno; crush->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 2, 0, NULL, NULL, &rootno); crush->set_item_name(rootno, "default"); map < string, string > loc; loc["root"] = "default"; int num_host = 2; int num_osd = 5; int osd = 0; for (int h = 0; h < num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o = 0; o < num_osd; ++o, ++osd) { crush->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //create_rule stringstream ss; int r = shec->create_rule("myrule", *crush, &ss); EXPECT_EQ(0, r); EXPECT_STREQ("myrule", crush->rule_name_map[0].c_str()); //reexecute create_rule r = shec->create_rule("myrule", *crush, &ss); EXPECT_EQ(-EEXIST, r); delete shec; delete profile; delete crush; } TEST(ErasureCodeShec, create_rule_4) { //create rule CrushWrapper *crush = new CrushWrapper; crush->create(); crush->set_type_name(2, "root"); crush->set_type_name(1, "host"); crush->set_type_name(0, "osd"); int rootno; crush->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 2, 0, NULL, NULL, &rootno); crush->set_item_name(rootno, "default"); map < string, string > loc; loc["root"] = "default"; int num_host = 2; int num_osd = 5; int osd = 0; for (int h = 0; h < num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o = 0; o < num_osd; ++o, ++osd) { crush->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //create_rule int r = shec->create_rule("myrule", *crush, NULL); //ss = NULL EXPECT_EQ(0, r); delete shec; delete profile; delete crush; } TEST(ErasureCodeShec, create_rule2_1) { //create rule CrushWrapper *crush = new CrushWrapper; crush->create(); crush->set_type_name(2, "root"); crush->set_type_name(1, "host"); crush->set_type_name(0, "osd"); int rootno; crush->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 2, 0, NULL, NULL, &rootno); crush->set_item_name(rootno, "default"); map < string, string > loc; loc["root"] = "default"; int num_host = 2; int num_osd = 5; int osd = 0; for (int h = 0; h < num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o = 0; o < num_osd; ++o, ++osd) { crush->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //create_rule stringstream ss; int r = shec->create_rule("myrule", *crush, &ss); EXPECT_EQ(0, r); EXPECT_STREQ("myrule", crush->rule_name_map[0].c_str()); delete shec; delete profile; delete crush; } struct CreateRuleset2_3_Param_d { ErasureCodeShec *shec; CrushWrapper *crush; }; TEST(ErasureCodeShec, create_rule2_3) { //create rule CrushWrapper *crush = new CrushWrapper; crush->create(); crush->set_type_name(2, "root"); crush->set_type_name(1, "host"); crush->set_type_name(0, "osd"); int rootno; crush->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 2, 0, NULL, NULL, &rootno); crush->set_item_name(rootno, "default"); map < string, string > loc; loc["root"] = "default"; int num_host = 2; int num_osd = 5; int osd = 0; for (int h = 0; h < num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o = 0; o < num_osd; ++o, ++osd) { crush->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //create_rule stringstream ss; pthread_t tid; g_flag = 0; pthread_create(&tid, NULL, thread3, shec); while (g_flag == 0) { usleep(1); } sleep(1); printf("*** test start ***\n"); int r = (shec->create_rule("myrule", *crush, &ss)); EXPECT_TRUE(r >= 0); printf("*** test end ***\n"); g_flag = 0; pthread_join(tid, NULL); delete shec; delete profile; delete crush; } TEST(ErasureCodeShec, get_chunk_count_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //get_chunk_count EXPECT_EQ(7u, shec->get_chunk_count()); delete shec; delete profile; } TEST(ErasureCodeShec, get_data_chunk_count_1) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; shec->init(*profile, &cerr); //get_data_chunk_count EXPECT_EQ(4u, shec->get_data_chunk_count()); delete shec; delete profile; } TEST(ErasureCodeShec, get_chunk_size_1_2) { //init ErasureCodeShecTableCache tcache; ErasureCodeShec* shec = new ErasureCodeShecReedSolomonVandermonde( tcache, ErasureCodeShec::MULTIPLE); ErasureCodeProfile *profile = new ErasureCodeProfile(); (*profile)["plugin"] = "shec"; (*profile)["technique"] = ""; (*profile)["crush-failure-domain"] = "osd"; (*profile)["k"] = "4"; (*profile)["m"] = "3"; (*profile)["c"] = "2"; (*profile)["w"] = "8"; shec->init(*profile, &cerr); //when there is no padding(128=k*w*4) EXPECT_EQ(32u, shec->get_chunk_size(128)); //when there is padding(126=k*w*4-2) EXPECT_EQ(32u, shec->get_chunk_size(126)); delete shec; delete profile; } void* thread1(void* pParam) { ErasureCodeShec* shec = (ErasureCodeShec*) pParam; set<int> want_to_decode; set<int> available_chunks; set<int> minimum_chunks; want_to_decode.insert(0); want_to_decode.insert(1); available_chunks.insert(0); available_chunks.insert(1); available_chunks.insert(2); printf("*** thread loop start ***\n"); g_flag = 1; while (g_flag == 1) { shec->_minimum_to_decode(want_to_decode, available_chunks, &minimum_chunks); } printf("*** thread loop end ***\n"); return NULL; } void* thread2(void* pParam) { ErasureCodeShec* shec = (ErasureCodeShec*) pParam; set<int> want_to_decode; map<int, int> available_chunks; set<int> minimum_chunks; want_to_decode.insert(0); want_to_decode.insert(1); available_chunks[0] = 0; available_chunks[1] = 1; available_chunks[2] = 2; printf("*** thread loop start ***\n"); g_flag = 1; while (g_flag == 1) { shec->minimum_to_decode_with_cost(want_to_decode, available_chunks, &minimum_chunks); minimum_chunks.clear(); } printf("*** thread loop end ***\n"); return NULL; } void* thread3(void* pParam) { ErasureCodeShec* shec = (ErasureCodeShec*) pParam; std::unique_ptr<CrushWrapper> crush = std::make_unique<CrushWrapper>(); crush->create(); crush->set_type_name(2, "root"); crush->set_type_name(1, "host"); crush->set_type_name(0, "osd"); int rootno; crush->add_bucket(0, CRUSH_BUCKET_STRAW, CRUSH_HASH_RJENKINS1, 2, 0, NULL, NULL, &rootno); crush->set_item_name(rootno, "default"); map < string, string > loc; loc["root"] = "default"; int num_host = 2; int num_osd = 5; int osd = 0; for (int h = 0; h < num_host; ++h) { loc["host"] = string("host-") + stringify(h); for (int o = 0; o < num_osd; ++o, ++osd) { crush->insert_item(g_ceph_context, osd, 1.0, string("osd.") + stringify(osd), loc); } } stringstream ss; int i = 0; char name[30]; printf("*** thread loop start ***\n"); g_flag = 1; while (g_flag == 1) { sprintf(name, "myrule%d", i); shec->create_rule(name, *crush, &ss); ++i; } printf("*** thread loop end ***\n"); return NULL; } void* thread4(void* pParam) { ErasureCodeShec* shec = (ErasureCodeShec*) pParam; bufferlist in; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 ); set<int> want_to_encode; for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } map<int, bufferlist> encoded; printf("*** thread loop start ***\n"); g_flag = 1; while (g_flag == 1) { shec->encode(want_to_encode, in, &encoded); encoded.clear(); } printf("*** thread loop end ***\n"); return NULL; } void* thread5(void* pParam) { ErasureCodeShec* shec = (ErasureCodeShec*) pParam; bufferlist in; in.append("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//length = 62 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//124 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//186 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//248 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"//310 ); set<int> want_to_encode; for (unsigned int i = 0; i < shec->get_chunk_count(); ++i) { want_to_encode.insert(i); } map<int, bufferlist> encoded; shec->encode(want_to_encode, in, &encoded); int want_to_decode[] = { 0, 1, 2, 3, 4, 5 }; map<int, bufferlist> decoded; printf("*** thread loop start ***\n"); g_flag = 1; while (g_flag == 1) { shec->_decode(set<int>(want_to_decode, want_to_decode + 2), encoded, &decoded); decoded.clear(); } printf("*** thread loop end ***\n"); return NULL; }
76,300
26.018768
89
cc