From b9da9b6590eff0a3fcefd5c2b826b5dcb8ebeea5 Mon Sep 17 00:00:00 2001 From: Zhe Wang Date: Thu, 7 Nov 2019 20:17:49 +0800 Subject: [PATCH] audio: optimize parameters of HW resample [1/1] PD#SWPL-16157 Problem: THD+N test fail of 88.2KHz and 176.4KHz from hdmiin Solution: 1) optimize parameters of resampleB 2) disable AA filter for resampleA Verify: TM2 AB301 Change-Id: If3ef1e283acc8dbb38590f6ae7270b8f59ef83b8 Signed-off-by: Zhe Wang --- arch/arm/boot/dts/amlogic/tl1_t962x2_x301.dts | 2 + sound/soc/amlogic/auge/ddr_mngr.c | 5 +- sound/soc/amlogic/auge/resample.c | 21 +- sound/soc/amlogic/auge/resample_hw.c | 114 +- sound/soc/amlogic/auge/resample_hw.h | 3 +- sound/soc/amlogic/auge/resample_hw_coeff.h | 2078 ++++++++--------- 6 files changed, 1109 insertions(+), 1114 deletions(-) diff --git a/arch/arm/boot/dts/amlogic/tl1_t962x2_x301.dts b/arch/arm/boot/dts/amlogic/tl1_t962x2_x301.dts index 496cb09541eb..2c78481288c5 100644 --- a/arch/arm/boot/dts/amlogic/tl1_t962x2_x301.dts +++ b/arch/arm/boot/dts/amlogic/tl1_t962x2_x301.dts @@ -1242,6 +1242,8 @@ clock-names = "resample_pll", "resample_src", "resample_clk"; /*this resample is only used for loopback_A.*/ + /*only support 16000 or 48000Hz for capture*/ + capture_sample_rate = <16000>; status = "okay"; }; diff --git a/sound/soc/amlogic/auge/ddr_mngr.c b/sound/soc/amlogic/auge/ddr_mngr.c index 60dc133194c7..f6c5b47f2df9 100644 --- a/sound/soc/amlogic/auge/ddr_mngr.c +++ b/sound/soc/amlogic/auge/ddr_mngr.c @@ -666,8 +666,11 @@ static void aml_resample_enable( } if (p_attach_resample->resample_version == 1) { - new_resample_set_format(p_attach_resample->id, + if (p_attach_resample->id == RESAMPLE_A) { + new_resampleA_set_format( + p_attach_resample->id, to->channels, bitwidth); + } new_resample_src_select(p_attach_resample->id, to->fifo_id); } else if (p_attach_resample->resample_version == 0) { diff --git a/sound/soc/amlogic/auge/resample.c b/sound/soc/amlogic/auge/resample.c index f779a6d707a3..e04b0e1d4545 100644 --- a/sound/soc/amlogic/auge/resample.c +++ b/sound/soc/amlogic/auge/resample.c @@ -69,6 +69,8 @@ struct audioresample { /* sync with auge_resample_texts */ enum samplerate_index asrc_in_sr_idx; + int capture_sample_rate; + bool enable; }; @@ -512,23 +514,20 @@ static int new_resample_init(struct audioresample *p_resample) p_resample->enable = 1; new_resample_init_param(p_resample->id); + resample_clk_set(p_resample, DEFAULT_SPK_SAMPLERATE); if (p_resample->id == RESAMPLE_A) { /* default resample A for tv input source */ new_resample_set_ratio(p_resample->id, DEFAULT_SPK_SAMPLERATE, DEFAULT_SPK_SAMPLERATE); - /*set resample clk to default 256fs mclk.*/ - /*the same clk source with tdm*/ - resample_clk_set(p_resample, DEFAULT_SPK_SAMPLERATE); } else if (p_resample->id == RESAMPLE_B) { /* default resample B for loopback downsample */ new_resample_set_ratio(p_resample->id, DEFAULT_SPK_SAMPLERATE, - DEFAULT_MIC_SAMPLERATE); - /*set resample clk to default 256fs mclk.*/ - /*the same clk source with TDMINLB*/ - resample_clk_set(p_resample, DEFAULT_MIC_SAMPLERATE); + p_resample->capture_sample_rate); + new_resampleB_set_format(p_resample->id, + p_resample->capture_sample_rate); } return 0; @@ -632,6 +631,14 @@ static int resample_platform_probe(struct platform_device *pdev) } } else { resample_module = LOOPBACK_A; + ret = of_property_read_u32(pdev->dev.of_node, + "capture_sample_rate", + &p_resample->capture_sample_rate); + if (ret < 0 || + p_resample->capture_sample_rate != DEFAULT_SPK_SAMPLERATE) { + p_resample->capture_sample_rate = + DEFAULT_MIC_SAMPLERATE; + } } /* config from dts */ diff --git a/sound/soc/amlogic/auge/resample_hw.c b/sound/soc/amlogic/auge/resample_hw.c index b7d2d6e8d361..54417e07e9e5 100644 --- a/sound/soc/amlogic/auge/resample_hw.c +++ b/sound/soc/amlogic/auge/resample_hw.c @@ -45,6 +45,7 @@ static u32 resample_coef_parameters_table[7][5] = { {0x00800000, 0x0, 0x0, 0x0, 0x0}, }; +#ifdef AA_FILTER_DEBUG void new_resample_set_ram_coeff_aa(enum resample_idx id, int len, unsigned int *params) { @@ -55,6 +56,7 @@ void new_resample_set_ram_coeff_aa(enum resample_idx id, int len, for (i = 0; i < len; i++, p++) new_resample_write(id, AUDIO_RSAMP_AA_COEF_DATA, *p); } +#endif void new_resample_set_ram_coeff_sinc(enum resample_idx id, int len, unsigned int *params) @@ -85,10 +87,6 @@ void new_resample_init_param(enum resample_idx id) /*write resample A filter in ram*/ new_resample_set_ram_coeff_sinc(id, SINC8_FILTER_COEF_SIZE, &sinc8_coef[0]); - } else { - /*write resample B filter in ram*/ - new_resample_set_ram_coeff_sinc(id, SINC8_FILTER_COEF_SIZE, - &sinc_coef[0]); } } @@ -127,19 +125,29 @@ static int new_resample_status_check(enum resample_idx id) return 0; } -void new_resample_set_format(enum resample_idx id, int channel, int bits) +static void new_resample_adjust_enable(enum resample_idx id, + int mclk_ratio, int enable) +{ + /* enable auto adjust module */ + new_resample_update_bits(id, AUDIO_RSAMP_CTRL0, 0x1 << 2, + 0x1 << 2); + new_resample_update_bits(id, AUDIO_RSAMP_ADJ_CTRL1, 0xffff << 16, + (mclk_ratio) << 16); + new_resample_write(id, AUDIO_RSAMP_ADJ_SFT, 0x1f020604); + new_resample_write(id, AUDIO_RSAMP_ADJ_IDET_LEN, 0x22710); + new_resample_write(id, AUDIO_RSAMP_ADJ_FORCE, 0x0); + new_resample_write(id, AUDIO_RSAMP_ADJ_CTRL0, enable); + new_resample_update_bits(id, AUDIO_RSAMP_CTRL0, 0x1 << 2, 0x0 << 2); +} + +void new_resampleA_set_format(enum resample_idx id, int channel, int bits) { int reg_val = bits - 1; + int mclk_ratio = 256 / channel; if (channel > 8 || channel == 0 || bits < 16) return; - /* resample B is always 2 channel for loopback */ - if (id == RESAMPLE_B) { - channel = 2; - reg_val = 31; - } - new_resample_enable(id, false); new_resample_status_check(id); @@ -151,22 +159,43 @@ void new_resample_set_format(enum resample_idx id, int channel, int bits) new_resample_update_bits(id, AUDIO_RSAMP_CTRL1, 0x1f << 13, reg_val << 13); - /* enable auto adjust module */ - new_resample_update_bits(id, AUDIO_RSAMP_CTRL0, 0x1 << 2, - 0x1 << 2); - new_resample_update_bits(id, AUDIO_RSAMP_ADJ_CTRL1, 0xffff << 16, - (256 / channel) << 16); - new_resample_write(id, AUDIO_RSAMP_ADJ_SFT, 0x1f020604); - new_resample_write(id, AUDIO_RSAMP_ADJ_IDET_LEN, 0x22710); - new_resample_write(id, AUDIO_RSAMP_ADJ_FORCE, 0x0); - new_resample_write(id, AUDIO_RSAMP_ADJ_CTRL0, 0x1); - new_resample_update_bits(id, AUDIO_RSAMP_CTRL0, 0x1 << 2, 0x0 << 2); + new_resample_adjust_enable(id, mclk_ratio, 1); new_resample_enable(id, true); pr_info("%s(), channel = %d, bits = %d", __func__, channel, bits); } +void new_resampleB_set_format(enum resample_idx id, int output_sr) +{ + /*MCLK/output_sr/channel_num*/ + int mclk_ratio = 6144000 / output_sr; + + /*write resample B filter in ram*/ + if (output_sr == DEFAULT_MIC_SAMPLERATE) { + new_resample_set_ram_coeff_sinc(id, SINC8_FILTER_COEF_SIZE, + &sinc_coef[0]); + } else { + new_resample_set_ram_coeff_sinc(id, SINC8_FILTER_COEF_SIZE, + &sinc8_coef[0]); + } + + new_resample_enable(id, false); + new_resample_status_check(id); + + new_resample_write(id, AUDIO_RSAMP_PHSINIT, 0x0); + /* channel num */ + new_resample_update_bits(id, AUDIO_RSAMP_CTRL2, 0x3f << 24, + 2 << 24); /* always two channel for loopback */ + /* bit width */ + new_resample_update_bits(id, AUDIO_RSAMP_CTRL1, 0x1f << 13, + 31 << 13); /* tdmin_lb is always 32bit */ + + new_resample_adjust_enable(id, mclk_ratio, 1); + + new_resample_enable(id, true); +} + void new_resample_src_select(enum resample_idx id, enum resample_src src) { /* resample B is always for loopbackA */ @@ -184,7 +213,6 @@ void new_resample_src_select(enum resample_idx id, enum resample_src src) void new_resample_set_ratio(enum resample_idx id, int input_sr, int output_sr) { - u32 down_ratio = 1; u32 input_sample_rate = (u32)input_sr; u32 output_sample_rate = (u32)output_sr; u64 phase_step = (u64)input_sample_rate; @@ -192,44 +220,6 @@ void new_resample_set_ratio(enum resample_idx id, int input_sr, int output_sr) new_resample_enable(id, false); new_resample_status_check(id); - if (input_sample_rate <= output_sample_rate) { /* upsample*/ - new_resample_update_bits(id, AUDIO_RSAMP_CTRL2, 0x3 << 16, - 0 << 16); - /* disable AA filter */ - new_resample_update_bits(id, AUDIO_RSAMP_CTRL1, 0x1 << 10, - 0 << 10); - } else { /* downsample*/ - int rate = input_sample_rate * 10 / output_sample_rate; - /* enable AA filter */ - new_resample_update_bits(id, AUDIO_RSAMP_CTRL1, 0x1 << 10, - 1 << 10); - if (id == RESAMPLE_A) { - if (rate <= 30) { - new_resample_set_ram_coeff_aa( - id, AA_FILTER_COEF_SIZE, - &aa_coef_a_half[0]); - new_resample_update_bits(id, AUDIO_RSAMP_CTRL2, - 0x3 << 16, 1 << 16); - down_ratio = 2; - } else { - new_resample_set_ram_coeff_aa( - id, AA_FILTER_COEF_SIZE, - &aa_coef_a_quarter[0]); - new_resample_update_bits(id, AUDIO_RSAMP_CTRL2, - 0x3 << 16, 2 << 16); - down_ratio = 4; - } - } else { - new_resample_set_ram_coeff_aa( - id, AA_FILTER_COEF_SIZE, - &aa_coef_one_third[0]); - new_resample_update_bits(id, AUDIO_RSAMP_CTRL2, - 0x3 << 16, 0 << 16); - down_ratio = 3; - } - } - - output_sample_rate *= down_ratio; phase_step *= (1 << 28); phase_step = div_u64(phase_step, output_sample_rate); @@ -237,8 +227,8 @@ void new_resample_set_ratio(enum resample_idx id, int input_sr, int output_sr) new_resample_enable(id, true); - pr_info("%s(), down_ratio = %d, phase_step = 0x%x", __func__, - down_ratio, (u32)phase_step); + pr_info("%s(), id = %d, phase_step = 0x%x, input_sr = %d, output_sr = %d", + __func__, id, (u32)phase_step, input_sr, output_sr); } void resample_enable(enum resample_idx id, bool enable) diff --git a/sound/soc/amlogic/auge/resample_hw.h b/sound/soc/amlogic/auge/resample_hw.h index 29e82adc26fb..5174bf86bfc0 100644 --- a/sound/soc/amlogic/auge/resample_hw.h +++ b/sound/soc/amlogic/auge/resample_hw.h @@ -53,7 +53,8 @@ void new_resample_set_ram_coeff_sinc(enum resample_idx id, int len, unsigned int *params); void new_resample_init_param(enum resample_idx id); void new_resample_enable(enum resample_idx id, bool enable); -void new_resample_set_format(enum resample_idx id, int source, int channel); +void new_resampleA_set_format(enum resample_idx id, int source, int channel); +void new_resampleB_set_format(enum resample_idx id, int output_sr); void new_resample_set_ratio(enum resample_idx id, int input_sr, int output_sr); bool new_resample_get_status(enum resample_idx id); void new_resample_src_select(enum resample_idx id, enum resample_src src); diff --git a/sound/soc/amlogic/auge/resample_hw_coeff.h b/sound/soc/amlogic/auge/resample_hw_coeff.h index 0cb132cbff5c..21101448384b 100644 --- a/sound/soc/amlogic/auge/resample_hw_coeff.h +++ b/sound/soc/amlogic/auge/resample_hw_coeff.h @@ -19,6 +19,8 @@ #define __RESAMPLE_HW_COEFF_H__ #define SINC8_FILTER_COEF_SIZE (129 * 32) + +#ifdef AA_FILTER_DEBUG #define AA_FILTER_COEF_SIZE (32) static s32 aa_coef_a_half[AA_FILTER_COEF_SIZE] = { @@ -42,17 +44,7 @@ static s32 aa_coef_a_quarter[AA_FILTER_COEF_SIZE] = { -259487, 3325899, 3972125, 2351947, 156264, -1215082, -1360518, -743909 }; - -static s32 aa_coef_one_third[AA_FILTER_COEF_SIZE] = { - 0x2c6fdb2e, 0x2412c6b2, 0x1092cf1d, 0xfe41e2aa, - 0xf6b1b100, 0xfa41a3cd, 0x01a96472, 0x0536bdda, - 0x02e66971, 0xfe77847b, 0xfc9a36ab, 0xfe72114d, - 0x015da97a, 0x024d18d2, 0x00c82c5d, 0xfed43275, - 0xfe74bfe8, 0xffb10712, 0x00f6128d, 0x00fd6486, - 0x000507b8, 0xff40795d, 0xff6c6634, 0x0025447b, - 0x008a62ea, 0x00442a96, 0xffc66020, 0xffaa2111, - 0xfff9eb53, 0x0039c763, 0x00134b02, 0xffe3ffd3 -}; +#endif static s32 sinc8_coef[SINC8_FILTER_COEF_SIZE] = { 0x7ccccccd, 0x0323eb7f, 0xfd086246, 0x02b2aa5c, @@ -1090,1038 +1082,1038 @@ static s32 sinc8_coef[SINC8_FILTER_COEF_SIZE] = { }; static s32 sinc_coef[SINC8_FILTER_COEF_SIZE] = { - 0x2ccccccd, 0x2440a9d0, 0x1063d655, 0xfde6dcbb, - 0xf68692d2, 0xfa6f621e, 0x01fee099, 0x055e3775, - 0x02bc8b72, 0xfe2a8d09, 0xfc7665a3, 0xfe956e3f, - 0x01a01620, 0x026e03d6, 0x00ad9260, 0xfe9d324b, - 0xfe555d13, 0xffc14197, 0x0121f722, 0x011d0e04, - 0x00000000, 0xff1e2930, 0xff4a325e, 0x001f0fc3, - 0x00a62ef7, 0x006c3756, 0xffd6cf32, 0xff8e135f, - 0xffc5c7b9, 0x0026442b, 0x0046f3c9, 0x001ac227, - 0x2ccca901, 0x2420bc3d, 0x10396c36, 0xfdcb7879, - 0xf684dbd3, 0xfa7dead7, 0x020b8402, 0x055e49fc, - 0x02b38232, 0xfe233882, 0xfc775567, 0xfe9bd934, - 0x01a490ea, 0x026c98ca, 0x00a8dd14, 0xfe9a7f19, - 0xfe56edee, 0xffc4afca, 0x01237ec3, 0x011b8e0d, - 0xfffd9280, 0xff1d65ae, 0xff4b7ffe, 0x0020b33e, - 0x00a6783e, 0x006b2d6c, 0xffd5c6cc, 0xff8e0e9c, - 0xffc688fd, 0x0026dad7, 0x0046da04, 0x001a453c, - 0x2ccc3d9e, 0x24009fec, 0x100f0910, 0xfdb043b7, - 0xf68353f7, 0xfa8c81a0, 0x02181471, 0x055e42c0, - 0x02aa714a, 0xfe1bf0e2, 0xfc7855a3, 0xfea247b5, - 0x01a901b6, 0x026b22c1, 0x00a426bc, 0xfe97d3d1, - 0xfe588612, 0xffc81d94, 0x01250039, 0x011a096f, - 0xfffb262a, 0xff1ca6ce, 0xff4cd065, 0x0022554a, - 0x00a6be3a, 0x006a2208, 0xffd4bfc8, 0xff8e0c07, - 0xffc74ae2, 0x00277061, 0x0046bef4, 0x0019c82e, - 0x2ccb8aa5, 0x23e05538, 0x0fe4ad4e, 0xfd953ea0, - 0xf681fb15, 0xfa9b262c, 0x022491b9, 0x055e21d1, - 0x02a158e9, 0xfe14b644, 0xfc796649, 0xfea8b9a2, - 0x01ad6875, 0x0269a1c8, 0x009f6f6e, 0xfe95307a, - 0xfe5a2575, 0xffcb8ae4, 0x01267b82, 0x01188033, - 0xfff8bb09, 0xff1bec90, 0xff4e2389, 0x0023f5e0, - 0x00a700eb, 0x00691531, 0xffd3ba2a, 0xff8e0b9f, - 0xffc80d63, 0x002804c6, 0x0046a29a, 0x00194aff, - 0x2cca9017, 0x23bfdc7c, 0x0fba595c, 0xfd7a6960, - 0xf680d102, 0xfaa9d82d, 0x0230fbb1, 0x055de740, - 0x0298393e, 0xfe0d88c4, 0xfc7a874c, 0xfeaf2eda, - 0x01b1c516, 0x026815ea, 0x009ab742, 0xfe92951f, - 0xfe5bcc0b, 0xffcef7aa, 0x0127f097, 0x0116f263, - 0xfff6512a, 0xff1b36f6, 0xff4f7965, 0x002594f8, - 0x00a74050, 0x006806ed, 0xffd2b5f5, 0xff8e0d62, - 0xffc8d07d, 0x00289806, 0x004684f8, 0x0018cdb4, - 0x2cc94df9, 0x239f3613, 0x0f900da4, 0xfd5fc420, - 0xf67fd594, 0xfab89756, 0x023d522b, 0x055d931f, - 0x028f1279, 0xfe06687d, 0xfc7bb89e, 0xfeb5a73d, - 0x01b6178a, 0x02667f35, 0x0095fe4e, 0xfe9001c9, - 0xfe5d79c9, 0xffd263d6, 0x01295f75, 0x01156008, - 0xfff3e896, 0xff1a8601, 0xff50d1f0, 0x0027328b, - 0x00a77c6b, 0x0066f741, 0xffd1b32e, 0xff8e1150, - 0xffc9942b, 0x00292a1c, 0x0046660f, 0x0018504d, - 0x2cc7c44d, 0x237e625a, 0x0f65ca90, 0xfd454f09, - 0xf67f089e, 0xfac76359, 0x024994fe, 0x055d257f, - 0x0285e4c8, 0xfdff5588, 0xfc7cfa31, 0xfebc22ab, - 0x01ba5fc0, 0x0264ddb4, 0x009144a9, 0xfe8d7680, - 0xfe5f2ea4, 0xffd5cf58, 0x012ac818, 0x0113c92c, - 0xfff1815a, 0xff19d9b3, 0xff522d21, 0x0028ce92, - 0x00a7b53c, 0x0065e633, 0xffd0b1d9, 0xff8e1766, - 0xffca586a, 0x0029bb08, 0x004645e0, 0x0017d2cd, - 0x2cc5f318, 0x235d61ae, 0x0f3b908c, 0xfd2b0a43, - 0xf67e69f5, 0xfad63be9, 0x0255c400, 0x055c9e74, - 0x027cb05a, 0xfdf85000, 0xfc7e4bf7, 0xfec2a102, - 0x01be9da9, 0x02633175, 0x008c8a6b, 0xfe8af34d, - 0xfe60ea90, 0xffd93a1f, 0x012c2a7b, 0x01122dd8, - 0xffef1b7f, 0xff19320c, 0xff538af2, 0x002a6907, - 0x00a7eac3, 0x0064d3ca, 0xffcfb1fb, 0xff8e1fa4, - 0xffcb1d35, 0x002a4ac7, 0x0046246e, 0x00175538, - 0x2cc3da5f, 0x233c346b, 0x0f116001, 0xfd10f5f7, - 0xf67df96b, 0xfae520b8, 0x0261df07, 0x055bfe0f, - 0x0273755f, 0xfdf157ff, 0xfc7fade2, 0xfec92224, - 0x01c2d135, 0x02617a84, 0x0087cfab, 0xfe887839, - 0xfe62ad83, 0xffdca41c, 0x012d869b, 0x01108e17, - 0xffecb711, 0xff188f0e, 0xff54eb5b, 0x002c01e1, - 0x00a81d02, 0x0063c00b, 0xffceb397, 0xff8e2a08, - 0xffcbe288, 0x002ad958, 0x004601ba, 0x0016d78f, - 0x2cc17a28, 0x231adaef, 0x0ee7395a, 0xfcf7124a, - 0xf67db6d5, 0xfaf41179, 0x026de5ea, 0x055b4463, - 0x026a3406, 0xfdea6d9f, 0xfc811fe2, 0xfecfa5f0, - 0x01c6fa56, 0x025fb8ef, 0x0083147e, 0xfe86054b, - 0xfe647770, 0xffe00d3e, 0x012edc74, 0x010ee9f3, - 0xffea541b, 0xff17f0b9, 0xff564e53, 0x002d991b, - 0x00a84bf8, 0x0062aafd, 0xffcdb6b2, 0xff8e3691, - 0xffcca85e, 0x002b66b7, 0x0045ddc5, 0x001659d6, - 0x2cbed27b, 0x22f95597, 0x0ebd1cff, 0xfcdd5f64, - 0xf67da203, 0xfb030de0, 0x0279d87f, 0x055a7185, - 0x0260ec7d, 0xfde390f8, 0xfc82a1e8, 0xfed62c45, - 0x01cb18fc, 0x025decc2, 0x007e58fd, 0xfe839a8c, - 0xfe66484c, 0xffe37576, 0x01302c03, 0x010d4174, - 0xffe7f2a7, 0xff17570f, 0xff57b3d2, 0x002f2eac, - 0x00a877a7, 0x006194a5, 0xffccbb4f, 0xff8e453d, - 0xffcd6eb5, 0x002bf2e4, 0x0045b890, 0x0015dc0e, - 0x2cbbe35e, 0x22d7a4c3, 0x0e930b5a, 0xfcc3dd6a, - 0xf67dbac8, 0xfb12159d, 0x0285b69f, 0x05598589, - 0x02579ef5, 0xfddcc224, 0xfc8433e6, 0xfedcb503, - 0x01cf2d18, 0x025c160b, 0x00799d3d, 0xfe813804, - 0xfe68200b, 0xffe6dcb3, 0x01317543, 0x010b94a5, - 0xffe592c2, 0xff16c20f, 0xff591bd1, 0x0030c28f, - 0x00a8a010, 0x00607d09, 0xffcbc173, 0xff8e560a, - 0xffce3587, 0x002c7ddd, 0x0045921e, 0x00155e3b, - 0x2cb8acdb, 0x22b5c8d0, 0x0e6904d4, 0xfcaa8c81, - 0xf67e00f5, 0xfb212866, 0x02918022, 0x05588082, - 0x024e4b9c, 0xfdd6013c, 0xfc85d5cc, 0xfee3400a, - 0x01d3369d, 0x025a34d7, 0x0074e156, 0xfe7eddba, - 0xfe69fea1, 0xffea42e5, 0x0132b832, 0x0109e391, - 0xffe33474, 0xff1631bb, 0xff5a8647, 0x003254bc, - 0x00a8c534, 0x005f6430, 0xffcac921, 0xff8e68f7, - 0xffcefcd0, 0x002d079e, 0x00456a70, 0x0014e05e, - 0x2cb52efb, 0x2293c21f, 0x0e3f09d6, 0xfc916ccd, - 0xf67e745a, 0xfb3045eb, 0x029d34e0, 0x05576285, - 0x0244f2a1, 0xfdcf4e57, 0xfc878789, 0xfee9cd3a, - 0x01d7357b, 0x02584935, 0x0070255e, 0xfe7c8bb7, - 0xfe6be402, 0xffeda7fd, 0x0133f4cc, 0x01082e41, - 0xffe0d7c9, 0xff15a613, 0xff5bf32d, 0x0033e52d, - 0x00a8e713, 0x005e4a1e, 0xffc9d25d, 0xff8e7e03, - 0xffcfc48d, 0x002d9027, 0x00454188, 0x0014627b, - 0x2cb169c7, 0x2271910e, 0x0e151ac9, 0xfc787e72, - 0xf67f14c9, 0xfb3f6de1, 0x02a8d4b2, 0x05562ba8, - 0x023b9434, 0xfdc8a98f, 0xfc89490f, 0xfef05c72, - 0x01db29a5, 0x02565333, 0x006b696c, 0xfe7a4201, - 0xfe6dd023, 0xfff10bea, 0x01352b0e, 0x010674bf, - 0xffde7ccc, 0xff151f17, 0xff5d627a, 0x003573db, - 0x00a905ae, 0x005d2edc, 0xffc8dd2b, 0xff8e952c, - 0xffd08cb8, 0x002e1776, 0x00451768, 0x0013e493, - 0x2cad5d4b, 0x224f35fe, 0x0deb3814, 0xfc5fc193, - 0xf67fe211, 0xfb4e9ff9, 0x02b45f73, 0x0554dc00, - 0x02323084, 0xfdc212fa, 0xfc8b1a4b, 0xfef6ed93, - 0x01df130d, 0x025452de, 0x0066ad97, 0xfe7800a0, - 0xfe6fc2f6, 0xfff46e9e, 0x01365af6, 0x0104b716, - 0xffdc2388, 0xff149cc8, 0xff5ed426, 0x003700bf, - 0x00a92108, 0x005c126e, 0xffc7e990, 0xff8eae70, - 0xffd1554f, 0x002e9d89, 0x0044ec10, 0x001366aa, - 0x2ca90993, 0x222cb14f, 0x0dc16220, 0xfc473651, - 0xf680dc01, 0xfb5ddbe8, 0x02bfd4fb, 0x055373a3, - 0x0228c7bf, 0xfdbb8ab0, 0xfc8cfb2f, 0xfefd807b, - 0x01e2f1a5, 0x02524845, 0x0061f1f6, 0xfe75c79b, - 0xfe71bc6f, 0xfff7d007, 0x0137847f, 0x0102f550, - 0xffd9cc06, 0xff141f27, 0xff604829, 0x00388bd2, - 0x00a9391f, 0x005af4da, 0xffc6f78e, 0xff8ec9cd, - 0xffd21e4d, 0x002f225e, 0x0044bf83, 0x0012e8c2, - 0x2ca46eaa, 0x220a0362, 0x0d979954, 0xfc2edccf, - 0xf6820268, 0xfb6d2161, 0x02cb3525, 0x0551f2a7, - 0x021f5a16, 0xfdb510c9, 0xfc8eeba9, 0xff04150c, - 0x01e6c55f, 0x02503376, 0x005d369e, 0xfe7396fa, - 0xfe73bc83, 0xfffb3017, 0x0138a7a8, 0x01012f77, - 0xffd77651, 0xff13a633, 0xff61be7b, 0x003a150e, - 0x00a94df7, 0x0059d627, 0xffc6072a, 0xff8ee741, - 0xffd2e7ad, 0x002fa5f2, 0x004491c3, 0x00126add, - 0x2c9f8ca0, 0x21e72c99, 0x0d6dde17, 0xfc16b52c, - 0xf6835514, 0xfb7c7015, 0x02d67fcd, 0x05505923, - 0x0215e7b7, 0xfdaea55b, 0xfc90eba8, 0xff0aab24, - 0x01ea8e30, 0x024e147f, 0x00587ba7, 0xfe716ec2, - 0xfe75c324, 0xfffe8ebd, 0x0139c46e, 0x00ff6596, - 0xffd52275, 0xff1331ec, 0xff633713, 0x003b9c6d, - 0x00a95f91, 0x0058b65b, 0xffc51867, 0xff8f06cc, - 0xffd3b16c, 0x00302846, 0x004462d1, 0x0011ecff, - 0x2c9a6381, 0x21c42d54, 0x0d4430d1, 0xfbfebf8a, - 0xf684d3d4, 0xfb8bc7ba, 0x02e1b4cd, 0x054ea72d, - 0x020c70d0, 0xfda8487d, 0xfc92fb1a, 0xff1142a4, - 0x01ee4c09, 0x024beb71, 0x0053c127, 0xfe6f4efb, - 0xfe77d046, 0x0001ebeb, 0x013adace, 0x00fd97b7, - 0xffd2d07a, 0xff12c253, 0xff64b1ea, 0x003d21e7, - 0x00a96ded, 0x0057957c, 0xffc42b49, 0xff8f286b, - 0xffd47b85, 0x0030a956, 0x004432ae, 0x00116f28, - 0x2c94f35c, 0x21a105f7, 0x0d1a91e8, 0xfbe6fc07, - 0xf6867e73, 0xfb9b2802, 0x02ecd402, 0x054cdcde, - 0x0202f592, 0xfda1fa45, 0xfc9519ef, 0xff17db6c, - 0x01f1fedd, 0x0249b858, 0x004f0734, 0xfe6d37aa, - 0xfe79e3dc, 0x00054790, 0x013beac6, 0x00fbc5e5, - 0xffd0806c, 0xff125767, 0xff662ef7, 0x003ea577, - 0x00a9790c, 0x0056738f, 0xffc33fd4, 0xff8f4c1b, - 0xffd545f5, 0x00312921, 0x0044015e, 0x0010f15c, - 0x2c8f3c42, 0x217db6e3, 0x0cf101c3, 0xfbcf6ac2, - 0xf68854c0, 0xfbaa90a0, 0x02f7dd48, 0x054afa4d, - 0x01f9762c, 0xfd9bbac8, 0xfc974813, 0xff1e755b, - 0x01f5a6a2, 0x02477b46, 0x004a4de5, 0xfe6b28d7, - 0xfe7bfdd9, 0x0008a19e, 0x013cf453, 0x00f9f02a, - 0xffce3255, 0xff11f128, 0xff67ae32, 0x00402715, - 0x00a980f2, 0x0055509b, 0xffc2560a, 0xff8f71dc, - 0xffd610b6, 0x0031a7a6, 0x0043cee1, 0x0010739e, - 0x2c893e42, 0x215a407b, 0x0cc780c8, 0xfbb80bd9, - 0xf68a5687, 0xfbba0149, 0x0302d07b, 0x0548ff93, - 0x01eff2cc, 0xfd958a1d, 0xfc998576, 0xff251052, - 0x01f94349, 0x02453448, 0x00459550, 0xfe692287, - 0xfe7e1e31, 0x000bfa04, 0x013df775, 0x00f81691, - 0xffcbe640, 0xff118f96, 0xff692f92, 0x0041a6bd, - 0x00a9859e, 0x00542ca7, 0xffc16df1, 0xff8f99ab, - 0xffd6dbc6, 0x003224e2, 0x00439b3a, 0x000ff5ef, - 0x2c82f96f, 0x2136a323, 0x0c9e0f5c, 0xfba0df69, - 0xf68c8394, 0xfbc979af, 0x030dad79, 0x0546ecc7, - 0x01e66ba1, 0xfd8f685a, 0xfc9bd204, 0xff2bac31, - 0x01fcd4c8, 0x0242e36f, 0x0040dd8b, 0xfe6724c0, - 0xfe8044d6, 0x000f50b3, 0x013ef427, 0x00f63924, - 0xffc99c35, 0xff1132b0, 0xff6ab30f, 0x00432466, - 0x00a98713, 0x005307b8, 0xffc0878a, 0xff8fc387, - 0xffd7a720, 0x0032a0d5, 0x0043666a, 0x000f7853, - 0x2c7c6ddb, 0x2112df3e, 0x0c74ade4, 0xfb89e58f, - 0xf68edbb2, 0xfbd8f987, 0x0318741f, 0x0544c202, - 0x01dce0da, 0xfd895591, 0xfc9e2dac, 0xff3248d8, - 0x02005b12, 0x024088c9, 0x003c26ae, 0xfe652f88, - 0xfe8271bb, 0x0012a59d, 0x013fea6a, 0x00f457ef, - 0xffc75440, 0xff10da77, 0xff6c38a1, 0x0044a00c, - 0x00a98552, 0x0051e1d4, 0xffbfa2db, 0xff8fef6d, - 0xffd872bf, 0x00331b7c, 0x00433073, 0x000efacb, - 0x2c759b98, 0x20eef530, 0x0c4b5cc7, 0xfb731e67, - 0xf6915eab, 0xfbe88085, 0x0323244d, 0x05427f5f, - 0x01d352a7, 0xfd8351da, 0xfca0985a, 0xff38e627, - 0x0203d61b, 0x023e2467, 0x003770cd, 0xfe6342e5, - 0xfe84a4d3, 0x0015f8b1, 0x0140da3a, 0x00f272fb, - 0xffc50e6b, 0xff1086e9, 0xff6dc03f, 0x004619a7, - 0x00a9805d, 0x0050bb01, 0xffbebfe5, 0xff901d5b, - 0xffd93ea0, 0x003394d6, 0x0042f956, 0x000e7d5b, - 0x2c6e82ba, 0x20cae55d, 0x0c221c69, 0xfb5c8a0c, - 0xf6940c4c, 0xfbf80e5c, 0x032dbde0, 0x054024f6, - 0x01c9c135, 0xfd7d5d47, 0xfca311fb, 0xff3f83fe, - 0x020745d9, 0x023bb658, 0x0032bbfe, 0xfe615edc, - 0xfe86de10, 0x001949e1, 0x0141c397, 0x00f08a55, - 0xffc2cabf, 0xff103806, 0xff6f49e2, 0x00479132, - 0x00a97836, 0x004f9347, 0xffbddead, 0xff904d4f, - 0xffda0abf, 0x00340ce2, 0x0042c117, 0x000e0004, - 0x2c672356, 0x20a6b02a, 0x0bf8ed2d, 0xfb462898, - 0xf696e45d, 0xfc07a2c0, 0x033840b7, 0x053db2e1, - 0x01c02cb5, 0xfd7777ed, 0xfca59a7d, 0xff46223e, - 0x020aaa40, 0x02393ead, 0x002e0859, 0xfe5f8372, - 0xfe891d66, 0x001c991d, 0x0142a67e, 0x00ee9e07, - 0xffc08946, 0xff0fedcd, 0xff70d580, 0x004906a6, - 0x00a96cde, 0x004e6aaa, 0xffbcff36, 0xff907f47, - 0xffdad717, 0x0034839e, 0x004287b7, 0x000d82c9, - 0x2c5f7d82, 0x208255fd, 0x0bcfcf79, 0xfb2ffa26, - 0xf699e6a9, 0xfc173d66, 0x0342acb3, 0x053b293c, - 0x01b69554, 0xfd71a1e0, 0xfca831cb, 0xff4cc0c7, - 0x020e0346, 0x0236bd75, 0x002955f3, 0xfe5db0ac, - 0xfe8b62c7, 0x001fe657, 0x014382ee, 0x00ecae1b, - 0xffbe4a0b, 0xff0fa83e, 0xff726310, 0x004a79fe, - 0x00a95e57, 0x004d4130, 0xffbc2183, 0xff90b342, - 0xffdba3a4, 0x0034f909, 0x00424d37, 0x000d05ac, - 0x2c579152, 0x205dd739, 0x0ba6c3af, 0xfb19fecd, - 0xf69d12f8, 0xfc26de03, 0x034d01b4, 0x0538881f, - 0x01acfb41, 0xfd6bdb32, 0xfcaad7d1, 0xff535f79, - 0x021150df, 0x023432c1, 0x0024a4e2, 0xfe5be690, - 0xfe8dae25, 0x0023317f, 0x014458e7, 0x00eaba9d, - 0xffbc0d18, 0xff0f6757, 0xff73f28c, 0x004beb34, - 0x00a94ca3, 0x004c16e1, 0xffbb4597, 0xff90e93b, - 0xffdc7063, 0x00356d20, 0x0042119a, 0x000c88b0, - 0x2c4f5ee0, 0x20393446, 0x0b7dca34, 0xfb0436a7, - 0xf6a06914, 0xfc36844a, 0x03573f99, 0x0535cfa8, - 0x01a35eac, 0xfd6623f8, 0xfcad8c7c, 0xff59fe34, - 0x02149302, 0x02319ea2, 0x001ff53c, 0xfe5a2522, - 0xfe8fff72, 0x00267a86, 0x01452867, 0x00e8c398, - 0xffb9d275, 0xff0f2b18, 0xff7583e9, 0x004d5a40, - 0x00a937c5, 0x004aebc2, 0xffba6b76, 0xff912133, - 0xffdd3d4f, 0x0035dfe4, 0x0041d4e1, 0x000c0bd8, - 0x2c46e641, 0x20146d89, 0x0b54e36a, 0xfaeea1cb, - 0xf6a3e8c5, 0xfc462ff0, 0x03616645, 0x0532fff0, - 0x0199bfc2, 0xfd607c43, 0xfcb04fb8, 0xff609cda, - 0x0217c9a4, 0x022f0127, 0x001b4717, 0xfe586c66, - 0xfe9256a1, 0x0029c15e, 0x0145f16d, 0x00e6c917, - 0xffb79a2d, 0xff0ef37f, 0xff771720, 0x004ec71f, - 0x00a91fbe, 0x0049bfda, 0xffb99322, 0xff915b26, - 0xffde0a64, 0x00365152, 0x0041970f, 0x000b8f24, - 0x2c3e278f, 0x1fef8368, 0x0b2c0fb4, 0xfad94050, - 0xf6a791d2, 0xfc55e0aa, 0x036b7599, 0x05301914, - 0x01901eb2, 0xfd5ae427, 0xfcb32170, 0xff673b4a, - 0x021af4ba, 0x022c5a63, 0x00169a88, 0xfe56bc61, - 0xfe94b3a4, 0x002d05f8, 0x0146b3f7, 0x00e4cb25, - 0xffb56449, 0xff0ec08c, 0xff78ac28, 0x005031c9, - 0x00a90490, 0x0048932e, 0xffb8bca0, 0xff919712, - 0xffded79e, 0x0036c16a, 0x00415826, 0x000b1299, - 0x2c3522e3, 0x1fca764a, 0x0b034f73, 0xfac4124c, - 0xf6ab6403, 0xfc65962c, 0x03756d76, 0x052d1b2f, - 0x01867bab, 0xfd555bb5, 0xfcb6018f, 0xff6dd965, - 0x021e143c, 0x0229aa65, 0x0011efa5, 0xfe551517, - 0xfe97166d, 0x00304844, 0x01477006, 0x00e2c9cd, - 0xffb330d4, 0xff0e923d, 0xff7a42f8, 0x00519a39, - 0x00a8e63e, 0x004765c5, 0xffb7e7f2, 0xff91d4f4, - 0xffdfa4f9, 0x00373029, 0x00411827, 0x000a9638, - 0x2c2bd857, 0x1fa54697, 0x0adaa30a, 0xfaaf17d5, - 0xf6af5f20, 0xfc75502d, 0x037f4dbf, 0x052a065f, - 0x017cd6db, 0xfd4fe2ff, 0xfcb8f001, 0xff74770c, - 0x02212820, 0x0226f13f, 0x000d4683, 0xfe53768d, - 0xfe997eee, 0x00338836, 0x01482599, 0x00e0c51b, - 0xffb0ffd6, 0xff0e6890, 0xff7bdb88, 0x00530069, - 0x00a8c4c9, 0x004637a4, 0xffb7151b, 0xff9214cb, - 0xffe07271, 0x00379d8e, 0x0040d715, 0x000a1a04, - 0x2c224806, 0x1f7ff4b5, 0x0ab20adb, 0xfa9a5100, - 0xf6b382ee, 0xfc850e61, 0x03891658, 0x0526dabf, - 0x01733071, 0xfd4a7a17, 0xfcbbecb0, 0xff7b1420, - 0x0224305d, 0x02242f01, 0x00089f39, 0xfe51e0c6, - 0xfe9bed18, 0x0036c5bc, 0x0148d4af, 0x00debd19, - 0xffaed158, 0xff0e4386, 0xff7d75cf, 0x00546454, - 0x00a8a035, 0x004508d3, 0xffb6441e, 0xff925693, - 0xffe14002, 0x00380999, 0x004094f1, 0x00099dfe, - 0x2c18720c, 0x1f5a810c, 0x0a898746, 0xfa85bde1, - 0xf6b7cf34, 0xfc94d07c, 0x0392c724, 0x0523986e, - 0x0169889a, 0xfd45210e, 0xfcbef787, 0xff81b081, - 0x02272ce9, 0x022163be, 0x0003f9dc, 0xfe5053c6, - 0xfe9e60de, 0x003a00ca, 0x01497d48, 0x00dcb1d3, - 0xffaca566, 0xff0e231b, 0xff7f11c5, 0x0055c5f4, - 0x00a87882, 0x0043d957, 0xffb574fe, 0xff929a4b, - 0xffe20da7, 0x00387449, 0x004051be, 0x0009222a, - 0x2c0e5685, 0x1f34ec04, 0x0a6118ac, 0xfa715e8b, - 0xf6bc43b8, 0xfca49636, 0x039c6007, 0x05203f87, - 0x015fdf86, 0xfd3fd7f4, 0xfcc21070, 0xff884c11, - 0x022a1dbc, 0x021e8f87, 0xffff5681, 0xfe4ecf90, - 0xfea0da32, 0x003d3951, 0x014a1f63, 0x00daa355, - 0xffaa7c06, 0xff0e074e, 0xff80af61, 0x00572543, - 0x00a84db4, 0x0042a936, 0xffb4a7be, 0xff92dff1, - 0xffe2db5e, 0x0038dd9b, 0x00400d7e, 0x0008a689, - 0x2c03f58f, 0x1f0f3605, 0x0a38bf6d, 0xfa5d3310, - 0xf6c0e03f, 0xfcb45f43, 0x03a5e0e5, 0x051cd02a, - 0x01563561, 0xfd3a9eda, 0xfcc53757, 0xff8ee6b0, - 0x022d02cc, 0x021bb26d, 0xfffab53d, 0xfe4d5428, - 0xfea35904, 0x00406f43, 0x014abb01, 0x00d891aa, - 0xffa85544, 0xff0df01e, 0xff824e9a, 0x0058823c, - 0x00a81fce, 0x00417876, 0xffb3dc61, 0xff932781, - 0xffe3a921, 0x0039458e, 0x003fc833, 0x00082b1f, - 0x2bf94f47, 0x1ee95f78, 0x0a107bea, 0xfa493b84, - 0xf6c5a48e, 0xfcc42b5a, 0x03af49a4, 0x05194a74, - 0x014c8a5b, 0xfd3575d1, 0xfcc86c24, 0xff95803f, - 0x022fdc13, 0x0218cc82, 0xfff61626, 0xfe4be191, - 0xfea5dd47, 0x0043a290, 0x014b5020, 0x00d67cdd, - 0xffa63128, 0xff0ddd89, 0xff83ef68, 0x0059dcd9, - 0x00a7eed0, 0x0040471f, 0xffb312e9, 0xff9370f8, - 0xffe476ec, 0x0039ac23, 0x003f81de, 0x0007afec, - 0x2bee63cd, 0x1ec368c5, 0x09e84e81, 0xfa3577f7, - 0xf6ca9069, 0xfcd3fa2f, 0x03b89a28, 0x0515ae84, - 0x0142dea0, 0xfd305ce8, 0xfccbaec1, 0xff9c189f, - 0x0232a987, 0x0215ddd8, 0xfff17951, 0xfe4a77ce, - 0xfea866ec, 0x0046d32b, 0x014bdec3, 0x00d464f9, - 0xffa40fbc, 0xff0dcf8e, 0xff8591c2, 0x005b3515, - 0x00a7babf, 0x003f1535, 0xffb24b5b, 0xff93bc56, - 0xffe544bd, 0x003a1157, 0x003f3a83, 0x000734f5, - 0x2be33340, 0x1e9d5256, 0x09c03792, 0xfa21e87a, - 0xf6cfa395, 0xfce3cb7b, 0x03c1d258, 0x0511fc78, - 0x01393260, 0xfd2b542e, 0xfcceff19, 0xffa2afb2, - 0x02356b22, 0x0212e681, 0xffecded3, 0xfe4916e2, - 0xfeaaf5e4, 0x004a0106, 0x014c66e7, 0x00d24a0b, - 0xffa1f107, 0xff0dc629, 0xff87359f, 0x005c8aea, - 0x00a7839c, 0x003de2bf, 0xffb185b7, 0xff940996, - 0xffe6128e, 0x003a7529, 0x003ef223, 0x0006ba39, - 0x2bd7bdc1, 0x1e771c95, 0x0998377b, 0xfa0e8d1c, - 0xf6d4ddd6, 0xfcf39ef2, 0x03caf21a, 0x050e346f, - 0x012f85c7, 0xfd265bb3, 0xfcd25d14, 0xffa94558, - 0x023820da, 0x020fe68f, 0xffe846c1, 0xfe47becf, - 0xfead8a21, 0x004d2c12, 0x014ce88f, 0x00d02c1d, - 0xff9fd514, 0xff0dc15a, 0xff88daf6, 0x005dde54, - 0x00a7496b, 0x003cafc3, 0xffb0c202, 0xff9458b7, - 0xffe6e05c, 0x003ad79a, 0x003ea8c1, 0x00063fbd, - 0x2bcc0370, 0x1e50c7e9, 0x09704e9b, 0xf9fb65ed, - 0xf6da3eef, 0xfd03744b, 0x03d3f955, 0x050a5688, - 0x0125d904, 0xfd217386, 0xfcd5c89b, 0xffafd974, - 0x023acaa9, 0x020cde14, 0xffe3b130, 0xfe466f99, - 0xfeb02395, 0x00505442, 0x014d63bb, 0x00ce0b3c, - 0xff9dbbec, 0xff0dc11e, 0xff8a81c0, 0x005f2f4d, - 0x00a70c2e, 0x003b7c48, 0xffb0003d, 0xff94a9b5, - 0xffe7ae23, 0x003b38a6, 0x003e5e5e, 0x0005c583, - 0x2bc00470, 0x1e2a54be, 0x09487d50, 0xf9e872fc, - 0xf6dfc6a3, 0xfd134b3d, 0x03dce7f1, 0x050662e5, - 0x011c2c44, 0xfd1c9bb6, 0xfcd94199, 0xffb66be6, - 0x023d6888, 0x0209cd23, 0xffdf1e34, 0xfe452941, - 0xfeb2c22f, 0x00537988, 0x014dd86a, 0x00cbe773, - 0xff9ba596, 0xff0dc573, 0xff8c29f3, 0x00607dd0, - 0x00a6cbe7, 0x003a4853, 0xffaf406b, 0xff94fc8f, - 0xffe87bde, 0x003b984e, 0x003e12fc, 0x00054b8b, - 0x2bb3c0e3, 0x1e03c37e, 0x0920c3f7, 0xf9d5b456, - 0xf6e574b4, 0xfd23237f, 0x03e5bdd5, 0x050259a3, - 0x01127fb4, 0xfd17d44f, 0xfcdcc7f4, 0xffbcfc90, - 0x023ffa6f, 0x0206b3ce, 0xffda8de3, 0xfe43ebca, - 0xfeb565e2, 0x00569bd5, 0x014e469e, 0x00c9c0ce, - 0xff99921d, 0xff0dce57, 0xff8dd386, 0x0061c9d7, - 0x00a6889a, 0x003913ea, 0xffae8290, 0xff955141, - 0xffe9498a, 0x003bf691, 0x003dc69f, 0x0004d1da, - 0x2ba738ed, 0x1ddd1493, 0x08f922ec, 0xf9c32a08, - 0xf6eb48e5, 0xfd32fcc8, 0x03ee7ae9, 0x04fe3ae4, - 0x0108d382, 0xfd131d62, 0xfce05b97, 0xffc38b54, - 0x02428059, 0x02039228, 0xffd60051, 0xfe42b736, - 0xfeb80e9e, 0x0059bb1c, 0x014eae58, 0x00c79757, - 0xff978188, 0xff0ddbc7, 0xff8f7e70, 0x0063135e, - 0x00a64249, 0x0037df14, 0xffadc6ad, 0xff95a7c8, - 0xffea1723, 0x003c536d, 0x003d7948, 0x00045871, - 0x2b9a6cb2, 0x1db64868, 0x08d19a8d, 0xf9b0d41f, - 0xf6f142f7, 0xfd42d6cf, 0x03f71f18, 0x04fa06c8, - 0x00ff27db, 0xfd0e76fa, 0xfce3fc69, 0xffca1813, - 0x0244fa3e, 0x02006843, 0xffd17593, 0xfe418b86, - 0xfebabc55, 0x005cd750, 0x014f0f98, 0x00c56b1c, - 0xff9573e0, 0xff0dedc1, 0xff912aaa, 0x00645a5f, - 0x00a5f8f8, 0x0036a9d8, 0xffad0cc5, 0xff960023, - 0xffeae4a5, 0x003caee2, 0x003d2af9, 0x0003df51, - 0x2b8d5c57, 0x1d8f5f67, 0x08aa2b35, 0xf99eb2a7, - 0xf6f762ad, 0xfd52b14c, 0x03ffaa49, 0x04f5bd70, - 0x00f57ced, 0xfd09e125, 0xfce7aa52, 0xffd0a2af, - 0x02476818, 0x01fd3633, 0xffccedbd, 0xfe4068bc, - 0xfebd6ef7, 0x005ff063, 0x014f6a60, 0x00c33c28, - 0xff93692f, 0xff0e0443, 0xff92d82a, 0x00659ed6, - 0x00a5aca9, 0x0035743a, 0xffac54da, 0xff965a4d, - 0xffebb20c, 0x003d08ee, 0x003cdbb4, 0x0003667e, - 0x2b800802, 0x1d6859fd, 0x0882d541, 0xf98cc5a9, - 0xf6fda7c7, 0xfd628bf7, 0x04081c68, 0x04f15efe, - 0x00ebd2e4, 0xfd055bf0, 0xfceb653b, 0xffd72b0b, - 0x0249c9e1, 0x01f9fc0a, 0xffc868e4, 0xfe3f4eda, - 0xfec02675, 0x00630646, 0x014fbeb1, 0x00c10a86, - 0xff91617c, 0xff0e1f49, 0xff9486e7, 0x0066e0be, - 0x00a55d5f, 0x00343e41, 0xffab9eef, 0xff96b645, - 0xffec7f54, 0x003d6192, 0x003c8b7d, 0x0002edfa, - 0x2b726fd9, 0x1d413893, 0x085b990a, 0xf97b0d31, - 0xf7041206, 0xfd726687, 0x0410755d, 0x04eceb92, - 0x00e229ee, 0xfd00e768, 0xfcef2d0b, 0xffddb107, - 0x024c1f94, 0x01f6b9dc, 0xffc3e71c, 0xfe3e3de2, - 0xfec2e2c1, 0x006618ee, 0x01500c8b, 0x00bed643, - 0xff8f5ccf, 0xff0e3ed3, 0xff9636d9, 0x00682012, - 0x00a50b1d, 0x003307f4, 0xffaaeb06, 0xff971407, - 0xffed4c79, 0x003db8cd, 0x003c3a54, 0x000275c6, - 0x2b649404, 0x1d19fb96, 0x083476ed, 0xf9698949, - 0xf70aa12b, 0xfd8240b4, 0x0418b515, 0x04e8634f, - 0x00d88236, 0xfcfc8399, 0xfcf301ab, 0xffe43486, - 0x024e692b, 0x01f36fbc, 0xffbf6879, 0xfe3d35d3, - 0xfec5a3ca, 0x0069284b, 0x015053f1, 0x00bc9f6a, - 0xff8d5b32, 0xff0e62db, 0xff97e7f6, 0x00695ccd, - 0x00a4b5e7, 0x0031d158, 0xffaa3921, 0xff977391, - 0xffee1978, 0x003e0e9c, 0x003be83d, 0x0001fde6, - 0x2b5674ab, 0x1cf2a372, 0x080d6f43, 0xf95839f8, - 0xf71154f5, 0xfd921a37, 0x0420db7a, 0x04e3c656, - 0x00cedbeb, 0xfcf8308f, 0xfcf6e300, 0xffeab56a, - 0x0250a6a0, 0x01f01dbc, 0xffbaed10, 0xfe3c36b0, - 0xfec86981, 0x006c3452, 0x015094e5, 0x00ba6607, - 0xff8b5cad, 0xff0e8b61, 0xff999a37, 0x006a96ea, - 0x00a45dbf, 0x00309a73, 0xffa98944, 0xff97d4df, - 0xffeee64c, 0x003e6301, 0x003b953a, 0x0001865a, - 0x2b4811f7, 0x1ccb3092, 0x07e68267, 0xf9471f48, - 0xf7182d24, 0xfda1f2c9, 0x0428e878, 0x04df14cb, - 0x00c53738, 0xfcf3ee56, 0xfcfad0f3, 0xfff13396, - 0x0252d7ef, 0x01ecc3f2, 0xffb674f4, 0xfe3b4079, - 0xfecb33d8, 0x006f3cf5, 0x0150cf67, 0x00b82a26, - 0xff896147, 0xff0eb860, 0xff9b4d92, 0x006bce65, - 0x00a402aa, 0x002f634c, 0xffa8db6f, 0xff9837ef, - 0xffefb2f1, 0x003eb5fa, 0x003b414c, 0x00010f25, - 0x2b396c11, 0x1ca3a363, 0x07bfb0b0, 0xf936393f, - 0xf71f2978, 0xfdb1ca21, 0x0430dbfc, 0x04da4ece, - 0x00bb944a, 0xfcefbcf8, 0xfcfecb6a, 0xfff7aeec, - 0x0254fd13, 0x01e9626f, 0xffb20039, 0xfe3a532e, - 0xfece02bd, 0x00724227, 0x01510379, 0x00b5ebd3, - 0xff876909, 0xff0ee9d6, 0xff9d01fe, 0x006d033a, - 0x00a3a4a9, 0x002e2be9, 0xffa82fa6, 0xff989cbe, - 0xfff07f64, 0x003f0786, 0x003aec77, 0x0000984a, - 0x2b2a8324, 0x1c7bfc52, 0x0798fa7a, 0xf92587e5, - 0xf72649af, 0xfdc19ffa, 0x0438b5f3, 0x04d57485, - 0x00b1f34e, 0xfceb9c80, 0xfd02d24d, 0xfffe274e, - 0x02571607, 0x01e5f948, 0xffad8ef4, 0xfe396ed1, - 0xfed0d623, 0x007543da, 0x0151311e, 0x00b3ab1a, - 0xff8573fb, 0xff0f1fc0, 0xff9eb773, 0x006e3563, - 0x00a343c0, 0x002cf44f, 0xffa785e9, 0xff990348, - 0xfff14ba1, 0x003f57a5, 0x003a96bc, 0x000021ca, - 0x2b1b575a, 0x1c543bca, 0x0772601b, 0xf9150b40, - 0xf72d8d89, 0xfdd1740c, 0x04407649, 0x04d08611, - 0x00a8546f, 0xfce78cfa, 0xfd06e582, 0x00049c9f, - 0x025922c7, 0x01e28891, 0xffa92137, 0xfe389361, - 0xfed3adfa, 0x00784203, 0x01515858, 0x00b16806, - 0xff838225, 0xff0f5a1b, 0xffa06de8, 0x006f64db, - 0x00a2dff4, 0x002bbc85, 0xffa6de3c, 0xff996b8c, - 0xfff217a3, 0x003fa656, 0x003a401f, 0xffffaba8, - 0x2b0be8e0, 0x1c2c6239, 0x074be1ec, 0xf904c354, - 0xf734f4c4, 0xfde14612, 0x04481cec, 0x04cb8396, - 0x009eb7d9, 0xfce38e6f, 0xfd0b04ef, 0x000b0ec2, - 0x025b234e, 0x01df105d, 0xffa4b717, 0xfe37c0df, - 0xfed68a31, 0x007b3c93, 0x01517928, 0x00af22a5, - 0xff81938f, 0xff0f98e4, 0xffa22553, 0x007091a0, - 0x00a27946, 0x002a8492, 0xffa638a1, 0xff99d585, - 0xfff2e368, 0x003ff398, 0x0039e8a0, 0xffff35e5, - 0x2afc37e1, 0x1c04700c, 0x07258044, 0xf8f4b028, - 0xf73c7f1d, 0xfdf115c3, 0x044fa9cb, 0x04c66d38, - 0x00951db9, 0xfcdfa0ea, 0xfd0f307b, 0x00117d9a, - 0x025d179a, 0x01db90c1, 0xffa050a7, 0xfe36f74a, - 0xfed96ab9, 0x007e337f, 0x01519391, 0x00acdb01, - 0xff7fa841, 0xff0fdc16, 0xffa3ddad, 0x0071bbac, - 0x00a20fbb, 0x00294c7a, 0xffa59519, 0xff9a4131, - 0xfff3aeec, 0x00403f6c, 0x00399043, 0xfffec084, - 0x2aec448d, 0x1bdc65b1, 0x06ff3b7a, 0xf8e4d1be, - 0xf7442c53, 0xfe00e2dc, 0x04571cd5, 0x04c1431b, - 0x008b863b, 0xfcdbc474, 0xfd13680d, 0x0017e908, - 0x025effa5, 0x01d809d0, 0xff9bedfb, 0xfe3636a4, - 0xfedc4f82, 0x008126b9, 0x0151a795, 0x00aa9128, - 0xff7dc042, 0xff1023b0, 0xffa596ed, 0x0072e2fb, - 0x00a1a356, 0x00281444, 0xffa4f3a7, 0xff9aae8c, - 0xfff47a29, 0x004089d0, 0x0039370a, 0xfffe4b86, - 0x2adc0f0f, 0x1bb44393, 0x06d913e5, 0xf8d52819, - 0xf74bfc23, 0xfe10ad15, 0x045e75f9, 0x04bc0563, - 0x0081f189, 0xfcd7f916, 0xfd17ab89, 0x001e50f2, - 0x0260db6d, 0x01d47b9f, 0xff978f26, 0xfe357eea, - 0xfedf387d, 0x00841635, 0x0151b537, 0x00a84524, - 0xff7bdb9a, 0xff106fad, 0xffa75108, 0x00740789, - 0x00a1341b, 0x0026dbf6, 0xffa4544c, 0xff9b1d94, - 0xfff5451e, 0x0040d2c5, 0x0038dcf8, 0xfffdd6ee, - 0x2acb9798, 0x1b8c0a22, 0x06b309db, 0xf8c5b33e, - 0xf753ee4a, 0xfe207429, 0x0465b526, 0x04b6b435, - 0x00785fd0, 0xfcd43eda, 0xfd1bfad6, 0x0024b539, - 0x0262aaef, 0x01d0e642, 0xff93343b, 0xfe34d01d, - 0xfee2259a, 0x008701e7, 0x0151bc79, 0x00a5f703, - 0xff79fa51, 0xff10c009, 0xffa90bf8, 0x00752951, - 0x00a0c20d, 0x0025a397, 0xffa3b70a, 0xff9b8e45, - 0xfff60fc6, 0x00411a48, 0x0038820e, 0xfffd62be, - 0x2abade57, 0x1b63b9ca, 0x068d1db0, 0xf8b6732d, - 0xf75c0284, 0xfe3037d3, 0x046cda4d, 0x04b14fb5, - 0x006ed13b, 0xfcd095c7, 0xfd2055da, 0x002b15c1, - 0x02646e27, 0x01cd49ce, 0xff8edd4d, 0xfe342a3c, - 0xfee516c8, 0x0089e9c2, 0x0151bd5e, 0x00a3a6d0, - 0xff781c6e, 0xff1114c3, 0xffaac7b3, 0x00764850, - 0x00a04d30, 0x00246b2b, 0xffa31be3, 0xff9c009d, - 0xfff6da1d, 0x0041605b, 0x0038264f, 0xfffceef7, - 0x2aa9e37b, 0x1b3b52fa, 0x06674fbb, 0xf8a767e8, - 0xf764388f, 0xfe3ff7ce, 0x0473e55f, 0x04abd809, - 0x006545f4, 0xfcccfde7, 0xfd24bc7a, 0x0031726d, - 0x02662513, 0x01c9a656, 0xff8a8a6f, 0xfe338d46, - 0xfee80bf9, 0x008ccdba, 0x0151b7e9, 0x00a15497, - 0xff7641f9, 0xff116dd4, 0xffac8430, 0x00776481, - 0x009fd588, 0x002332ba, 0xffa282d9, 0xff9c7497, - 0xfff7a41f, 0x0041a4fd, 0x0037c9be, 0xfffc7b9c, - 0x2a98a737, 0x1b12d61f, 0x0641a050, 0xf898916f, - 0xf76c9027, 0xfe4fb3d6, 0x047ad64d, 0x04a64d56, - 0x005bbe28, 0xfcc97740, 0xfd292e9b, 0x0037cb21, - 0x0267cfb0, 0x01c5fbf0, 0xff863bb5, 0xfe32f93a, - 0xfeeb051b, 0x008fadc3, 0x0151ac1d, 0x009f0064, - 0xff746afa, 0xff11cb3b, 0xffae4166, 0x00787de1, - 0x009f5b18, 0x0021fa48, 0xffa1ebee, 0xff9cea31, - 0xfff86dca, 0x0041e82d, 0x00376c5d, 0xfffc08af, - 0x2a8729bc, 0x1aea43a9, 0x061c0fc2, 0xf889efc2, - 0xf7750906, 0xfe5f6ba5, 0x0481ad08, 0x04a0afc1, - 0x00523a01, 0xfcc601dc, 0xfd2dac22, 0x003e1fc1, - 0x02696dfd, 0x01c24ab0, 0xff81f130, 0xfe326e17, - 0xfeee021f, 0x009289d1, 0x015199fd, 0x009caa44, - 0xff729776, 0xff122cf2, 0xffafff4c, 0x0079946b, - 0x009edde4, 0x0020c1dd, 0xffa15723, 0xff9d6168, - 0xfff93718, 0x004229eb, 0x00370e2e, 0xfffb9632, - 0x2a756b3b, 0x1ac19c04, 0x05f69e66, 0xf87b82e0, - 0xf77da2ea, 0xfe6f1ef7, 0x04886983, 0x049aff71, - 0x0048b9aa, 0xfcc29dc1, 0xfd3234f5, 0x00447031, - 0x026afff6, 0x01be92ab, 0xff7daaf5, 0xfe31ebdc, - 0xfef102f4, 0x009561d7, 0x0151818c, 0x009a5243, - 0xff70c777, 0xff1292f7, 0xffb1bddb, 0x007aa81c, - 0x009e5df0, 0x001f897e, 0xffa0c47a, 0xff9dda38, - 0xfffa0007, 0x00426a37, 0x0036af34, 0xfffb2426, - 0x2a636be9, 0x1a98dfa0, 0x05d14c8d, 0xf86d4ac8, - 0xf7865d8d, 0xfe7ecd89, 0x048f0bb1, 0x04953c8b, - 0x003f3d4d, 0xfcbf4af5, 0xfd36c8f8, 0x004abc53, - 0x026c859b, 0x01bad3f6, 0xff796914, 0xfe317287, - 0xfef4078b, 0x009835ca, 0x015162ce, 0x0097f86d, - 0xff6efb02, 0xff12fd45, 0xffb37d08, 0x007bb8f0, - 0x009ddb40, 0x001e5131, 0xffa033f4, 0xff9e549d, - 0xfffac893, 0x0042a910, 0x00364f71, 0xfffab28d, - 0x2a512bfa, 0x1a700eeb, 0x05ac1a8b, 0xf85f4778, - 0xf78f38aa, 0xfe8e7717, 0x04959384, 0x048f6736, - 0x0035c515, 0xfcbc0981, 0xfd3b6811, 0x0051040d, - 0x026dfee9, 0x01b70ea5, 0xff752ba1, 0xfe310217, - 0xfef70fd4, 0x009b059d, 0x01513dc5, 0x00959cce, - 0xff6d321f, 0xff136bd8, 0xffb53ccc, 0x007cc6e3, - 0x009d55d8, 0x001d18fb, 0xff9fa593, 0xff9ed096, - 0xfffb90b8, 0x0042e677, 0x0035eee8, 0xfffa416a, - 0x2a3eaba1, 0x1a472a55, 0x058708b1, 0xf85178ed, - 0xf79833fc, 0xfe9e1b5d, 0x049c00f1, 0x04897f98, - 0x002c512c, 0xfcb8d969, 0xfd401222, 0x00574743, - 0x026f6be0, 0x01b342cf, 0xff70f2af, 0xfe309a89, - 0xfefa1bbe, 0x009dd146, 0x01511275, 0x00933f72, - 0xff6b6cd5, 0xff13deac, 0xffb6fd1c, 0x007dd1f1, - 0x009ccdbb, 0x001be0e4, 0xff9f195a, 0xff9f4e1e, - 0xfffc5873, 0x0043226a, 0x00358d9b, 0xfff9d0be, - 0x2a2beb14, 0x1a1e324b, 0x05621751, 0xf843df22, - 0xf7a14f3e, 0xfeadba18, 0x04a253ec, 0x048385d8, - 0x0022e1bc, 0xfcb5bab4, 0xfd44c712, 0x005d85d9, - 0x0270cc7e, 0x01af7087, 0xff6cbe4e, 0xfe303bdb, - 0xfefd2b39, 0x00a098b9, 0x0150e0e3, 0x0090e066, - 0xff69ab2b, 0xff1455bd, 0xffb8bdf2, 0x007eda17, - 0x009c42ee, 0x001aa8f0, 0xff9e8f48, 0xff9fcd32, - 0xfffd1fbf, 0x00435cea, 0x00352b8d, 0xfff9608c, - 0x2a18ea8a, 0x19f5273c, 0x053d46bc, 0xf8367a15, - 0xf7aa8a29, 0xfebd5306, 0x04a88c69, 0x047d7a1c, - 0x001976f0, 0xfcb2ad69, 0xfd4986c4, 0x0063bfb2, - 0x027220c3, 0x01ab97e3, 0xff688e92, 0xfe2fe60c, - 0xff003e34, 0x00a35bea, 0x0150a911, 0x008e7fb5, - 0xff67ed27, 0xff14d106, 0xffba7f43, 0x007fdf51, - 0x009bb575, 0x00197126, 0xff9e075f, 0xffa04dce, - 0xfffde69a, 0x004395f7, 0x0034c8c0, 0xfff8f0d5, - 0x2a05aa39, 0x19cc0999, 0x05189741, 0xf82949bf, - 0xf7b3e478, 0xfecce5e4, 0x04aeaa5d, 0x04775c8d, - 0x001010f0, 0xfcafb18b, 0xfd4e511c, 0x0069f4b5, - 0x027368ad, 0x01a7b8f9, 0xff64638d, 0xfe2f991a, - 0xff0354a0, 0x00a61acd, 0x01506b04, 0x008c1d6d, - 0xff6632d1, 0xff155084, 0xffbc4107, 0x0080e19b, - 0x009b2554, 0x0018398c, 0xff9d81a2, 0xffa0cff0, - 0xfffeacff, 0x0043cd90, 0x00346537, 0xfff8819a, - 0x29f22a58, 0x19a2d9cf, 0x04f40932, 0xf81c4e1c, - 0xf7bd5de4, 0xfedc726f, 0x04b4adbf, 0x04712d52, - 0x0006afe6, 0xfcacc720, 0xfd5325ff, 0x007024c6, - 0x0274a43d, 0x01a3d3dd, 0xff603d50, 0xfe2f5500, - 0xff066e6b, 0x00a8d558, 0x015026bf, 0x0089b999, - 0xff647c2f, 0xff15d431, 0xffbe0336, 0x0081e0f3, - 0x009a928e, 0x00170227, 0xff9cfe11, 0xffa15393, - 0xffff72ec, 0x004403b5, 0x003400f4, 0xfff812df, - 0x29de6b20, 0x1979984f, 0x04cf9cdc, 0xf80f8725, - 0xf7c6f628, 0xfeebf866, 0x04ba9684, 0x046aec92, - 0xfffd53fc, 0xfca9ee2c, 0xfd58054f, 0x00764fc9, - 0x0275d371, 0x019fe8a6, 0xff5c1bed, 0xfe2f19be, - 0xff098b86, 0x00ab8b7e, 0x014fdc47, 0x00875446, - 0xff62c947, 0xff165c0a, 0xffbfc5c6, 0x0082dd55, - 0x0099fd2a, 0x0015cafd, 0xff9c7cad, 0xffa1d8b5, - 0x0000385c, 0x00443867, 0x00339bf9, 0xfff7a4a4, - 0x29ca6cc9, 0x19504587, 0x04ab528f, 0xf802f4d2, - 0xf7d0acfb, 0xfefb7787, 0x04c064a3, 0x04649a75, - 0xfff3fd5b, 0xfca726b5, 0xfd5ceef2, 0x007c75a4, - 0x0276f64b, 0x019bf768, 0xff57ff75, 0xfe2ee750, - 0xff0cabe0, 0x00ae3d36, 0x014f8ba0, 0x0084ed7f, - 0xff611a20, 0xff16e809, 0xffc188af, 0x0083d6be, - 0x00996529, 0x00149415, 0xff9bfd78, 0xffa25f52, - 0x0000fd4d, 0x00446ba4, 0x0033364a, 0xfff736eb, - 0x29b62f8d, 0x1926e1e8, 0x04872a99, 0xf7f6971d, - 0xf7da8217, 0xff0aef91, 0x04c61813, 0x045e3724, - 0xffeaac2d, 0xfca470be, 0xfd61e2c9, 0x0082963b, - 0x02780ccb, 0x0198003a, 0xff53e7fb, 0xfe2ebdb4, - 0xff0fcf69, 0x00b0ea74, 0x014f34ce, 0x00828551, - 0xff5f6ec1, 0xff17782a, 0xffc34be8, 0x0084cd2a, - 0x0098ca91, 0x00135d73, 0xff9b8073, 0xffa2e766, - 0x0001c1ba, 0x00449d6e, 0x0032cfe8, 0xfff6c9b7, - 0x29a1b3a6, 0x18fd6de0, 0x04632547, 0xf7ea6dfe, - 0xf7e47535, 0xff1a6042, 0x04cbb0cc, 0x0457c2c6, - 0xffe16099, 0xfca1cc4a, 0xfd66e0ba, 0x0088b175, - 0x027916f0, 0x01940330, 0xff4fd58f, 0xfe2e9ce5, - 0xff12f610, 0x00b3932d, 0x014ed7d5, 0x00801bc9, - 0xff5dc72f, 0xff180c69, 0xffc50f68, 0x0085c096, - 0x00982d66, 0x0012271e, 0xff9b05a0, 0xffa370ed, - 0x000285a0, 0x0044cdc5, 0x003268d6, 0xfff65d08, - 0x298cf94f, 0x18d3e9df, 0x043f42e7, 0xf7de796a, - 0xf7ee860c, 0xff29c95a, 0x04d12ec5, 0x04513d85, - 0xffd81ac8, 0xfc9f395e, 0xfd6be8a6, 0x008ec736, - 0x027a14bd, 0x01900061, 0xff4bc843, 0xfe2e84e2, - 0xff161fc4, 0x00b63757, 0x014e74bb, 0x007db0f2, - 0xff5c2372, 0xff18a4c1, 0xffc6d327, 0x0086b0ff, - 0x00978dad, 0x0010f11b, 0xff9a8cfe, 0xffa3fbe6, - 0x000348fc, 0x0044fca7, 0x00320118, 0xfff5f0e2, - 0x297800c4, 0x18aa5655, 0x041b83c4, 0xf7d2b958, - 0xf7f8b457, 0xff392a98, 0x04d691f8, 0x044aa789, - 0xffcedae4, 0xfc9cb7fb, 0xfd70fa72, 0x0094d765, - 0x027b0631, 0x018bf7e3, 0xff47c028, 0xfe2e75a5, - 0xff194c76, 0x00b8d6e6, 0x014e0b83, 0x007b44d9, - 0xff5a838f, 0xff19412c, 0xffc8971b, 0x00879e62, - 0x0096eb69, 0x000fbb71, 0xff9a1690, 0xffa4884b, - 0x00040bca, 0x00452a16, 0x003198ae, 0xfff58545, - 0x2962ca41, 0x1880b3b1, 0x03f7e82c, 0xf7c72dbf, - 0xf802ffcb, 0xff4883bd, 0x04dbda5e, 0x044400fa, - 0xffc5a113, 0xfc9a4826, 0xfd761600, 0x009ae1e6, - 0x027beb4e, 0x0187e9cb, 0xff43bd50, 0xfe2e6f2d, - 0xff1c7c13, 0x00bb71d0, 0x014d9c33, 0x0078d78a, - 0xff58e78c, 0xff19e1a6, 0xffca5b3d, 0x008888bc, - 0x0096469f, 0x000e8625, 0xff99a256, 0xffa51619, - 0x0004ce07, 0x00455611, 0x00312f9d, 0xfff51a33, - 0x294d5604, 0x18570264, 0x03d47068, 0xf7bbd693, - 0xf80d6821, 0xff57d489, 0x04e107ef, 0x043d4a03, - 0xffbc6d7f, 0xfc97e9df, 0xfd7b3b32, 0x00a0e6a0, - 0x027cc415, 0x0183d62f, 0xff3fbfca, 0xfe2e7175, - 0xff1fae8d, 0x00be080a, 0x014d26ce, 0x00766912, - 0xff574f6f, 0xff1a862a, 0xffcc1f84, 0x0089700a, - 0x00959f55, 0x000d513c, 0xff993051, 0xffa5a54d, - 0x00058faf, 0x00458098, 0x0030c5e5, 0xfff4afae, - 0x2937a449, 0x182d42dd, 0x03b11cc5, 0xf7b0b3c8, - 0xf817ed11, 0xff671cbb, 0x04e61aa7, 0x043682cc, - 0xffb34050, 0xfc959d2a, 0xfd8069ed, 0x00a6e579, - 0x027d9088, 0x017fbd25, 0xff3bc7a7, 0xfe2e7c78, - 0xff22e3d2, 0x00c0998b, 0x014cab5b, 0x0073f97d, - 0xff55bb3e, 0xff1b2eb3, 0xffcde3e7, 0x008a5449, - 0x0094f58d, 0x000c1cbd, 0xff98c083, 0xffa635e2, - 0x000650bf, 0x0045a9ad, 0x00305b8b, 0xfff445b8, - 0x2921b54e, 0x1803758c, 0x038ded8c, 0xf7a5c553, - 0xf8228e52, 0xff765c15, 0x04eb127f, 0x042fab80, - 0xffaa19ac, 0xfc936208, 0xfd85a213, 0x00acde57, - 0x027e50a9, 0x017b9ec4, 0xff37d4f9, 0xfe2e9034, - 0xff261bd1, 0x00c32648, 0x014c29de, 0x007188d6, - 0xff542aff, 0xff1bdb3b, 0xffcfa85c, 0x008b3577, - 0x0094494d, 0x000ae8ad, 0xff9852eb, 0xffa6c7d7, - 0x00071133, 0x0045d14e, 0x002ff090, 0xfff3dc52, - 0x290b8954, 0x17d99ae1, 0x036ae307, 0xf79b0b25, - 0xf82d4b9c, 0xff859259, 0x04efef72, 0x0428c447, - 0xffa0f9bb, 0xfc91387a, 0xfd8ae385, 0x00b2d121, - 0x027f047a, 0x01777b22, 0xff33e7d0, 0xfe2eaca3, - 0xff29567a, 0x00c5ae36, 0x014ba25d, 0x006f172b, - 0xff529eb8, 0xff1c8bbe, 0xffd16cdd, 0x008c1391, - 0x00939a99, 0x0009b511, 0xff97e78c, 0xffa75b26, - 0x0007d109, 0x0045f77c, 0x002f84f8, 0xfff3737f, - 0x28f5209a, 0x17afb34c, 0x0347fd7f, 0xf7908532, - 0xf83824a4, 0xff94bf47, 0x04f4b17d, 0x0421cd4b, - 0xff97e0a5, 0xfc8f2082, 0xfd902e27, 0x00b8bdbd, - 0x027fabfd, 0x01735253, 0xff30003c, 0xfe2ed1c2, - 0xff2c93bc, 0x00c8314d, 0x014b14dc, 0x006ca487, - 0xff51166f, 0xff1d4037, 0xffd3315f, 0x008cee93, - 0x0092e976, 0x000881f0, 0xff977e65, 0xffa7efcc, - 0x0008903d, 0x00461c37, 0x002f18c4, 0xfff30b3f, - 0x28de7b60, 0x1785bf3d, 0x03253d3d, 0xf786336c, - 0xf8431922, 0xffa3e2a1, 0x04f9589b, 0x041ac6b8, - 0xff8ece90, 0xfc8d1a20, 0xfd9581db, 0x00bea411, - 0x02804736, 0x016f2470, 0xff2c1e4d, 0xfe2eff8c, - 0xff2fd386, 0x00caaf81, 0x014a8161, 0x006a30f7, - 0xff4f9228, 0xff1df8a0, 0xffd4f5db, 0x008dc67c, - 0x009235e9, 0x00074f4f, 0xff971778, 0xffa885c5, - 0x00094ecb, 0x00463f80, 0x002eabf7, 0xfff2a394, - 0x28c799e6, 0x175bbf24, 0x0302a287, 0xf77c15c2, - 0xf84e28cc, 0xffb2fc2a, 0x04fde4c8, 0x0413b0b6, - 0xff85c3a4, 0xfc8b2554, 0xfd9ade82, 0x00c48405, - 0x0280d625, 0x016af18e, 0xff284214, 0xfe2f35fc, - 0xff3315c8, 0x00cd28c9, 0x0149e7f2, 0x0067bc88, - 0xff4e11e9, 0xff1eb4f3, 0xffd6ba48, 0x008e9b49, - 0x00917ff6, 0x00061d34, 0xff96b2c5, 0xffa91d0f, - 0x000a0cb1, 0x00466157, 0x002e3e94, 0xfff23c80, - 0x28b07c70, 0x1731b371, 0x02e02da7, 0xf7722c26, - 0xf8595359, 0xffc20ba4, 0x05025601, 0x040c8b71, - 0xff7cc007, 0xfc894220, 0xfda04401, 0x00ca5d80, - 0x028158d0, 0x0166b9c4, 0xff246ba0, 0xfe2f750d, - 0xff365a71, 0x00cf9d1b, 0x01494894, 0x00654744, - 0xff4c95b9, 0xff1f752b, 0xffd87e9d, 0x008f6cf7, - 0x0090c7a1, 0x0004eba4, 0xff96504d, 0xffa9b5a4, - 0x000ac9eb, 0x004681bc, 0x002dd09d, 0xfff1d604, - 0x2899233e, 0x17079c93, 0x02bddee2, 0xf7687688, - 0xf864987f, 0xffd110d3, 0x0506ac45, 0x04055714, - 0xff73c3e0, 0xfc877082, 0xfda5b237, 0x00d03069, - 0x0281cf38, 0x01627d27, 0xff209b02, 0xfe2fbcbb, - 0xff39a170, 0x00d20c6d, 0x0148a34c, 0x0062d139, - 0xff4b1d9b, 0xff203943, 0xffda42d2, 0x00903b84, - 0x00900cf1, 0x0003baa5, 0xff95f010, 0xffaa4f81, - 0x000b8675, 0x0046a0af, 0x002d6216, 0xfff17023, - 0x28818e95, 0x16dd7afd, 0x029bb67e, 0xf75ef4d6, - 0xf86ff7f3, 0xffe00b78, 0x050ae790, 0x03fe13c8, - 0xff6acf54, 0xfc85b07a, 0xfdab2907, 0x00d5fca7, - 0x02823961, 0x015e3bcf, 0xff1cd048, 0xfe300d00, - 0xff3ceab4, 0x00d476b7, 0x0147f821, 0x00605a74, - 0xff49a996, 0xff210136, 0xffdc06de, 0x009106ee, - 0x008f4fe9, 0x00028a3b, 0xff95920f, 0xffaaeaa4, - 0x000c424d, 0x0046be32, 0x002cf300, 0xfff10ade, - 0x2869beb7, 0x16b34f1c, 0x0279b4c2, 0xf755a6fe, - 0xf87b716c, 0xffeefb58, 0x050f07e1, 0x03f6c1b9, - 0xff61e28a, 0xfc840207, 0xfdb0a853, 0x00dbc222, - 0x0282974f, 0x0159f5d2, 0xff190b83, 0xfe3065d6, - 0xff40362c, 0x00d6dbef, 0x01474719, 0x005de2ff, - 0xff4839ae, 0xff21ccfd, 0xffddcab8, 0x0091cf32, - 0x008e908f, 0x00015a6e, 0xff95364b, 0xffab8707, - 0x000cfd6f, 0x0046da43, 0x002c835e, 0xfff0a635, - 0x2851b3e9, 0x16891961, 0x0257d9f2, 0xf74c8cf0, - 0xf887049f, 0xfffde037, 0x05130d37, 0x03ef6113, - 0xff58fda8, 0xfc826529, 0xfdb62ffd, 0x00e180c1, - 0x0282e906, 0x0155ab46, 0xff154cc2, 0xfe30c739, - 0xff4383c8, 0x00d93c0b, 0x01469039, 0x005b6ae8, - 0xff46cde8, 0xff229c92, 0xffdf8e59, 0x0092944e, - 0x008dcee7, 0x00002b42, 0xff94dcc4, 0xffac24a6, - 0x000db7d9, 0x0046f4e4, 0x002c1333, 0xfff0422b, - 0x28396e6f, 0x165eda3d, 0x02362652, 0xf743a697, - 0xf892b142, 0x000cb9d9, 0x0516f791, 0x03e7f200, - 0xff5020d3, 0xfc80d9dd, 0xfdbbbfe5, 0x00e7386d, - 0x02832e8a, 0x01515c42, 0xff119414, 0xfe313123, - 0xff46d377, 0x00db9702, 0x0145d387, 0x0058f23a, - 0xff45664a, 0xff236ff1, 0xffe151b8, 0x00935640, - 0x008d0af6, 0xfffefcbd, 0xff94857a, 0xffacc380, - 0x000e7186, 0x00470e16, 0x002ba282, 0xffefdec2, - 0x2820ee90, 0x1634921f, 0x02149a26, 0xf73af3e1, - 0xf89e770a, 0x001b8803, 0x051ac6ef, 0x03e074ab, - 0xff474c30, 0xfc7f6021, 0xfdc157ef, 0x00ece90d, - 0x028367df, 0x014d08dd, 0xff0de188, 0xfe31a38e, - 0xff4a2528, 0x00ddeccb, 0x01451109, 0x00567902, - 0xff4402d9, 0xff244713, 0xffe314cc, 0x00941506, - 0x008c44c1, 0xfffdcee3, 0xff94306f, 0xffad638e, - 0x000f2a75, 0x004725d8, 0x002b314d, 0xffef7bfa, - 0x28083491, 0x160a4177, 0x01f335b2, 0xf73274b9, - 0xf8aa55ac, 0x002a4a79, 0x051e7b51, 0x03d8e942, - 0xff3e7fe4, 0xfc7df7f5, 0xfdc6f7fa, 0x00f29289, - 0x0283950a, 0x0148b12d, 0xff0a352e, 0xfe321e74, - 0xff4d78ca, 0x00e03d5e, 0x014448c7, 0x0053ff4c, - 0xff42a398, 0xff2521f3, 0xffe4d78d, 0x0094d09e, - 0x008b7c4d, 0xfffca1bc, 0xff93dda1, 0xffae04ce, - 0x000fe2a1, 0x00473c2b, 0x002abf96, 0xffef19d6, - 0x27ef40ba, 0x15dfe8b5, 0x01d1f938, 0xf72a290a, - 0xf8b64cdd, 0x00390101, 0x052214b9, 0x03d14fee, - 0xff35bc15, 0xfc7ca155, 0xfdcc9fe9, 0x00f834cb, - 0x0283b60f, 0x01445549, 0xff068f14, 0xfe32a1cf, - 0xff50ce4c, 0x00e288b1, 0x01437ac6, 0x00518524, - 0xff41488d, 0xff260089, 0xffe699f2, 0x00958906, - 0x008ab1a0, 0xfffb754b, 0xff938d12, 0xffaea73c, - 0x00109a08, 0x00475110, 0x002a4d61, 0xffeeb856, - 0x27d61351, 0x15b5884a, 0x01b0e4f9, 0xf72210bf, - 0xf8c25c52, 0x0047ab61, 0x05259326, 0x03c9a8dd, - 0xff2d00e6, 0xfc7b5c3e, 0xfdd24f9d, 0x00fdcfba, - 0x0283caf4, 0x013ff548, 0xff02ef49, 0xfe332d99, - 0xff54259d, 0x00e4cebb, 0x0142a70d, 0x004f0a97, - 0xff3ff1bc, 0xff26e2d2, 0xffe85bf4, 0x00963e3c, - 0x0089e4be, 0xfffa4997, 0xff933ec2, 0xffaf4ad4, - 0x001150a6, 0x00476488, 0x0029daaf, 0xffee577c, - 0x27bcac9e, 0x158b20a5, 0x018ff938, 0xf71a2bc2, - 0xf8ce83c0, 0x0056495f, 0x0528f69b, 0x03c1f43a, - 0xff244e7d, 0xfc7a28ae, 0xfdd806f6, 0x01036340, - 0x0283d3be, 0x013b9141, 0xfeff55db, 0xfe33c1cb, - 0xff577ead, 0x00e70f75, 0x0141cda2, 0x004c8fb0, - 0xff3e9f2a, 0xff27c8c6, 0xffea1d89, 0x0096f03e, - 0x008915ab, 0xfff91ea4, 0xff92f2b1, 0xffafef91, - 0x00120679, 0x00477692, 0x00296784, 0xffedf74a, - 0x27a30ceb, 0x1560b236, 0x016f3634, 0xf71279fd, - 0xf8dac2da, 0x0064dac1, 0x052c3f1a, 0x03ba3232, - 0xff1ba4fe, 0xfc7906a1, 0xfdddc5d6, 0x0108ef45, - 0x0283d071, 0x0137294a, 0xfefbc2da, 0xfe345e5f, - 0xff5ad96a, 0x00e94ad5, 0x0140ee8c, 0x004a147c, - 0xff3d50dc, 0xff28b25f, 0xffebdeaa, 0x00979f0b, - 0x0088446f, 0xfff7f479, 0xff92a8df, 0xffb09571, - 0x0012bb7d, 0x00478730, 0x0028f3e3, 0xffed97c0, - 0x27893481, 0x15363d6c, 0x014e9c2e, 0xf70afb57, - 0xf8e71956, 0x00735f4e, 0x052f6ca6, 0x03b262f1, - 0xff13048c, 0xfc77f613, 0xfde38c1e, 0x010e73b2, - 0x0283c114, 0x0132bd7b, 0xfef83652, 0xfe35034f, - 0xff5e35c4, 0x00eb80d4, 0x014009d1, 0x00479907, - 0xff3c06d5, 0xff299f97, 0xffed9f4d, 0x00984aa0, - 0x0087710c, 0xfff6cb19, 0xff92614c, 0xffb13c6f, - 0x00136fb0, 0x00479661, 0x00287fcd, 0xffed38e2, - 0x276f23a9, 0x150bc2b8, 0x012e2b66, 0xf703afba, - 0xf8f386e8, 0x0081d6cd, 0x05327f41, 0x03aa86a3, - 0xff0a6d4b, 0xfc76f700, 0xfde959af, 0x0113f071, - 0x0283a5ad, 0x012e4de9, 0xfef4b053, 0xfe35b093, - 0xff6193aa, 0x00edb169, 0x013f1f7a, 0x00451d5c, - 0xff3ac119, 0xff2a9068, 0xffef5f6c, 0x0098f2fd, - 0x00869b8a, 0xfff5a28c, 0xff921bf9, 0xffb1e488, - 0x0014230e, 0x0047a428, 0x00280b45, 0xffecdaae, - 0x2754daae, 0x14e14289, 0x010de419, 0xf6fc970c, - 0xf9000b44, 0x00904106, 0x053576ef, 0x03a29d74, - 0xff01df5e, 0xfc760965, 0xfdef2e69, 0x0119656b, - 0x02837e41, 0x0129daad, 0xfef130ea, 0xfe366624, - 0xff64f30b, 0x00efdc8b, 0x013e2f8b, 0x0042a189, - 0xff397fae, 0xff2b84cc, 0xfff11efd, 0x0099981f, - 0x0085c3ec, 0xfff47ad4, 0xff91d8e5, 0xffb28db7, - 0x0014d595, 0x0047b084, 0x0027964f, 0xffec7d28, - 0x273a59db, 0x14b6bd4f, 0x00edc687, 0xf6f5b134, - 0xf90ca61e, 0x009e9dc1, 0x053853b4, 0x039aa793, - 0xfef95aea, 0xfc752d3c, 0xfdf50a2e, 0x011ed28a, - 0x02834ad7, 0x012563dd, 0xfeedb825, 0xfe3723fc, - 0xff6853d6, 0x00f20233, 0x013d3a0e, 0x00402599, - 0xff384297, 0xff2c7cbc, 0xfff2ddf9, 0x009a3a05, - 0x0084ea38, 0xfff353f9, 0xff919810, 0xffb337f8, - 0x00158742, 0x0047bb77, 0x002720ec, 0xffec2051, - 0x271fa17c, 0x148c337a, 0x00cdd2ed, 0xf6eefe19, - 0xf919572a, 0x00acecc6, 0x053b1595, 0x0392a52b, - 0xfef0e010, 0xfc746281, 0xfdfaecde, 0x012437b8, - 0x02830b75, 0x0120e990, 0xfeea4612, 0xfe37ea14, - 0xff6bb5fa, 0x00f42259, 0x013c3f08, 0x003da998, - 0xff3709d8, 0xff2d7831, 0xfff49c56, 0x009ad8ae, - 0x00840e73, 0xfff22dff, 0xff91597b, 0xffb3e348, - 0x00163811, 0x0047c500, 0x0026ab20, 0xffebc429, - 0x2704b1dd, 0x1461a578, 0x00ae0988, 0xf6e87da0, - 0xf9261e1c, 0x00bb2dde, 0x053dbc96, 0x038a966a, - 0xfee86ef3, 0xfc73a92e, 0xfe00d659, 0x012994de, - 0x0282c022, 0x011c6bdd, 0xfee6dabf, 0xfe38b863, - 0xff6f1966, 0x00f63cf6, 0x013b3e81, 0x003b2d92, - 0xff35d575, 0xff2e7727, 0xfff65a0e, 0x009b7418, - 0x008330a4, 0xfff108ec, 0xff911d25, 0xffb48fa2, - 0x0016e800, 0x0047cd21, 0x002634ec, 0xffeb68b2, - 0x26e98b4a, 0x143713b9, 0x008e6a94, 0xf6e22faf, - 0xf932faa7, 0x00c960d2, 0x054048bd, 0x03827b7c, - 0xfee007b6, 0xfc73013d, 0xfe06c681, 0x012ee9e7, - 0x028268e5, 0x0117eadb, 0xfee37638, 0xfe398ee3, - 0xff727e0a, 0x00f85200, 0x013a3880, 0x0038b193, - 0xff34a572, 0xff2f7995, 0xfff81717, 0x009c0c41, - 0x008250ce, 0xffefe4c3, 0xff90e30e, 0xffb53d03, - 0x0017970c, 0x0047d3db, 0x0025be55, 0xffeb0ded, - 0x26ce2e12, 0x140c7ead, 0x006ef64c, 0xf6dc1428, - 0xf93fec7f, 0x00d7856c, 0x0542ba10, 0x037a548f, - 0xfed7aa7c, 0xfc726aaa, 0xfe0cbd35, 0x013436be, - 0x028205c5, 0x011366a2, 0xfee0188b, 0xfe3a6d8b, - 0xff75e3d4, 0x00fa6172, 0x01392d0d, 0x003635a8, - 0xff3379d2, 0xff307f75, 0xfff9d36b, 0x009ca12a, - 0x00816ef7, 0xffeec18c, 0xff90ab37, 0xffb5eb67, - 0x00184532, 0x0047d92e, 0x0025475b, 0xffeab3dc, - 0x26b29a83, 0x13e1e6c3, 0x004faced, 0xf6d62af1, - 0xf94cf357, 0x00e59b75, 0x05451094, 0x037221d0, - 0xfecf5765, 0xfc71e56d, 0xfe12ba57, 0x01397b4c, - 0x028196c9, 0x010edf47, 0xfedcc1c6, 0xfe3b5455, - 0xff794ab4, 0x00fc6b43, 0x01381c2f, 0x0033b9dc, - 0xff325299, 0xff3188c2, 0xfffb8eff, 0x009d32d0, - 0x00808b25, 0xffed9f49, 0xff90759e, 0xffb69aca, - 0x0018f270, 0x0047dd1c, 0x0024d003, 0xffea5a7f, - 0x2696d0ea, 0x13b74c6a, 0x00308eb0, 0xf6d073ed, - 0xf95a0ee3, 0x00f3a2b8, 0x05474c51, 0x0369e36d, - 0xfec70e94, 0xfc717180, 0xfe18bdc6, 0x013eb77e, - 0x02811bf9, 0x010a54e3, 0xfed971f4, 0xfe3c4337, - 0xff7cb299, 0x00fe6f6c, 0x013705ed, 0x00313e3b, - 0xff312fcb, 0xff329573, 0xfffd49ce, 0x009dc132, - 0x007fa55d, 0xffec7e02, 0xff904243, 0xffb74b27, - 0x00199ec2, 0x0047dfa5, 0x0024584e, 0xffea01d9, - 0x267ad197, 0x138cb011, 0x00119bce, 0xf6caeefd, - 0xf9673ed7, 0x01019b00, 0x05496d4e, 0x03619994, - 0xfebed02a, 0xfc710edd, 0xfe1ec763, 0x0143eb3d, - 0x0280955d, 0x0105c78d, 0xfed62923, 0xfe3d3a2b, - 0xff801b71, 0x01006de7, 0x0135ea51, 0x002ec2d1, - 0xff30116a, 0xff33a583, 0xffff03ce, 0x009e4c50, - 0x007ebda5, 0xffeb5dba, 0xff901127, 0xffb7fc7b, - 0x001a4a26, 0x0047e0c9, 0x0023e03f, 0xffe9a9ea, - 0x265e9cdb, 0x13621226, 0xfff2d482, 0xf6c59c04, - 0xf97482e5, 0x010f8417, 0x054b7392, 0x03594471, - 0xfeb69c49, 0xfc70bd7d, 0xfe24d70f, 0x01491674, - 0x028002fc, 0x0101375a, 0xfed2e760, 0xfe3e3927, - 0xff83852d, 0x010266ab, 0x0134c960, 0x002c47aa, - 0xff2ef77c, 0xff34b8ea, 0x0000bcf7, 0x009ed428, - 0x007dd402, 0xffea3e76, 0xff8fe248, 0xffb8aec1, - 0x001af499, 0x0047e08b, 0x002367d9, 0xffe952b4, - 0x26423305, 0x13377319, 0xffd43904, 0xf6c07ae3, - 0xf981dac1, 0x011d5dc9, 0x054d5f26, 0x0350e432, - 0xfeae7310, 0xfc707d57, 0xfe2aeca8, 0x014e3911, - 0x027f64de, 0x00fca464, 0xfecfacb7, 0xfe3f4024, - 0xff86efbc, 0x010459b2, 0x0133a323, 0x0029ccd2, - 0xff2de201, 0xff35cfa2, 0x00027542, 0x009f58ba, - 0x007ce878, 0xffe9203c, 0xff8fb5a7, 0xffb961f6, - 0x001b9e18, 0x0047deeb, 0x0022ef1e, 0xffe8fc37, - 0x26259466, 0x130cd358, 0xffb5c98a, 0xf6bb8b7c, - 0xf98f461d, 0x012b27e3, 0x054f3012, 0x03487906, - 0xfea654a2, 0xfc704e65, 0xfe310810, 0x015352fd, - 0x027ebb0c, 0x00f80ec0, 0xfecc7934, 0xfe404f18, - 0xff8a5b0c, 0x010646f5, 0x013277a3, 0x00275255, - 0xff2cd0ff, 0xff36e9a4, 0x00042ca6, 0x009fda04, - 0x007bfb0f, 0xffe80311, 0xff8f8b43, 0xffba1616, - 0x001c46a1, 0x0047dbea, 0x00227611, 0xffe8a675, - 0x2608c14f, 0x12e23352, 0xff97864e, 0xf6b6cdad, - 0xf99cc4ac, 0x0138e230, 0x0550e65f, 0x0340031b, - 0xfe9e411e, 0xfc70309f, 0xfe372927, 0x01586424, - 0x027e058f, 0x00f37687, 0xfec94ce4, 0xfe4165fc, - 0xff8dc70c, 0x01082e6d, 0x013146e6, 0x0024d83e, - 0xff2bc477, 0xff3806e9, 0x0005e31d, 0x00a05806, - 0x007b0bcc, 0xffe6e6f9, 0xff8f631b, 0xffbacb1c, - 0x001cee31, 0x0047d788, 0x0021fcb6, 0xffe8516e, - 0x25ebba13, 0x12b79375, 0xff796f84, 0xf6b24158, - 0xf9aa5623, 0x01468c7e, 0x05528216, 0x0337829e, - 0xfe9638a4, 0xfc7023fb, 0xfe3d4fcd, 0x015d6c74, - 0x027d446f, 0x00eedbce, 0xfec627d2, 0xfe4284c7, - 0xff9133ad, 0x010a1015, 0x013010f5, 0x00225e99, - 0xff2abc6d, 0xff392769, 0x0007989d, 0x00a0d2bf, - 0x007a1ab3, 0xffe5cbf9, 0xff8f3d2f, 0xffbb8105, - 0x001d94c6, 0x0047d1c8, 0x0021830d, 0xffe7fd25, - 0x25ce7f04, 0x128cf430, 0xff5b8563, 0xf6ade659, - 0xf9b7fa33, 0x01542698, 0x05540342, 0x032ef7bd, - 0xfe8e3b55, 0xfc702872, 0xfe437be1, 0x01626bd7, - 0x027c77b5, 0x00ea3eae, 0xfec30a0a, 0xfe43ab6f, - 0xff94a0dd, 0x010bebe4, 0x012ed5d9, 0x001fe573, - 0xff29b8e4, 0xff3a4b1f, 0x00094d1f, 0x00a14a2e, - 0x007927cb, 0xffe4b216, 0xff8f197f, 0xffbc37cc, - 0x001e3a5c, 0x0047caaa, 0x0021091b, 0xffe7a99a, - 0x25b11076, 0x126255f0, 0xff3dc820, 0xf6a9bc91, - 0xf9c5b08f, 0x0161b04e, 0x055569ec, 0x032662a7, - 0xfe864950, 0xfc703dfb, 0xfe49ad44, 0x0167623a, - 0x027b9f6a, 0x00e59f3e, 0xfebff399, 0xfe44d9ec, - 0xff980e8b, 0x010dc1d6, 0x012d9599, 0x001d6cd6, - 0xff28b9df, 0xff3b7203, 0x000b009b, 0x00a1be54, - 0x00783319, 0xffe39955, 0xff8ef80a, 0xffbcef6e, - 0x001edef1, 0x0047c22e, 0x00208ee1, 0xffe756ce, - 0x25936ebb, 0x1237b924, 0xff2037f0, 0xf6a5c3dd, - 0xf9d378ea, 0x016f296d, 0x0556b61f, 0x031dc38a, - 0xfe7e62b4, 0xfc70648c, 0xfe4fe3d6, 0x016c4f8a, - 0x027abb98, 0x00e0fd94, 0xfebce489, 0xfe461034, - 0xff9b7ca8, 0x010f91e3, 0x012c503f, 0x001af4cf, - 0xff27bf5f, 0xff3c9c0d, 0x000cb30a, 0x00a22f2e, - 0x00773ca3, 0xffe281ba, 0xff8ed8cf, 0xffbda7e5, - 0x001f8283, 0x0047b858, 0x00201462, 0xffe704c3, - 0x25759a28, 0x120d1e39, 0xff02d506, 0xf6a1fc1a, - 0xf9e152f6, 0x017c91c3, 0x0557e7e7, 0x03151a95, - 0xfe7687a0, 0xfc709c1d, 0xfe561f77, 0x017133b4, - 0x0279cc48, 0x00dc59c8, 0xfeb9dce6, 0xfe474e3f, - 0xff9eeb21, 0x01115c06, 0x012b05d1, 0x00187d6a, - 0xff26c969, 0xff3dc937, 0x000e6463, 0x00a29cbd, - 0x0076446e, 0xffe16b4a, 0xff8ebbcd, 0xffbe6130, - 0x0020250f, 0x0047ad26, 0x001f99a2, 0xffe6b378, - 0x25579312, 0x11e2859c, 0xfee59f96, 0xf69e6525, - 0xf9ef3e67, 0x0189e91f, 0x0558ff50, 0x030c67f5, - 0xfe6eb833, 0xfc70e4a2, 0xfe5c6006, 0x01760ea4, - 0x0278d183, 0x00d7b3f1, 0xfeb6dcbb, 0xfe489402, - 0xffa259e7, 0x01132039, 0x0129b65a, 0x001606b1, - 0xff25d7fe, 0xff3ef97a, 0x001014a0, 0x00a30701, - 0x00754a80, 0xffe0560b, 0xff8ea104, 0xffbf1b48, - 0x0020c693, 0x0047a09b, 0x001f1ea1, 0xffe662f0, - 0x253959ce, 0x11b7efbd, 0xfec897d2, 0xf69afeda, - 0xf9fd3aef, 0x01972f51, 0x0559fc64, 0x0303abd9, - 0xfe66f48c, 0xfc713e14, 0xfe62a564, 0x017ae048, - 0x0277cb55, 0x00d30c26, 0xfeb3e414, 0xfe49e175, - 0xffa5c8e8, 0x0114de75, 0x012861e0, 0x001390b0, - 0xff24eb21, 0xff402ccd, 0x0011c3b8, 0x00a36df9, - 0x00744edf, 0xffdf4200, 0xff8e8873, 0xffbfd62a, - 0x0021670c, 0x004792b8, 0x001ea364, 0xffe6132b, - 0x251aeeb2, 0x118d5d07, 0xfeabbdec, 0xf697c914, - 0xfa0b4841, 0x01a46428, 0x055adf31, 0x02fae670, - 0xfe5f3cc8, 0xfc71a866, 0xfe68ef6f, 0x017fa88d, - 0x0276b9c6, 0x00ce627e, 0xfeb0f2fb, 0xfe4b368e, - 0xffa93815, 0x011696b6, 0x0127086f, 0x00111b73, - 0xff2402d4, 0xff41632b, 0x001371a3, 0x00a3d1a5, - 0x00735191, 0xffde2f2e, 0xff8e7219, 0xffc091d2, - 0x00220677, 0x0047837d, 0x001e27ed, 0xffe5c42b, - 0x24fc5213, 0x1162cde7, 0xfe8f1215, 0xf694c3ae, - 0xfa19660f, 0x01b18774, 0x055ba7c4, 0x02f217e9, - 0xfe579106, 0xfc72238e, 0xfe6f3e09, 0x01846761, - 0x02759ce1, 0x00c9b711, 0xfeae097a, 0xfe4c9342, - 0xffaca75c, 0x011848f5, 0x0125aa0d, 0x000ea706, - 0xff231f19, 0xff429c8b, 0x00151e5b, 0x00a43204, - 0x0072529b, 0xffdd1d9a, 0xff8e5df5, 0xffc14e3c, - 0x0022a4d3, 0x004772ed, 0x001dac3e, 0xffe575f0, - 0x24dd8449, 0x113842cc, 0xfe72947e, 0xf691ee83, - 0xfa27940b, 0x01be9906, 0x055c562a, 0x02e94071, - 0xfe4ff164, 0xfc72af83, 0xfe759111, 0x01891cb1, - 0x027474b2, 0x00c509f6, 0xfeab279e, 0xfe4df789, - 0xffb016ae, 0x0119f52c, 0x012446c3, 0x000c3374, - 0xff223ff3, 0xff43d8e6, 0x0016c9d7, 0x00a48f17, - 0x00715203, 0xffdc0d49, 0xff8e4c07, 0xffc20b64, - 0x0023421d, 0x00476108, 0x001d305a, 0xffe5287b, - 0x24be85ac, 0x110dbc21, 0xfe564557, 0xf68f496d, - 0xfa35d1e9, 0x01cb98af, 0x055cea71, 0x02e06039, - 0xfe485dfe, 0xfc734c37, 0xfe7be866, 0x018dc86c, - 0x02734141, 0x00c05b43, 0xfea84d6f, 0xfe4f6357, - 0xffb385f8, 0x011b9b58, 0x0122de9c, 0x0009c0c9, - 0xff216564, 0xff451834, 0x00187410, 0x00a4e8dd, - 0x00704fce, 0xffdafe3e, 0xff8e3c4d, 0xffc2c946, - 0x0023de52, 0x00474dd0, 0x001cb444, 0xffe4dbce, - 0x249f5692, 0x10e33a54, 0xfe3a24ce, 0xf68cd445, - 0xfa441f5a, 0x01d88640, 0x055d64a6, 0x02d7776e, - 0xfe40d6f2, 0xfc73f9a0, 0xfe8243e9, 0x01926a80, - 0x0272029b, 0x00bbab10, 0xfea57af9, 0xfe50d6a3, - 0xffb6f52c, 0x011d3b71, 0x0121719f, 0x00074f0f, - 0xff208f6e, 0xff465a6f, 0x001a1cff, 0x00a53f56, - 0x006f4c03, 0xffd9f07f, 0xff8e2ec7, 0xffc387dd, - 0x00247970, 0x00473946, 0x001c37fe, 0xffe48fe8, - 0x247ff754, 0x10b8bdd0, 0xfe1e3313, 0xf68a8ee3, - 0xfa527c12, 0x01e5618b, 0x055dc4d9, 0x02ce863f, - 0xfe395c5d, 0xfc74b7b3, 0xfe88a379, 0x019702da, - 0x0270b8ca, 0x00b6f975, 0xfea2b045, 0xfe525163, - 0xffba6438, 0x011ed574, 0x011fffd6, 0x0004de53, - 0xff1fbe12, 0xff479f8f, 0x001bc49c, 0x00a59283, - 0x006e46a8, 0xffd8e410, 0xff8e2373, 0xffc44725, - 0x00251375, 0x0047236b, 0x001bbb8b, 0xffe444cb, - 0x2460684b, 0x108e4702, 0xfe027053, 0xf688791f, - 0xfa60e7c2, 0x01f22a62, 0x055e0b19, 0x02c58cdb, - 0xfe31ee5b, 0xfc758662, 0xfe8f06f5, 0x019b916b, - 0x026f63da, 0x00b24688, 0xfe9fed5d, 0xfe53d38c, - 0xffbdd30c, 0x0120695b, 0x011e894a, 0x00026ea0, - 0xff1ef152, 0xff48e78c, 0x001d6ae0, 0x00a5e263, - 0x006d3fc2, 0xffd7d8f4, 0xff8e1a51, 0xffc5071b, - 0x0025ac5f, 0x00470c41, 0x001b3eed, 0xffe3fa79 + 0x27feb535, 0x21be8f19, 0x1288dff1, 0x028f5c07, + 0xf939801e, 0xf8bca44b, 0xfdbc844d, 0x02adac2d, + 0x03fa8824, 0x01d679f2, 0xfef18206, 0xfdbc9fe9, + 0xfea32bc9, 0x00502d7c, 0x013b1b06, 0x00ea2648, + 0x00000000, 0xff6388a9, 0xff739e69, 0xffe84c38, + 0x0043ee4c, 0x00499236, 0x00161876, 0xffe7b5b4, + 0xffdf82eb, 0xfff2e12e, 0x00066655, 0x000b4031, + 0x00055871, 0xfffffff3, 0x00000000, 0x00000000, + 0x27fe9ae7, 0x21a6c167, 0x1266b23b, 0x0274523d, + 0xf930129b, 0xf8c2fc7a, 0xfdc83594, 0x02b4748c, + 0x03f90297, 0x01d06695, 0xfeece4cc, 0xfdbc922c, + 0xfea658a8, 0x005325a5, 0x013ba1a4, 0x00e896c3, + 0xfffe3b09, 0xff62fe5f, 0xff744ec4, 0xffe940cb, + 0x00445238, 0x00494f99, 0x0015a3e0, 0xffe77c99, + 0xffdf971d, 0xfff3106b, 0x00067fef, 0x000b3b9a, + 0x0005493c, 0x00000000, 0x00000000, 0x00000000, + 0x27fe4bfb, 0x218ece64, 0x12448212, 0x0259651e, + 0xf926ca80, 0xf8c96b31, 0xfdd3e5ae, 0x02bb2ce0, + 0x03f76e71, 0x01ca5071, 0xfee84f27, 0xfdbc8d7d, + 0xfea9889f, 0x00561a51, 0x013c22e9, 0x00e704cc, + 0xfffc7785, 0xff627706, 0xff7500be, 0xffea34dc, + 0x0044b4aa, 0x00490c0e, 0x00152f6d, 0xffe74429, + 0xffdfabc3, 0xfff33fa2, 0x00069947, 0x000b36d6, + 0x00053a08, 0x00000000, 0x00000000, 0x00000000, + 0x27fdc874, 0x2176b648, 0x12224fbf, 0x023e94d5, + 0xf91da7c2, 0xf8cff045, 0xfddf946f, 0x02c1d51d, + 0x03f5cbc4, 0x01c437a1, 0xfee3c125, 0xfdbc91d4, + 0xfeacbb9e, 0x00590b78, 0x013c9ed8, 0x00e5706c, + 0xfffab57a, 0xff61f29e, 0xff75b454, 0xffeb2867, + 0x004515a1, 0x0048c798, 0x0014bb1e, 0xffe70c62, + 0xffdfc0da, 0xfff36ed2, 0x0006b25c, 0x000b31e6, + 0x00052ad7, 0x00000000, 0x00000000, 0x00000000, + 0x27fd1052, 0x215e794e, 0x12001b8d, 0x0223e18e, + 0xf914aa58, 0xf8d68b87, 0xfdeb41ad, 0x02c86d34, + 0x03f41aa1, 0x01be1c3d, 0xfedf3ad0, 0xfdbc9f2b, + 0xfeaff195, 0x005bf910, 0x013d1574, 0x00e3d9aa, + 0xfff8f4f0, 0xff617126, 0xff766981, 0xffec1b68, + 0x0045751e, 0x00488239, 0x001446f5, 0xffe6d546, + 0xffdfd663, 0xfff39dfc, 0x0006cb30, 0x000b2cca, + 0x00051ba6, 0x00000000, 0x00000000, 0x00000000, + 0x27fc2398, 0x214617ae, 0x11dde5c6, 0x02094b72, + 0xf90bd239, 0xf8dd3cca, 0xfdf6ed3c, 0x02cef51a, + 0x03f25b18, 0x01b7fe61, 0xfedabc37, 0xfdbcb57c, + 0xfeb32a77, 0x005ee30f, 0x013d86bd, 0x00e24090, + 0xfff735ea, 0xff60f29f, 0xff772041, 0xffed0ddc, + 0x0045d31f, 0x00483bf2, 0x0013d2f4, 0xffe69ed3, + 0xffdfec5b, 0xfff3cd1d, 0x0006e3c1, 0x000b2783, + 0x00050c78, 0x00000000, 0x00000000, 0x00000000, + 0x27fb0246, 0x212d91a3, 0x11bbaeb3, 0x01eed2ac, + 0xf9031f59, 0xf8e403e1, 0xfe0296f2, 0x02d56cc2, + 0x03f08d3d, 0x01b1de25, 0xfed64565, 0xfdbcd4c0, + 0xfeb66635, 0x0061c96e, 0x013df2b7, 0x00e0a524, + 0xfff57871, 0xff607706, 0xff77d88f, 0xffedffc0, + 0x00462fa6, 0x0047f4c5, 0x00135f1d, 0xffe6690b, + 0xffe002c3, 0xfff3fc35, 0x0006fc11, 0x000b2210, + 0x0004fd4d, 0x00000000, 0x00000000, 0x00000000, + 0x27f9ac61, 0x2114e766, 0x1199769e, 0x01d47766, + 0xf8fa91ae, 0xf8eae09e, 0xfe0e3ea4, 0x02dbd41f, + 0x03eeb11f, 0x01abbba4, 0xfed1d666, 0xfdbcfcef, + 0xfeb9a4be, 0x0064ac22, 0x013e5963, 0x00df0771, + 0xfff3bc89, 0xff5ffe5d, 0xff789268, 0xffeef111, + 0x00468ab2, 0x0047acb6, 0x0012eb72, 0xffe633ee, + 0xffe0199a, 0xfff42b43, 0x0007141d, 0x000b1c72, + 0x0004ee24, 0x00000000, 0x00000000, 0x00000000, + 0x27f821eb, 0x20fc1933, 0x11773dd2, 0x01ba39ca, + 0xf8f2292d, 0xf8f1d2d3, 0xfe19e427, 0x02e22b26, + 0x03ecc6d2, 0x01a596f8, 0xfecd6f46, 0xfdbd2e04, + 0xfebce604, 0x00678b22, 0x013ebac4, 0x00dd677d, + 0xfff20238, 0xff5f88a3, 0xff794dc7, 0xffefe1ca, + 0x0046e442, 0x004763c5, 0x001277f3, 0xffe5ff7c, + 0xffe030de, 0xfff45a47, 0x00072be7, 0x000b16a9, + 0x0004defe, 0x00000000, 0x00000000, 0x00000000, + 0x27f662e8, 0x20e32744, 0x11550498, 0x01a01a01, + 0xf8e9e5cb, 0xf8f8da52, 0xfe258751, 0x02e871ca, + 0x03eace67, 0x019f7039, 0xfec91012, 0xfdbd67f6, + 0xfec029f9, 0x006a6666, 0x013f16dc, 0x00dbc551, + 0xfff04984, 0xff5f15d6, 0xff7a0aa7, 0xfff0d1e8, + 0x00473c57, 0x004719f6, 0x001204a4, 0xffe5cbb4, + 0xffe0488f, 0xfff48940, 0x0007436f, 0x000b10b7, + 0x0004cfdb, 0x00000000, 0x00000000, 0x00000000, + 0x27f46f5c, 0x20ca11d5, 0x1132cb39, 0x01861832, + 0xf8e1c77b, 0xf8fff6ee, 0xfe3127f8, 0x02eea801, + 0x03e8c7f0, 0x01994783, 0xfec4b8d4, 0xfdbdaabf, + 0xfec3708d, 0x006d3de6, 0x013f6daf, 0x00da20f6, + 0xffee9273, 0xff5ea5f7, 0xff7ac905, 0xfff1c168, + 0x004792f0, 0x0046cf49, 0x00119186, 0xffe59898, + 0xffe060ab, 0xfff4b82d, 0x00075ab4, 0x000b0a9a, + 0x0004c0bc, 0x00000000, 0x00000000, 0x00000000, + 0x27f2474c, 0x20b0d921, 0x11109200, 0x016c3488, + 0xf8d9ce31, 0xf9072878, 0xfe3cc5f1, 0x02f4cdc0, + 0x03e6b380, 0x01931cee, 0xfec06999, 0xfdbdf657, + 0xfec6b9b1, 0x00701198, 0x013fbf3d, 0x00d87a75, + 0xffecdd0b, 0xff5e3905, 0xff7b88db, 0xfff2b047, + 0x0047e80f, 0x004683c2, 0x00111e9a, 0xffe56627, + 0xffe07932, 0xfff4e70c, 0x000771b6, 0x000b0454, + 0x0004b1a1, 0x00000000, 0x00000000, 0x00000000, + 0x27efeabe, 0x20977d64, 0x10ee5935, 0x01526f29, + 0xf8d1f9e0, 0xf90e6ec2, 0xfe486113, 0x02fae2fa, + 0x03e49129, 0x018cf095, 0xfebc226b, 0xfdbe4ab7, + 0xfeca0555, 0x0072e173, 0x01400b8b, 0x00d6d1d4, + 0xffeb2951, 0xff5dceff, 0xff7c4a26, 0xfff39e81, + 0x00483bb2, 0x00463762, 0x0010abe3, 0xffe53461, + 0xffe09223, 0xfff515df, 0x00078876, 0x000afde5, + 0x0004a289, 0x00000000, 0x00000000, 0x00000000, + 0x27ed59b7, 0x207dfeda, 0x10cc2121, 0x0138c83d, + 0xf8ca4a7d, 0xf915c99d, 0xfe53f935, 0x0300e7a7, + 0x03e260ff, 0x0186c290, 0xfeb7e356, 0xfdbea7d7, + 0xfecd536c, 0x0075ad70, 0x0140529b, 0x00d5271e, + 0xffe9774a, 0xff5d67e5, 0xff7d0ce1, 0xfff48c14, + 0x00488dd9, 0x0045ea2b, 0x00103961, 0xffe50346, + 0xffe0ab7c, 0xfff544a3, 0x00079ef2, 0x000af74d, + 0x00049376, 0x00000000, 0x00000000, 0x00000000, + 0x27ea943d, 0x20645dbf, 0x10a9ea0f, 0x011f3fec, + 0xf8c2bff8, 0xf91d38db, 0xfe5f8e2c, 0x0306dbbc, + 0x03e02313, 0x018092f9, 0xfeb3ac66, 0xfdbf0db0, + 0xfed0a3e6, 0x00787586, 0x0140946f, 0x00d37a59, + 0xffe7c6fe, 0xff5d03b5, 0xff7dd108, 0xfff578fb, + 0x0048de85, 0x00459c20, 0x000fc717, 0xffe4d2d7, + 0xffe0c53e, 0xfff57357, 0x0007b52c, 0x000af08c, + 0x00048468, 0x00000000, 0x00000000, 0x00000000, + 0x27e79a58, 0x204a9a51, 0x1087b447, 0x0105d65c, + 0xf8bb5a44, 0xf924bc4d, 0xfe6b1fd0, 0x030cbf2e, + 0x03ddd779, 0x017a61ea, 0xfeaf7da3, 0xfdbf7c39, + 0xfed3f6b4, 0x007b39ac, 0x0140d10a, 0x00d1cb90, + 0xffe61870, 0xff5ca270, 0xff7e9696, 0xfff66533, + 0x00492db6, 0x00454d42, 0x000f5507, 0xffe4a314, + 0xffe0df67, 0xfff5a1fc, 0x0007cb23, 0x000ae9a4, + 0x0004755e, 0x00000000, 0x00000000, 0x00000000, + 0x27e46c0e, 0x2030b4cb, 0x10658012, 0x00ec8bb4, + 0xf8b41954, 0xf92c53c5, 0xfe76adf7, 0x031291f3, + 0x03db7e44, 0x01742f7d, 0xfeab571b, 0xfdbff36b, + 0xfed74bc7, 0x007df9db, 0x01410870, 0x00d01ac9, + 0xffe46ba7, 0xff5c4413, 0xff7f5d86, 0xfff750ba, + 0x00497b6c, 0x0044fd94, 0x000ee331, 0xffe473fc, + 0xffe0f9f5, 0xfff5d090, 0x0007e0d7, 0x000ae294, + 0x0004665a, 0x00000000, 0x00000000, 0x00000000, + 0x27e10967, 0x2016ad6c, 0x10434dba, 0x00d36019, + 0xf8acfd18, 0xf933ff14, 0xfe823878, 0x03185404, + 0x03d91787, 0x016dfbca, 0xfea738d7, 0xfdc0733e, + 0xfedaa310, 0x0080b609, 0x01413aa4, 0x00ce680d, + 0xffe2c0a7, 0xff5be89f, 0xff8025d5, 0xfff83b8b, + 0x0049c7a7, 0x0044ad18, 0x000e7199, 0xffe44590, + 0xffe114e9, 0xfff5ff13, 0x0007f648, 0x000adb5d, + 0x0004575b, 0x00000000, 0x00000000, 0x00000000, + 0x27dd726b, 0x1ffc8470, 0x10211d86, 0x00ba53b2, + 0xf8a60581, 0xf93bbe0a, 0xfe8dbf2a, 0x031e0555, + 0x03d6a356, 0x0167c6eb, 0xfea322e1, 0xfdc0fbaa, + 0xfeddfc80, 0x00836e2f, 0x014167a8, 0x00ccb366, + 0xffe11777, 0xff5b9012, 0xff80ef7e, 0xfff925a5, + 0x004a1267, 0x00445bd1, 0x000e003f, 0xffe417cf, + 0xffe13041, 0xfff62d84, 0x00080b76, 0x000ad3fe, + 0x00044862, 0x00000000, 0x00000000, 0x00000000, + 0x27d9a724, 0x1fe23a17, 0x0ffeefc0, 0x00a166a3, + 0xf89f3281, 0xf9439079, 0xfe9941e5, 0x0323a5de, + 0x03d421c4, 0x016190fa, 0xfe9f1544, 0xfdc18ca6, + 0xfee15809, 0x00862245, 0x01418f80, 0x00cafcdb, + 0xffdf701c, 0xff5b3a6b, 0xff81ba7d, 0xfffa0f03, + 0x004a5bad, 0x004409bf, 0x000d8f25, 0xffe3eabb, + 0xffe14bfd, 0xfff65be2, 0x00082061, 0x000acc79, + 0x0004396e, 0x00000000, 0x00000000, 0x00000000, + 0x27d5a79a, 0x1fc7ce9d, 0x0fdcc4b0, 0x00889912, + 0xf8988407, 0xf94b7632, 0xfea4c080, 0x03293597, + 0x03d192e5, 0x015b5a0f, 0xfe9b100a, 0xfdc2262a, + 0xfee4b59a, 0x0088d244, 0x0141b22e, 0x00c94475, + 0xffddca9b, 0xff5ae7a9, 0xff8286cc, 0xfffaf7a2, + 0x004aa378, 0x0043b6e6, 0x000d1e4c, 0xffe3be52, + 0xffe1681a, 0xfff68a2c, 0x00083509, 0x000ac4ce, + 0x00042a81, 0x00000000, 0x00000000, 0x00000000, + 0x27d173d7, 0x1fad4241, 0x0fba9c9e, 0x006feb23, + 0xf891fa04, 0xf9536f05, 0xfeb03ad4, 0x032eb477, + 0x03cef6cd, 0x01552244, 0xfe97133e, 0xfdc2c82e, + 0xfee81526, 0x008b7e22, 0x0141cfb7, 0x00c78a3b, + 0xffdc26f9, 0xff5a97cc, 0xff835468, 0xfffbdf80, + 0x004ae9c9, 0x00436348, 0x000cadb7, 0xffe39295, + 0xffe18499, 0xfff6b862, 0x0008496e, 0x000abcfe, + 0x00041b9b, 0x00000000, 0x00000000, 0x00000000, + 0x27cd0be5, 0x1f929543, 0x0f9877d4, 0x00575cf9, + 0xf88b9467, 0xf95b7ac2, 0xfebbb0b7, 0x03342276, + 0x03cc4d90, 0x014ee9b1, 0xfe931ee7, 0xfdc372a8, + 0xfeeb769c, 0x008e25d9, 0x0141e81e, 0x00c5ce38, + 0xffda853b, 0xff5a4ad1, 0xff84234d, 0xfffcc699, + 0x004b2ea0, 0x00430ee6, 0x000c3d67, 0xffe36783, + 0xffe1a178, 0xfff6e683, 0x00085d8f, 0x000ab507, + 0x00040cbb, 0x00000000, 0x00000000, 0x00000000, + 0x27c86fd0, 0x1f77c7e0, 0x0f765698, 0x003eeeb9, + 0xf885531f, 0xf963993c, 0xfec72202, 0x03397f8c, + 0x03c99741, 0x0148b071, 0xfe8f3312, 0xfdc42591, + 0xfeeed9ef, 0x0090c961, 0x0141fb66, 0x00c41073, + 0xffd8e567, 0xff5a00b9, 0xff84f375, 0xfffdacea, + 0x004b71fd, 0x0042b9c3, 0x000bcd5e, 0xffe33d1d, + 0xffe1beb7, 0xfff7148e, 0x0008716e, 0x000aacec, + 0x0003fde2, 0x00000000, 0x00000000, 0x00000000, + 0x27c39fa2, 0x1f5cda58, 0x0f543934, 0x0026a085, + 0xf87f361c, 0xf96bca41, 0xfed28e8e, 0x033ecbb1, + 0x03c6d3f6, 0x0142769b, 0xfe8b4fc6, 0xfdc4e0df, + 0xfef23f0f, 0x009368b1, 0x01420993, 0x00c250f4, + 0xffd74782, 0xff59b981, 0xff85c4dc, 0xfffe9270, + 0x004bb3e1, 0x004263e1, 0x000b5d9d, 0xffe31363, + 0xffe1dc54, 0xfff74283, 0x0008850a, 0x000aa4ac, + 0x0003ef10, 0x00000000, 0x00000000, 0x00000000, + 0x27be9b68, 0x1f41cceb, 0x0f321fef, 0x000e7281, + 0xf8793d4c, 0xf9740da3, 0xfeddf632, 0x034406df, + 0x03c403c3, 0x013c3c49, 0xfe87750d, 0xfdc5a48a, + 0xfef5a5ee, 0x009603c4, 0x014212a8, 0x00c08fc4, + 0xffd5ab91, 0xff597528, 0xff86977e, 0xffff7729, + 0x004bf44c, 0x00420d43, 0x000aee25, 0xffe2ea55, + 0xffe1fa4f, 0xfff77061, 0x00089862, 0x000a9c48, + 0x0003e046, 0x00000000, 0x00000000, 0x00000000, + 0x27b9632c, 0x1f269fd8, 0x0f100b11, 0xfff664cf, + 0xf873689c, 0xf97c6331, 0xfee958c9, 0x0349310e, + 0x03c126bc, 0x01360194, 0xfe83a2f1, 0xfdc67088, + 0xfef90e7c, 0x00989a91, 0x014216a9, 0x00becceb, + 0xffd41199, 0xff5933ae, 0xff876b56, 0x00005b10, + 0x004c333e, 0x0041b5ea, 0x000a7ef9, 0xffe2c1f2, + 0xffe218a6, 0xfff79e27, 0x0008ab78, 0x000a93c0, + 0x0003d183, 0x00000000, 0x00000000, 0x00000000, + 0x27b3f6fd, 0x1f0b535f, 0x0eedfae2, 0xffde7791, + 0xf86db7fb, 0xf984cabc, 0xfef4b629, 0x034e4a37, + 0x03be3cf6, 0x012fc694, 0xfe7fd97a, 0xfdc744d0, + 0xfefc78ab, 0x009b2d11, 0x0142159a, 0x00bd0873, + 0xffd2799e, 0xff58f510, 0xff884060, 0x00013e24, + 0x004c70b8, 0x00415dd8, 0x000a1019, 0xffe29a3b, + 0xffe23759, 0xfff7cbd4, 0x0008be4b, 0x000a8b14, + 0x0003c2c8, 0x00000000, 0x00000000, 0x00000000, + 0x27ae56e7, 0x1eefe7c1, 0x0ecbefa8, 0xffc6aae9, + 0xf8682b56, 0xf98d4414, 0xff000e2d, 0x03535254, + 0x03bb4686, 0x01298b63, 0xfe7c18b1, 0xfdc8215a, + 0xfeffe46c, 0x009dbb3c, 0x01420f7f, 0x00bb4263, + 0xffd0e3a6, 0xff58b94e, 0xff891698, 0x00022060, + 0x004cacba, 0x00410511, 0x0009a189, 0xffe2732f, + 0xffe25666, 0xfff7f968, 0x0008d0da, 0x000a8245, + 0x0003b416, 0x00000000, 0x00000000, 0x00000000, + 0x27a882f8, 0x1ed45d3d, 0x0ea9e9ac, 0xffaefef7, + 0xf862c29a, 0xf995cf09, 0xff0b60ae, 0x0358495f, + 0x03b84380, 0x01235019, 0xfe7860a0, 0xfdc9061c, + 0xff0351af, 0x00a0450d, 0x0142045b, 0x00b97ac4, + 0xffcf4fb7, 0xff588066, 0xff89edf8, 0x000301c3, + 0x004ce744, 0x0040ab95, 0x00093348, 0xffe24cce, + 0xffe275cd, 0xfff826e2, 0x0008e327, 0x000a7953, + 0x0003a56c, 0x00000000, 0x00000000, 0x00000000, + 0x27a27b3e, 0x1eb8b416, 0x0e87e935, 0xff9773dd, + 0xf85d7db3, 0xf99e6b6c, 0xff16ad85, 0x035d2f51, + 0x03b533fa, 0x011d14ce, 0xfe74b14e, 0xfdc9f30c, + 0xff06c067, 0x00a2ca7b, 0x0141f433, 0x00b7b19e, + 0xffcdbdd3, 0xff584a56, 0xff8ac67c, 0x0003e249, + 0x004d2057, 0x00405168, 0x0008c558, 0xffe22719, + 0xffe2958c, 0xfff85441, 0x0008f530, 0x000a703f, + 0x000396cb, 0x00000000, 0x00000000, 0x00000000, + 0x279c3fc8, 0x1e9cec8b, 0x0e65ee8a, 0xff8009bb, + 0xf8585c8f, 0xf9a7190b, 0xff21f48b, 0x03620425, + 0x03b2180a, 0x0116d99c, 0xfe710ac3, 0xfdcae821, + 0xff0a3083, 0x00a54b7f, 0x0141df0a, 0x00b5e6fa, + 0xffcc2e01, 0xff58171d, 0xff8ba020, 0x0004c1ef, + 0x004d57f3, 0x003ff68b, 0x000857bc, 0xffe2020f, + 0xffe2b5a4, 0xfff88186, 0x000906f7, 0x000a6709, + 0x00038832, 0x00000000, 0x00000000, 0x00000000, + 0x2795d0a6, 0x1e8106de, 0x0e43f9f1, 0xff68c0b1, + 0xf8535f1a, 0xf9afd7b7, 0xff2d359c, 0x0366c7d6, + 0x03aeefc4, 0x01109e9a, 0xfe6d6d09, 0xfdcbe551, + 0xff0da1f7, 0x00a7c814, 0x0141c4e4, 0x00b41ae0, + 0xffcaa045, 0xff57e6ba, 0xff8c7adf, 0x0005a0b3, + 0x004d8e1a, 0x003f9b01, 0x0007ea74, 0xffe1ddb0, + 0xffe2d612, 0xfff8aeae, 0x0009187b, 0x000a5db1, + 0x000379a3, 0x00000000, 0x00000000, 0x00000000, + 0x278f2de6, 0x1e650351, 0x0e220bb1, 0xff5198df, + 0xf84e853e, 0xf9b8a740, 0xff387090, 0x036b7a5e, + 0x03abbb3d, 0x010a63e2, 0xfe69d827, 0xfdccea93, + 0xff1114b2, 0x00aa4031, 0x0141a5c7, 0x00b24d59, + 0xffc914a4, 0xff57b92b, 0xff8d56b5, 0x00067e92, + 0x004dc2ca, 0x003f3ecc, 0x00077d83, 0xffe1b9fb, + 0xffe2f6d5, 0xfff8dbba, 0x000929bc, 0x000a5438, + 0x00036b1d, 0x00000000, 0x00000000, 0x00000000, + 0x27885799, 0x1e48e224, 0x0e002412, 0xff3a9263, + 0xf849cee7, 0xf9c18775, 0xff43a543, 0x03701bb9, + 0x03a87a8c, 0x0104298b, 0xfe664c25, 0xfdcdf7dc, + 0xff1488a6, 0x00acb3d1, 0x014181b5, 0x00b07e6c, + 0xffc78b22, 0xff578e6d, 0xff8e339d, 0x00075b88, + 0x004df606, 0x003ee1ee, 0x000710e8, 0xffe196f2, + 0xffe317ee, 0xfff908a8, 0x00093abb, 0x000a4a9e, + 0x00035ca1, 0x00000000, 0x00000000, 0x00000000, + 0x27814dcf, 0x1e2ca39b, 0x0dde4359, 0xff23ad5d, + 0xf8453c00, 0xf9ca7826, 0xff4ed38e, 0x0374abe2, + 0x03a52dc7, 0x00fdefad, 0xfe62c90b, 0xfdcf0d24, + 0xff17fdc4, 0x00af22ed, 0x014158b4, 0x00aeae24, + 0xffc603c4, 0xff576681, 0xff8f1193, 0x00083794, + 0x004e27cd, 0x003e8469, 0x0006a4a7, 0xffe17493, + 0xffe3395a, 0xfff93578, 0x00094b77, 0x000a40e3, + 0x00034e2e, 0x00000000, 0x00000000, 0x00000000, + 0x277a109b, 0x1e1047f7, 0x0dbc69cd, 0xff0ce9eb, + 0xf840cc74, 0xf9d37923, 0xff59fb4c, 0x03792ad4, + 0x03a1d502, 0x00f7b662, 0xfe5f4ee0, 0xfdd02a5e, + 0xff1b73fd, 0x00b18d7e, 0x01412ac7, 0x00acdc88, + 0xffc47e8f, 0xff574163, 0xff8ff092, 0x000912b1, + 0x004e5820, 0x003e2640, 0x000638c0, 0xffe152de, + 0xffe35b19, 0xfff9622a, 0x00095bf0, 0x000a3709, + 0x00033fc6, 0x00000000, 0x00000000, 0x00000000, + 0x2772a00c, 0x1df3cf7b, 0x0d9a97b4, 0xfef6482b, + 0xf83c802c, 0xf9dc8a3a, 0xff651c59, 0x037d988b, + 0x039e7054, 0x00f17dc1, 0xfe5bddac, 0xfdd14f83, + 0xff1eeb43, 0x00b3f37e, 0x0140f7f4, 0x00ab09a0, + 0xffc2fb87, 0xff571f13, 0xff90d096, 0x0009ecdf, + 0x004e8700, 0x003dc775, 0x0005cd35, 0xffe131d4, + 0xffe37d2a, 0xfff98ebd, 0x00096c26, 0x000a2d0e, + 0x00033168, 0x00000000, 0x00000000, 0x00000000, + 0x276afc36, 0x1dd73a6a, 0x0d78cd54, 0xfedfc83a, + 0xf8385714, 0xf9e5ab3d, 0xff70368f, 0x0381f504, + 0x039affd4, 0x00eb45e1, 0xfe587576, 0xfdd27c87, + 0xff226388, 0x00b654e7, 0x0140c03e, 0x00a93575, + 0xffc17ab0, 0xff56ff8e, 0xff91b199, 0x000ac619, + 0x004eb46d, 0x003d6809, 0x00056208, 0xffe11173, + 0xffe39f8b, 0xfff9bb30, 0x00097c1a, 0x000a22f5, + 0x00032314, 0x00000000, 0x00000000, 0x00000000, + 0x2763252c, 0x1dba8906, 0x0d570af2, 0xfec96a36, + 0xf8345114, 0xf9eedbf9, 0xff7b49c9, 0x0386403b, + 0x03978396, 0x00e50edc, 0xfe551645, 0xfdd3b160, + 0xff25dcbc, 0x00b8b1b2, 0x014083aa, 0x00a7600f, + 0xffbffc0f, 0xff56e2d2, 0xff929399, 0x000b9e5e, + 0x004ee067, 0x003d0800, 0x0004f739, 0xffe0f1bd, + 0xffe3c23d, 0xfff9e782, 0x00098bcc, 0x000a18bc, + 0x000314cb, 0x00000000, 0x00000000, 0x00000000, + 0x275b1aff, 0x1d9dbb92, 0x0d3550d5, 0xfeb32e3b, + 0xf8306e15, 0xf9f81c3f, 0xff8655e4, 0x038a7a2c, + 0x0393fbb2, 0x00ded8c9, 0xfe51c020, 0xfdd4ee04, + 0xff2956d0, 0x00bb09d9, 0x0140423e, 0x00a58977, + 0xffbe7fa8, 0xff56c8de, 0xff93768f, 0x000c75aa, + 0x004f0af1, 0x003ca75b, 0x00048cca, 0xffe0d2b0, + 0xffe3e53d, 0xfffa13b3, 0x00099b3b, 0x000a0e64, + 0x0003068d, 0x00000000, 0x00000000, 0x00000000, + 0x2752ddc4, 0x1d80d252, 0x0d139f41, 0xfe9d1465, + 0xf82cae01, 0xfa016bde, 0xff915abb, 0x038ea2d6, + 0x0390683e, 0x00d8a3c0, 0xfe4e730f, 0xfdd63267, + 0xff2cd1b7, 0x00bd5d56, 0x013ffbfc, 0x00a3b1b6, + 0xffbd0580, 0xff56b1b0, 0xff945a78, 0x000d4bfb, + 0x004f3409, 0x003c461c, 0x000422bd, 0xffe0b44c, + 0xffe4088b, 0xfffa3fc3, 0x0009aa68, 0x000a03ef, + 0x0002f85a, 0x00000000, 0x00000000, 0x00000000, + 0x274a6d8f, 0x1d63cd89, 0x0cf1f67c, 0xfe871cd1, + 0xf82910c1, 0xfa0acaa4, 0xff9c5829, 0x0392ba34, + 0x038cc951, 0x00d26fd8, 0xfe4b2f17, 0xfdd77e81, + 0xff304d62, 0x00bfac24, 0x013fb0eb, 0x00a1d8d3, + 0xffbb8d9b, 0xff569d45, 0xff953f4f, 0x000e214e, + 0x004f5bb1, 0x003be447, 0x0003b912, 0xffe09691, + 0xffe42c26, 0xfffa6bb0, 0x0009b953, 0x0009f95c, + 0x0002ea33, 0x00000000, 0x00000000, 0x00000000, + 0x2741ca74, 0x1d46ad7b, 0x0cd056cb, 0xfe71479a, + 0xf825963b, 0xfa143862, 0xffa74e0b, 0x0396c044, + 0x03891f01, 0x00cc3d29, 0xfe47f43f, 0xfdd8d245, + 0xff33c9c2, 0x00c1f63c, 0x013f610f, 0x009ffed7, + 0xffba17fd, 0xff568b9c, 0xff96250f, 0x000ef5a1, + 0x004f81ea, 0x003b81dd, 0x00034fcc, 0xffe07980, + 0xffe4500d, 0xfffa977a, 0x0009c7fb, 0x0009eeab, + 0x0002dc17, 0x00000000, 0x00000000, 0x00000000, + 0x2738f489, 0x1d29726c, 0x0caec072, 0xfe5b94da, + 0xf8223e59, 0xfa1db4e6, 0xffb23c3e, 0x039ab505, + 0x03856964, 0x00c60bcb, 0xfe44c28d, 0xfdda2daa, + 0xff3746c8, 0x00c43b99, 0x013f0c6d, 0x009e23cb, + 0xffb8a4aa, 0xff567cb3, 0xff970bb5, 0x000fc8f0, + 0x004fa6b5, 0x003b1ee0, 0x0002e6ec, 0xffe05d17, + 0xffe4743e, 0xfffac321, 0x0009d662, 0x0009e3dd, + 0x0002ce07, 0x00000000, 0x00000000, 0x00000000, + 0x272febe2, 0x1d0c1ca0, 0x0c8d33b7, 0xfe4604ad, + 0xf81f0901, 0xfa274000, 0xffbd229e, 0x039e9874, + 0x0381a893, 0x00bfdbd5, 0xfe419a08, 0xfddb90a3, + 0xff3ac467, 0x00c67c34, 0x013eb30a, 0x009c47b6, + 0xffb733a6, 0xff567088, 0xff97f33a, 0x00109b3b, + 0x004fca12, 0x003abb53, 0x00027e72, 0xffe04156, + 0xffe498ba, 0xfffaeea4, 0x0009e487, 0x0009d8f2, + 0x0002c003, 0x00000000, 0x00000000, 0x00000000, + 0x2726b097, 0x1ceeac5c, 0x0c6bb0de, 0xfe30972d, + 0xf81bf61c, 0xfa30d97f, 0xffc80108, 0x03a26a8f, + 0x037ddca3, 0x00b9ad5f, 0xfe3e7ab5, 0xfddcfb27, + 0xff3e4290, 0x00c8b809, 0x013e54ea, 0x009a6aa2, + 0xffb5c4f5, 0xff566719, 0xff98db9c, 0x00116c7e, + 0x004fec01, 0x003a5737, 0x00021661, 0xffe0263e, + 0xffe4bd7e, 0xfffb1a01, 0x0009f26a, 0x0009cdeb, + 0x0002b20b, 0x00000000, 0x00000000, 0x00000000, + 0x271d42bc, 0x1cd121e3, 0x0c4a382b, 0xfe1b4c73, + 0xf819058f, 0xfa3a8132, 0xffd2d759, 0x03a62b55, + 0x037a05ab, 0x00b38080, 0xfe3b649b, 0xfdde6d2a, + 0xff41c133, 0x00caef11, 0x013df214, 0x00988c97, + 0xffb4589c, 0xff566062, 0xff99c4d5, 0x00123cb6, + 0x00500c85, 0x0039f290, 0x0001aeba, 0xffe00bcd, + 0xffe4e28b, 0xfffb453a, 0x000a000c, 0x0009c2c8, + 0x0002a41f, 0x00000000, 0x00000000, 0x00000000, + 0x2713a26a, 0x1cb37d7c, 0x0c28c9e2, 0xfe062499, + 0xf8163742, 0xfa4436e7, 0xffdda56e, 0x03a9dac4, + 0x037623c4, 0x00ad554e, 0xfe3857bf, 0xfddfe6a2, + 0xff454044, 0x00cd2148, 0x013d8a8c, 0x0096ad9c, + 0xffb2ee9e, 0xff565c64, 0xff9aaee1, 0x00130be1, + 0x00502b9c, 0x00398d5f, 0x0001477d, 0xffdff204, + 0xffe507de, 0xfffb704c, 0x000a0d6b, 0x0009b78a, + 0x00029640, 0x00000000, 0x00000000, 0x00000000, + 0x2709cfb8, 0x1c95bf6a, 0x0c076648, 0xfdf11fb8, + 0xf8138b1a, 0xfa4dfa6f, 0xffe86b25, 0x03ad78dd, + 0x03723703, 0x00a72be2, 0xfe355426, 0xfde16782, + 0xff48bfb4, 0x00cf4ea9, 0x013d1e57, 0x0094cdbb, + 0xffb186ff, 0xff565b1a, 0xff9b99bb, 0x0013d9fe, + 0x0050494a, 0x003927a6, 0x0000e0ad, 0xffdfd8e2, + 0xffe52d77, 0xfffb9b39, 0x000a1a8a, 0x0009ac30, + 0x0002886e, 0x00000000, 0x00000000, 0x00000000, + 0x26ffcabc, 0x1c77e7f3, 0x0be60d9f, 0xfddc3de8, + 0xf81100fe, 0xfa57cb98, 0xfff3285b, 0x03b1059d, + 0x036e3f81, 0x00a10453, 0xfe3259d6, 0xfde2efc0, + 0xff4c3f74, 0x00d1772d, 0x013cad7b, 0x0092ecfb, + 0xffb021c4, 0xff565c83, 0xff9c855f, 0x0014a708, + 0x0050658e, 0x0038c169, 0x00007a4a, 0xffdfc067, + 0xffe55356, 0xfffbc5fe, 0x000a2767, 0x0009a0bc, + 0x00027aa8, 0x00000000, 0x00000000, 0x00000000, + 0x26f59391, 0x1c59f75d, 0x0bc4c02b, 0xfdc77f42, + 0xf80e98d4, 0xfa61aa31, 0xfffddcef, 0x03b48105, + 0x036a3d56, 0x009adeb6, 0xfe2f68d5, 0xfde47f50, + 0xff4fbf75, 0x00d39acf, 0x013c37fc, 0x00910b66, + 0xffaebeef, 0xff56609c, 0xff9d71c8, 0x001572fe, + 0x00508069, 0x00385aa8, 0x00001457, 0xffdfa892, + 0xffe57978, 0xfffbf09b, 0x000a3403, 0x0009952e, + 0x00026cf0, 0x00000000, 0x00000000, 0x00000000, + 0x26eb2a4f, 0x1c3bedec, 0x0ba37e30, 0xfdb2e3dc, + 0xf80c5280, 0xfa6b9608, 0x000888be, 0x03b7eb15, + 0x03663097, 0x0094bb24, 0xfe2c8126, 0xfde61627, + 0xff533fab, 0x00d5b98c, 0x013bbde1, 0x008f2903, + 0xffad5e84, 0xff566764, 0xff9e5ef2, 0x00163dde, + 0x005099dc, 0x0037f367, 0xffffaed3, 0xffdf9164, + 0xffe59fdd, 0xfffc1b10, 0x000a405e, 0x00098985, + 0x00025f45, 0x00000000, 0x00000000, 0x00000000, + 0x26e08f0f, 0x1c1dcbe7, 0x0b8247f0, 0xfd9e6bcf, + 0xf80a2de7, 0xfa758eee, 0x00132ba7, 0x03bb43cc, + 0x0362195e, 0x008e99b2, 0xfe29a2d0, 0xfde7b439, + 0xff56c006, 0x00d7d35d, 0x013b3f2e, 0x008d45da, + 0xffac0088, 0xff5670d8, 0xff9f4cd8, 0x001707a6, + 0x0050b1e8, 0x00378ba7, 0xffff49c0, 0xffdf7adc, + 0xffe5c684, 0xfffc455d, 0x000a4c78, 0x00097dc3, + 0x000251a8, 0x00000000, 0x00000000, 0x00000000, + 0x26d5c1ea, 0x1bff9193, 0x0b611daf, 0xfd8a1732, + 0xf8082aef, 0xfa7f94b1, 0x001dc589, 0x03be8b2b, + 0x035df7c1, 0x00887a78, 0xfe26cdd6, 0xfde9597b, + 0xff5a4079, 0x00d9e83e, 0x013abbe9, 0x008b61f5, + 0xffaaa4fe, 0xff567cf5, 0xffa03b76, 0x0017d052, + 0x0050c88f, 0x0037236a, 0xfffee520, 0xffdf64f9, + 0xffe5ed6c, 0xfffc6f80, 0x000a5851, 0x000971e7, + 0x00024419, 0x00000000, 0x00000000, 0x00000000, + 0x26cac2fb, 0x1be13f36, 0x0b3fffae, 0xfd75e61a, + 0xf806497c, 0xfa89a71f, 0x00285643, 0x03c1c133, + 0x0359cbd9, 0x00825d8c, 0xfe24023e, 0xfdeb05e1, + 0xff5dc0f5, 0x00dbf82b, 0x013a3418, 0x00897d5a, + 0xffa94be9, 0xff568bb9, 0xffa12ac7, 0x001897e1, + 0x0050ddd0, 0x0036bab4, 0xfffe80f4, 0xffdf4fbb, + 0xffe61494, 0xfffc9979, 0x000a63ea, 0x000965f3, + 0x00023697, 0x00000000, 0x00000000, 0x00000000, + 0x26bf925e, 0x1bc2d518, 0x0b1eee31, 0xfd61d89d, + 0xf8048971, 0xfa93c608, 0x0032ddb3, 0x03c4e5e4, + 0x035595be, 0x007c4305, 0xfe21400c, 0xfdecb95f, + 0xff61416c, 0x00de031d, 0x0139a7c0, 0x00879814, + 0xffa7f54d, 0xff569d22, 0xffa21ac7, 0x00195e50, + 0x0050f1ae, 0x00365186, 0xfffe1d3d, 0xffdf3b22, + 0xffe63bfb, 0xfffcc348, 0x000a6f42, 0x000959e6, + 0x00022924, 0x00000000, 0x00000000, 0x00000000, + 0x26b4302c, 0x1ba4537d, 0x0afde97a, 0xfd4deed2, + 0xf802eab2, 0xfa9df13b, 0x003d5bba, 0x03c7f93f, + 0x03515587, 0x00762af8, 0xfe1e8744, 0xfdee73e9, + 0xff64c1d1, 0x00e00912, 0x013916e8, 0x0085b229, + 0xffa6a12e, 0xff56b12c, 0xffa30b71, 0x001a239e, + 0x00510428, 0x0035e7e3, 0xfffdb9fc, 0xffdf272d, + 0xffe6639f, 0xfffcecec, 0x000a7a59, 0x00094dc1, + 0x00021bbe, 0x00000000, 0x00000000, 0x00000000, + 0x26a89c81, 0x1b85baad, 0x0adcf1ca, 0xfd3a28ce, + 0xf8016d23, 0xfaa82887, 0x0047d036, 0x03cafb46, + 0x034d0b4d, 0x0070157d, 0xfe1bd7ea, 0xfdf03573, + 0xff684214, 0x00e20a04, 0x01388193, 0x0083cba2, + 0xffa54f8f, 0xff56c7d7, 0xffa3fcc1, 0x001ae7c8, + 0x00511541, 0x00357dcc, 0xfffd5732, 0xffdf13dd, + 0xffe68b81, 0xfffd1665, 0x000a8531, 0x00094184, + 0x00020e67, 0x00000000, 0x00000000, 0x00000000, + 0x269cd77b, 0x1b670aee, 0x0abc0763, 0xfd2686a4, + 0xf80010a7, 0xfab26bba, 0x00523b07, 0x03cdebfb, + 0x0348b728, 0x006a02a9, 0xfe193202, 0xfdf1fdf2, + 0xff6bc229, 0x00e405f0, 0x0137e7c9, 0x0081e488, + 0xffa40073, 0xff56e11e, 0xffa4eeb2, 0x001baacb, + 0x005124f9, 0x00351344, 0xfffcf4e1, 0xffdf0130, + 0xffe6b39f, 0xfffd3fb2, 0x000a8fc8, 0x00093530, + 0x0002011f, 0x00000000, 0x00000000, 0x00000000, + 0x2690e135, 0x1b484488, 0x0a9b2a87, 0xfd13086a, + 0xf7fed521, 0xfabcbaa3, 0x005c9c0e, 0x03d0cb5e, + 0x03445930, 0x0063f292, 0xfe169590, 0xfdf3cd59, + 0xff6f4201, 0x00e5fccf, 0x01374990, 0x007ffce2, + 0xffa2b3de, 0xff56fcff, 0xffa5e13f, 0x001c6ca7, + 0x00513350, 0x0034a84d, 0xfffc930a, 0xffdeef26, + 0xffe6dbf8, 0xfffd68d2, 0x000a9a20, 0x000928c5, + 0x0001f3e6, 0x00000000, 0x00000000, 0x00000000, + 0x2684b9cc, 0x1b2967c0, 0x0a7a5b77, 0xfcffae33, + 0xf7fdba73, 0xfac71512, 0x0066f32a, 0x03d39973, + 0x033ff17d, 0x005de54f, 0xfe140298, 0xfdf5a39c, + 0xff72c18f, 0x00e7eea0, 0x0136a6ec, 0x007e14b8, + 0xffa169d2, 0xff571b78, 0xffa6d465, 0x001d2d58, + 0x0051404a, 0x00343cea, 0xfffc31ad, 0xffdeddbf, + 0xffe7048b, 0xfffd91c5, 0x000aa438, 0x00091c43, + 0x0001e6bb, 0x00000000, 0x00000000, 0x00000000, + 0x2678615e, 0x1b0a74e0, 0x0a599a74, 0xfcec7813, + 0xf7fcc07f, 0xfad17ad5, 0x0071403d, 0x03d6563c, + 0x033b8028, 0x0057daf5, 0xfe11791c, 0xfdf780ae, + 0xff7640c4, 0x00e9db5d, 0x0135ffe4, 0x007c2c14, + 0xffa02254, 0xff573c86, 0xffa7c81f, 0x001decdc, + 0x00514be5, 0x0033d11c, 0xfffbd0cc, 0xffdeccfa, + 0xffe72d57, 0xfffdba8b, 0x000aae11, 0x00090fac, + 0x0001d9a0, 0x00000000, 0x00000000, 0x00000000, + 0x266bd808, 0x1aeb6c2d, 0x0a38e7bf, 0xfcd9661d, + 0xf7fbe727, 0xfadbebbb, 0x007b8327, 0x03d901bb, + 0x03370549, 0x0051d39a, 0xfe0ef921, 0xfdf96484, + 0xff79bf93, 0x00ebc302, 0x0135547e, 0x007a42fd, + 0xff9edd67, 0xff576027, 0xffa8bc68, 0x001eab32, + 0x00515625, 0x003364e6, 0xfffb7069, 0xffdebcd7, + 0xffe7565b, 0xfffde323, 0x000ab7aa, 0x000902fe, + 0x0001cc94, 0x00000000, 0x00000000, 0x00000000, + 0x265f1dea, 0x1acc4df0, 0x0a184398, 0xfcc67863, + 0xf7fb2e4e, 0xfae66794, 0x0085bbc9, 0x03db9bf3, + 0x033280f9, 0x004bcf53, 0xfe0c82aa, 0xfdfb4f11, + 0xff7d3ded, 0x00eda58c, 0x0134a4c0, 0x0078597a, + 0xff9d9b0d, 0xff578657, 0xffa9b13c, 0x001f6858, + 0x00515f09, 0x0032f84a, 0xfffb1083, 0xffdead56, + 0xffe77f96, 0xfffe0b8c, 0x000ac104, 0x0008f63b, + 0x0001bf97, 0x00000000, 0x00000000, 0x00000000, + 0x26523322, 0x1aad1a6f, 0x09f7ae3f, 0xfcb3aef8, + 0xf7fa95d4, 0xfaf0ee2d, 0x008fea04, 0x03de24e8, + 0x032df350, 0x0045ce37, 0xfe0a15b8, 0xfdfd4049, + 0xff80bbc6, 0x00ef82f6, 0x0133f0b1, 0x00766f95, + 0xff9c5b49, 0xff57af13, 0xffaaa696, 0x0020244b, + 0x00516693, 0x00328b4b, 0xfffab11d, 0xffde9e75, + 0xffe7a907, 0xfffe33c7, 0x000aca1f, 0x0008e963, + 0x0001b2aa, 0x00000000, 0x00000000, 0x00000000, + 0x264517cf, 0x1a8dd1f4, 0x09d727f5, 0xfca109ee, + 0xf7fa1d9a, 0xfafb7f56, 0x009a0dba, 0x03e09c9c, + 0x03295c68, 0x003fd05a, 0xfe07b251, 0xfdff381f, + 0xff843910, 0x00f15b3e, 0x01333855, 0x00748556, + 0xff9b1e20, 0xff57da5a, 0xffab9c73, 0x0020df09, + 0x00516cc4, 0x00321dea, 0xfffa5237, 0xffde9035, + 0xffe7d2ad, 0xfffe5bd2, 0x000ad2fb, 0x0008dc76, + 0x0001a5cd, 0x00000000, 0x00000000, 0x00000000, + 0x2637cc12, 0x1a6e74c5, 0x09b6b0fa, 0xfc8e8955, + 0xf7f9c582, 0xfb061adf, 0x00a426cd, 0x03e30313, + 0x0324bc58, 0x0039d5d3, 0xfe055875, 0xfe013687, + 0xff87b5bd, 0x00f32e5e, 0x01327bb4, 0x00729ac4, + 0xff99e393, 0xff580828, 0xffac92cc, 0x00219891, + 0x0051719d, 0x0031b029, 0xfff9f3d2, 0xffde8295, + 0xffe7fc87, 0xfffe83ad, 0x000adb98, 0x0008cf75, + 0x000198ff, 0x00000000, 0x00000000, 0x00000000, + 0x262a500a, 0x1a4f032b, 0x0996498c, 0xfc7c2d3f, + 0xf7f98d6b, 0xfb10c095, 0x00ae351e, 0x03e55851, + 0x0320133a, 0x0033deb5, 0xfe030828, 0xfe033b73, + 0xff8b31bf, 0x00f4fc54, 0x0131bad3, 0x0070afe8, + 0xff98aba5, 0xff58387a, 0xffad899f, 0x002250e1, + 0x00517520, 0x0031420c, 0xfff995f0, 0xffde7594, + 0xffe82694, 0xfffeab58, 0x000ae3f8, 0x0008c260, + 0x00018c42, 0x00000000, 0x00000000, 0x00000000, + 0x261ca3d8, 0x1a2f7d6e, 0x0975f1ec, 0xfc69f5bc, + 0xf7f97536, 0xfb1b7048, 0x00b83890, 0x03e79c5a, + 0x031b6127, 0x002deb17, 0xfe00c16c, 0xfe0546d7, + 0xff8ead09, 0x00f6c51c, 0x0130f5b9, 0x006ec4c9, + 0xff97765a, 0xff586b4d, 0xffae80e6, 0x002307f6, + 0x0051774d, 0x0030d394, 0xfff93892, 0xffde6933, + 0xffe850d3, 0xfffed2d2, 0x000aec19, 0x0008b538, + 0x00017f95, 0x00000000, 0x00000000, 0x00000000, + 0x260ec79d, 0x1a0fe3d7, 0x0955aa58, 0xfc57e2dc, + 0xf7f97cc2, 0xfb2629c7, 0x00c23105, 0x03e9cf33, + 0x0316a638, 0x0027fb0d, 0xfdfe8443, 0xfe0758a7, + 0xff92278e, 0x00f888b4, 0x01302c6d, 0x006cd970, + 0xff9643b4, 0xff58a09f, 0xffaf789e, 0x0023bdd0, + 0x00517827, 0x003064c3, 0xfff8dbb8, 0xffde5d70, + 0xffe87b44, 0xfffefa1b, 0x000af3fc, 0x0008a7fc, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2600bb7b, 0x19f036ad, 0x0935730f, 0xfc45f4af, + 0xf7f9a3f0, 0xfb30ece2, 0x00cc1e60, 0x03ebf0e0, + 0x0311e285, 0x00220eac, 0xfdfc50b0, 0xfe0970d5, + 0xff95a13f, 0x00fa4716, 0x012f5ef4, 0x006aede5, + 0xff9513b6, 0xff58d86c, 0xffb070c1, 0x0024726b, + 0x005177ad, 0x002ff59c, 0xfff87f63, 0xffde524b, + 0xffe8a5e4, 0xffff2132, 0x000afba1, 0x00089aae, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x25f27f94, 0x19d0763a, 0x09154c50, 0xfc342b44, + 0xf7f9ea9e, 0xfb3bb966, 0x00d60084, 0x03ee0165, + 0x030d1628, 0x001c2609, 0xfdfa26b3, 0xfe0b8f54, + 0xff991a11, 0x00fc0041, 0x012e8d55, 0x00690230, + 0xff93e663, 0xff5912b1, 0xffb1694c, 0x002525c6, + 0x005175e3, 0x002f8620, 0xfff82395, 0xffde47c3, + 0xffe8d0b4, 0xffff4817, 0x000b0308, 0x00088d4d, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x25e4140b, 0x19b0a2c6, 0x08f53658, 0xfc2286aa, + 0xf7fa50ac, 0xfb468f24, 0x00dfd754, 0x03f000c8, + 0x0308413a, 0x00164139, 0xfdf80650, 0xfe0db418, + 0xff9c91f4, 0x00fdb431, 0x012db796, 0x00671658, + 0xff92bbbd, 0xff594f6c, 0xffb2623a, 0x0025d7e0, + 0x005172c8, 0x002f1653, 0xfff7c84e, 0xffde3dd8, + 0xffe8fbb2, 0xffff6ec9, 0x000b0a32, 0x00087fda, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x25d57901, 0x1990bc99, 0x08d53167, 0xfc1106f0, + 0xf7fad5f8, 0xfb516dea, 0x00e9a2b4, 0x03f1ef0f, + 0x030363d4, 0x00106050, 0xfdf5ef87, 0xfe0fdf14, + 0xffa008dd, 0x00ff62e4, 0x012cddbf, 0x00652a66, + 0xff9193c8, 0xff598e9a, 0xffb35b86, 0x002688b7, + 0x00516e5f, 0x002ea636, 0xfff76d90, 0xffde348a, + 0xffe926dd, 0xffff9548, 0x000b111f, 0x00087255, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x25c6ae9b, 0x1970c3fe, 0x08b53db9, 0xfbffac22, + 0xf7fb7a61, 0xfb5c5588, 0x00f36287, 0x03f3cc3e, + 0x02fe7e0f, 0x000a8362, 0xfdf3e25a, 0xfe12103a, + 0xffa37ebe, 0x01010c56, 0x012bffd5, 0x00633e61, + 0xff906e85, 0xff59d036, 0xffb4552c, 0x00273848, + 0x005168a8, 0x002e35cb, 0xfff7135c, 0xffde2bd8, + 0xffe95234, 0xffffbb94, 0x000b17cf, 0x000864bf, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x25b7b4fd, 0x1950b93c, 0x08955b8c, 0xfbee764f, + 0xf7fc3dc6, 0xfb6745cc, 0x00fd16b1, 0x03f5985b, + 0x02f99005, 0x0004aa84, 0xfdf1decb, 0xfe14477d, + 0xffa6f389, 0x0102b084, 0x012b1ddf, 0x00615252, + 0xff8f4bf7, 0xff5a143f, 0xffb54f28, 0x0027e693, + 0x005161a5, 0x002dc515, 0xfff6b9b1, 0xffde23c0, + 0xffe97db7, 0xffffe1ac, 0x000b1e43, 0x00085718, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x25a88c4a, 0x19309c9d, 0x08758b1d, 0xfbdd6584, + 0xf7fd2003, 0xfb723e87, 0x0106bf17, 0x03f7536d, + 0x02f499d0, 0xfffed5ca, 0xfdefe4da, 0xfe1684d0, + 0xffaa6732, 0x01044f6c, 0x012a37e4, 0x005f6640, + 0xff8e2c20, 0xff5a5ab1, 0xffb64976, 0x00289395, + 0x00515957, 0x002d5416, 0xfff66092, 0xffde1c44, + 0xffe9a964, 0x00000790, 0x000b2479, 0x00084961, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x259934a8, 0x19106e6b, 0x0855cca9, 0xfbcc79ce, + 0xf7fe20f8, 0xfb7d3f87, 0x01105b9d, 0x03f8fd7a, + 0x02ef9b87, 0xfff90548, 0xfdedf489, 0xfe18c825, + 0xffadd9ac, 0x0105e90b, 0x01294deb, 0x005d7a34, + 0xff8d0f04, 0xff5aa388, 0xffb74411, 0x00293f4e, + 0x00514fc0, 0x002ce2d0, 0xfff60800, 0xffde1562, + 0xffe9d53a, 0x00002d3f, 0x000b2a74, 0x00083b99, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2589ae3b, 0x18f02eee, 0x0836206d, 0xfbbbb338, + 0xf7ff4081, 0xfb88489c, 0x0119ec28, 0x03fa9688, + 0x02ea9546, 0xfff33913, 0xfdec0dd8, 0xfe1b1170, + 0xffb14ae9, 0x01077d5f, 0x01285ffa, 0x005b8e34, + 0xff8bf4a4, 0xff5aeec2, 0xffb83ef4, 0x0029e9ba, + 0x005144e2, 0x002c7145, 0xfff5affa, 0xffde0f19, + 0xffea0138, 0x000052b8, 0x000b3032, 0x00082dc1, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2579f929, 0x18cfde70, 0x081686a5, 0xfbab11cf, + 0xf8007e7b, 0xfb935995, 0x0123709d, 0x03fc1e9d, + 0x02e58726, 0xffed713d, 0xfdea30c8, 0xfe1d60a3, + 0xffb4badd, 0x01090c64, 0x01276e18, 0x0059a249, + 0xff8add02, 0xff5b3c5c, 0xffb93a1c, 0x002a92d9, + 0x005138bd, 0x002bff77, 0xfff55882, 0xffde0969, + 0xffea2d5e, 0x000077fd, 0x000b35b5, 0x00081fda, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x256a1598, 0x18af7d3b, 0x07f6ff8e, 0xfb9a959d, + 0xf801dac4, 0xfb9e7242, 0x012ce8e0, 0x03fd95c1, + 0x02e07140, 0xffe7addb, 0xfde85d5a, 0xfe1fb5b0, + 0xffb8297b, 0x010a961a, 0x0126784c, 0x0057b67b, + 0xff89c822, 0xff5b8c51, 0xffba3584, 0x002b3aaa, + 0x00512b52, 0x002b8d69, 0xfff5019a, 0xffde0452, + 0xffea59aa, 0x00009d0b, 0x000b3afc, 0x000811e4, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x255a03af, 0x188f0b98, 0x07d78b62, 0xfb8a3eaf, + 0xf8035537, 0xfba99272, 0x013654d8, 0x03fefbfb, + 0x02db53ad, 0xffe1ef00, 0xfde6938e, 0xfe22108a, + 0xffbb96b5, 0x010c1a7d, 0x01257e9d, 0x0055cad2, + 0xff88b604, 0xff5bde9f, 0xffbb3128, 0x002be12a, + 0x00511ca5, 0x002b1b1c, 0xfff4ab41, 0xffddffd2, + 0xffea861b, 0x0000c1e3, 0x000b4008, 0x000803df, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2549c394, 0x186e89d1, 0x07b82a5e, 0xfb7a0d0e, + 0xf804edb3, 0xfbb4b9f4, 0x013fb46b, 0x04005153, + 0x02d62e88, 0xffdc34bf, 0xfde4d364, 0xfe247124, + 0xffbf0280, 0x010d998b, 0x01248112, 0x0053df54, + 0xff87a6ac, 0xff5c3343, 0xffbc2d03, 0x002c8658, + 0x00510cb5, 0x002aa894, 0xfff45578, 0xffddfbea, + 0xffeab2b1, 0x0000e685, 0x000b44d8, 0x0007f5cc, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2539556e, 0x184df830, 0x0798dcbc, 0xfb6a00c4, + 0xf806a412, 0xfbbfe899, 0x0149077d, 0x040195cf, + 0x02d101ea, 0xffd67f2d, 0xfde31cdd, 0xfe26d76f, + 0xffc26cce, 0x010f1342, 0x01237fb1, 0x0051f40a, + 0xff869a1b, 0xff5c8a39, 0xffbd2912, 0x002d2a32, + 0x0050fb85, 0x002a35d1, 0xfff40041, 0xffddf898, + 0xffeadf6b, 0x00010aef, 0x000b496e, 0x0007e7ab, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2528b965, 0x182d56fe, 0x0779a2b8, 0xfb5a19dc, + 0xf8087830, 0xfbcb1e30, 0x01524df7, 0x0402c978, + 0x02cbcdee, 0xffd0ce5c, 0xfde16ff8, 0xfe29435e, + 0xffc5d593, 0x011087a0, 0x01227a82, 0x005008fc, + 0xff859054, 0xff5ce37d, 0xffbe254f, 0x002dccb8, + 0x0050e916, 0x0029c2d7, 0xfff3ab9d, 0xffddf5dc, + 0xffeb0c47, 0x00012f22, 0x000b4dc9, 0x0007d97c, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2517efa2, 0x180ca686, 0x075a7c8c, 0xfb4a585e, + 0xf80a69ea, 0xfbd65a89, 0x015b87bd, 0x0403ec56, + 0x02c692ac, 0xffcb225f, 0xfddfccb5, 0xfe2bb4e4, + 0xffc93cc2, 0x0111f6a4, 0x0121718c, 0x004e1e31, + 0xff848957, 0xff5d3f0d, 0xffbf21b7, 0x002e6de7, + 0x0050d569, 0x00294fa7, 0xfff3578b, 0xffddf3b5, + 0xffeb3944, 0x0001531e, 0x000b51ea, 0x0007cb40, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2506f84c, 0x17ebe711, 0x073b6a73, 0xfb3abc54, + 0xf80c791b, 0xfbe19d73, 0x0164b4b7, 0x0404fe71, + 0x02c1503e, 0xffc57b49, 0xfdde3314, 0xfe2e2bf2, + 0xffcca24f, 0x0113604b, 0x012064d6, 0x004c33b1, + 0xff838529, 0xff5d9ce5, 0xffc01e46, 0x002f0dbf, + 0x0050c080, 0x0028dc43, 0xfff3040e, 0xffddf223, + 0xffeb6662, 0x000176e1, 0x000b55d1, 0x0007bcf7, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24f5d38e, 0x17cb18ea, 0x071c6ca6, 0xfb2b45c5, + 0xf80ea59d, 0xfbece6be, 0x016dd4cd, 0x0405ffd1, + 0x02bc06bf, 0xffbfd92e, 0xfddca314, 0xfe30a87b, + 0xffd0062d, 0x0114c494, 0x011f5466, 0x004a4983, + 0xff8283c9, 0xff5dfd01, 0xffc11af6, 0x002fac3e, + 0x0050aa5d, 0x002868ae, 0xfff2b125, 0xffddf125, + 0xffeb93a0, 0x00019a6b, 0x000b597e, 0x0007aea1, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24e4818f, 0x17aa3c5b, 0x06fd8360, 0xfb1bf4ba, + 0xf810ef4c, 0xfbf8363b, 0x0176e7e4, 0x0406f080, + 0x02b6b649, 0xffba3c1f, 0xfddb1cb5, 0xfe332a70, + 0xffd36850, 0x0116237d, 0x011e4045, 0x00485faf, + 0xff81853a, 0xff5e5f5f, 0xffc217c4, 0x00304962, + 0x00509301, 0x0027f4ea, 0xfff25ed1, 0xffddf0ba, + 0xffebc0fd, 0x0001bdbd, 0x000b5cf1, 0x0007a03f, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24d3027b, 0x178951ae, 0x06deaed9, 0xfb0cc93b, + 0xf8135602, 0xfc038bb9, 0x017fede6, 0x0407d087, + 0x02b15ef5, 0xffb4a42f, 0xfdd99ff5, 0xfe35b1c5, + 0xffd6c8ab, 0x01177d04, 0x011d2879, 0x0046763d, + 0xff80897f, 0xff5ec3f9, 0xffc314ac, 0x0030e52b, + 0x00507a6e, 0x002780f9, 0xfff20d14, 0xffddf0e2, + 0xffebee77, 0x0001e0d6, 0x000b602b, 0x000791d1, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24c1567a, 0x1768592e, 0x06bfef4b, 0xfafdc34e, + 0xf815d99a, 0xfc0ee708, 0x0188e6b9, 0x04089fee, + 0x02ac00dd, 0xffaf1172, 0xfdd82cd5, 0xfe383e6a, + 0xffda2733, 0x0118d129, 0x011c0d0a, 0x00448d33, + 0xff7f9097, 0xff5f2ace, 0xffc411aa, 0x00317f96, + 0x005060a5, 0x00270cdc, 0xfff1bbed, 0xffddf19c, + 0xffec1c0e, 0x000203b5, 0x000b632c, 0x00078358, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24af7db8, 0x17475324, 0x06a144ef, 0xfaeee2fb, + 0xf81879ef, 0xfc1a47f9, 0x0191d246, 0x04095ebf, + 0x02a69c1b, 0xffa983f8, 0xfdd6c352, 0xfe3ad053, + 0xffdd83da, 0x011a1fe9, 0x011aedfe, 0x0042a49a, + 0xff7e9a87, 0xff5f93d9, 0xffc50eb9, 0x003218a4, + 0x005045a8, 0x00269897, 0xfff16b5f, 0xffddf2e7, + 0xffec49c1, 0x0002265b, 0x000b65f4, 0x000774d4, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x249d7860, 0x17263fdc, 0x0682affd, 0xfae02847, + 0xf81b36d9, 0xfc25ae5b, 0x019ab075, 0x040a0d04, + 0x02a130ca, 0xffa3fbd5, 0xfdd5636c, 0xfe3d6770, + 0xffe0de95, 0x011b6943, 0x0119cb5e, 0x0040bc7a, + 0xff7da74d, 0xff5fff17, 0xffc60bd5, 0x0032b051, + 0x00502979, 0x0026242c, 0xfff11b68, 0xffddf4c2, + 0xffec778f, 0x000248c6, 0x000b6884, 0x00076644, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x248b469e, 0x17051f9f, 0x066430ad, 0xfad19338, + 0xf81e1033, 0xfc3119ff, 0x01a38130, 0x040aaac6, + 0x029bbf03, 0xff9e791a, 0xfdd40d21, 0xfe4003b5, + 0xffe43758, 0x011cad37, 0x0118a530, 0x003ed4d8, + 0xff7cb6ee, 0xff606c84, 0xffc708f9, 0x0033469e, + 0x00500c19, 0x0025af9b, 0xfff0cc0b, 0xffddf72e, + 0xffeca576, 0x00026af7, 0x000b6adb, 0x000757ab, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2478e89c, 0x16e3f2b9, 0x0645c738, 0xfac323d5, + 0xf82105d7, 0xfc3c8ab6, 0x01ac445e, 0x040b3810, + 0x029646e1, 0xff98fbd9, 0xfdd2c070, 0xfe42a512, + 0xffe78e17, 0x011debc3, 0x01177b7c, 0x003cedbd, + 0xff7bc969, 0xff60dc1c, 0xffc80623, 0x0033db89, + 0x004fed8a, 0x00253ae8, 0xfff07d48, 0xffddfa29, + 0xffecd377, 0x00028ced, 0x000b6cfb, 0x00074907, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24665e88, 0x16c2b973, 0x062773d4, 0xfab4da22, + 0xf824179d, 0xfc480050, 0x01b4f9e8, 0x040bb4ec, + 0x0290c87d, 0xff938425, 0xfdd17d57, 0xfe454b79, + 0xffeae2c5, 0x011f24e5, 0x01164e49, 0x003b0731, + 0xff7adec1, 0xff614ddd, 0xffc9034d, 0x00346f11, + 0x004fcdce, 0x0024c615, 0xfff02f1f, 0xffddfdb2, + 0xffed0190, 0x0002aea8, 0x000b6ee3, 0x00073a5a, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2453a88d, 0x16a17418, 0x060936ba, 0xfaa6b623, + 0xf827455f, 0xfc537a9d, 0x01bda1ba, 0x040c2164, + 0x028b43f2, 0xff8e120e, 0xfdd043d4, 0xfe47f6dd, + 0xffee3557, 0x0120589e, 0x01151d9f, 0x0039213a, + 0xff79f6f7, 0xff61c1c2, 0xffca0074, 0x00350135, + 0x004face5, 0x00245123, 0xffefe191, 0xffde01c9, + 0xffed2fc0, 0x0002d028, 0x000b7094, 0x00072ba3, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2440c6da, 0x168022f4, 0x05eb101f, 0xfa98b7dd, + 0xf82a8ef5, 0xfc5ef96e, 0x01c63bbb, 0x040c7d83, + 0x0285b95a, 0xff88a5a6, 0xfdcf13e6, 0xfe4aa72f, + 0xfff185c1, 0x012186ed, 0x0113e985, 0x00373bdf, + 0xff79120c, 0xff6237c7, 0xffcafd93, 0x003591f4, + 0x004f8ad3, 0x0023dc15, 0xffef949f, 0xffde066d, + 0xffed5e07, 0x0002f16c, 0x000b720d, 0x00071ce3, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x242db99b, 0x165ec650, 0x05cd003c, 0xfa8adf54, + 0xf82df439, 0xfc6a7c94, 0x01cec7d6, 0x040cc954, + 0x028028cf, 0xff833eff, 0xfdcded89, 0xfe4d5c60, + 0xfff4d3f7, 0x0122afcf, 0x0112b203, 0x00355729, + 0xff783002, 0xff62afe9, 0xffcbfaa6, 0x0036214c, + 0x004f6798, 0x002366ed, 0xffef4849, 0xffde0b9d, + 0xffed8c62, 0x00031274, 0x000b7350, 0x00070e1a, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x241a80fe, 0x163d5e78, 0x05af0745, 0xfa7d2c8b, + 0xf8317502, 0xfc7603e0, 0x01d745f6, 0x040d04e3, + 0x027a926c, 0xff7dde2a, 0xfdccd0bd, 0xfe501663, + 0xfff81fee, 0x0123d346, 0x01117721, 0x0033731e, + 0xff7750d9, 0xff632a24, 0xffccf7aa, 0x0036af3d, + 0x004f4337, 0x0022f1ad, 0xffeefc91, 0xffde1159, + 0xffedbad2, 0x00033340, 0x000b745c, 0x0006ff49, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x24071d31, 0x161bebb6, 0x05912571, 0xfa6f9f85, + 0xf8351129, 0xfc818f21, 0x01dfb604, 0x040d303a, + 0x0274f649, 0xff788338, 0xfdcbbd7e, 0xfe52d529, + 0xfffb699a, 0x0124f150, 0x011038e5, 0x00318fc5, + 0xff767494, 0xff63a674, 0xffcdf499, 0x00373bc5, + 0x004f1db1, 0x00227c57, 0xffeeb176, 0xffde17a0, + 0xffede956, 0x000353cf, 0x000b7532, 0x0006f070, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23f38e64, 0x15fa6e55, 0x05735af5, 0xfa623845, + 0xf838c886, 0xfc8d1e2b, 0x01e817ec, 0x040d4b65, + 0x026f5483, 0xff732e3a, 0xfdcab3ca, 0xfe5598a4, + 0xfffeb0ef, 0x012609ed, 0x010ef758, 0x002fad26, + 0xff759b33, 0xff6424d6, 0xffcef171, 0x0037c6e4, + 0x004ef708, 0x002206ed, 0xffee66f9, 0xffde1e71, + 0xffee17ec, 0x00037422, 0x000b75d2, 0x0006e18f, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23dfd4c5, 0x15d8e6a0, 0x0555a808, 0xfa54f6cd, + 0xf83c9af0, 0xfc98b0cd, 0x01f06b98, 0x040d5670, + 0x0269ad32, 0xff6ddf40, 0xfdc9b39e, 0xfe5860c5, + 0x0001f5e1, 0x01271d1c, 0x010db281, 0x002dcb48, + 0xff74c4b7, 0xff64a545, 0xffcfee2d, 0x00385098, + 0x004ecf3d, 0x00219171, 0xffee1d1b, 0xffde25cc, + 0xffee4694, 0x00039438, 0x000b763d, 0x0006d2a7, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23cbf083, 0x15b754e1, 0x05380cdd, 0xfa47db1e, + 0xf840883f, 0xfca446d9, 0x01f8b0f4, 0x040d5166, + 0x02640071, 0xff68965c, 0xfdc8bcf8, 0xfe5b2d7d, + 0x00053867, 0x01282ade, 0x010c6a67, 0x002bea32, + 0xff73f122, 0xff6527bf, 0xffd0eac9, 0x0038d8e1, + 0x004ea653, 0x00211be5, 0xffedd3dd, 0xffde2daf, + 0xffee754c, 0x0003b410, 0x000b7672, 0x0006c3b8, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23b7e1cf, 0x1595b963, 0x051a89aa, 0xfa3ae53a, + 0xf844904b, 0xfcafe01f, 0x0200e7ec, 0x040d3c55, + 0x025e4e5b, 0xff63539e, 0xfdc7cfd4, 0xfe5dfebf, + 0x00087873, 0x01293331, 0x010b1f14, 0x002a09ea, + 0xff732074, 0xff65ac3e, 0xffd1e741, 0x00395fbe, + 0x004e7c4b, 0x0020a64c, 0xffed8b3e, 0xffde3619, + 0xffeea414, 0x0003d3ab, 0x000b7672, 0x0006b4c3, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23a3a8d8, 0x15741472, 0x04fd1ea3, 0xfa2e1521, + 0xf848b2eb, 0xfcbb7c73, 0x0209106b, 0x040d1748, + 0x02589709, 0xff5e1717, 0xfdc6ec30, 0xfe60d47c, + 0x000bb5fb, 0x012a3616, 0x0109d08d, 0x00282a79, + 0xff7252af, 0xff6632c0, 0xffd2e390, 0x0039e52e, + 0x004e5127, 0x002030a6, 0xffed4340, 0xffde3f0b, + 0xffeed2ec, 0x0003f308, 0x000b763e, 0x0006a5c7, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x238f45cf, 0x15526658, 0x04dfcbfc, 0xfa216ad5, + 0xf84ceff5, 0xfcc71ba4, 0x02112a5e, 0x040ce24c, + 0x0252da97, 0xff58e0d6, 0xfdc61208, 0xfe63aea4, + 0x000ef0f4, 0x012b338d, 0x01087edc, 0x00264be4, + 0xff7187d3, 0xff66bb3f, 0xffd3dfb4, 0x003a6930, + 0x004e24e9, 0x001fbaf7, 0xffecfbe3, 0xffde4883, + 0xffef01d1, 0x00041227, 0x000b75d5, 0x000696c5, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x237ab8e6, 0x1530af60, 0x04c291e8, 0xfa14e655, + 0xf8514741, 0xfcd2bd85, 0x021935b0, 0x040c9d6e, + 0x024d191d, 0xff53b0ed, 0xfdc54159, 0xfe668d2a, + 0x00122952, 0x012c2b96, 0x01072a07, 0x00246e34, + 0xff70bfe1, 0xff6745b9, 0xffd4dba8, 0x003aebc3, + 0x004df793, 0x001f4540, 0xffecb528, 0xffde5281, + 0xffef30c3, 0x00043108, 0x000b7538, 0x000687bd, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2366024c, 0x150eefd5, 0x04a5709a, 0xfa0887a1, + 0xf855b8a4, 0xfcde61e8, 0x0221324f, 0x040c48ba, + 0x024752b7, 0xff4e876a, 0xfdc47a20, 0xfe697000, + 0x00155f0b, 0x012d1e30, 0x0105d217, 0x0022916e, + 0xff6ffadb, 0xff67d22a, 0xffd5d768, 0x003b6ce6, + 0x004dc926, 0x001ecf83, 0xffec6f0e, 0xffde5d03, + 0xffef5fc2, 0x00044faa, 0x000b7467, 0x000678b0, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23512234, 0x14ed2801, 0x04886847, 0xf9fc4eb8, + 0xf85a43f6, 0xfcea089d, 0x02292027, 0x040be43e, + 0x0241877f, 0xff49645d, 0xfdc3bc58, 0xfe6c5715, + 0x00189212, 0x012e0b5d, 0x01047713, 0x0020b59a, + 0xff6f38c0, 0xff68608d, 0xffd6d2f1, 0x003bec99, + 0x004d99a5, 0x001e59c3, 0xffec2997, 0xffde6809, + 0xffef8ecc, 0x00046e0e, 0x000b7363, 0x0006699e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x233c18d1, 0x14cb5830, 0x046b7920, 0xf9f03b99, + 0xf85ee90d, 0xfcf5b178, 0x0230ff26, 0x040b7008, + 0x023bb78e, 0xff4447d8, 0xfdc307fe, 0xfe6f425c, + 0x001bc25f, 0x012ef31c, 0x01031904, 0x001edabf, + 0xff6e7992, 0xff68f0de, 0xffd7ce3e, 0x003c6adb, + 0x004d6910, 0x001de401, 0xffebe4c4, 0xffde7393, + 0xffefbde0, 0x00048c33, 0x000b722c, 0x00065a87, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2326e654, 0x14a980ad, 0x044ea358, 0xf9e44e42, + 0xf863a7be, 0xfd015c4a, 0x0238cf39, 0x040aec25, + 0x0235e300, 0xff3f31e8, 0xfdc25d0e, 0xfe7231c6, + 0x001eefe5, 0x012fd56e, 0x0101b7f1, 0x001d00e3, + 0xff6dbd51, 0xff69831a, 0xffd8c94b, 0x003ce7ab, + 0x004d376b, 0x001d6e3f, 0xffeba093, 0xffde7f9e, + 0xffefecfe, 0x0004aa18, 0x000b70c2, 0x00064b6c, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x23118aef, 0x1487a1c1, 0x0431e720, 0xf9d886b2, + 0xf8687fdf, 0xfd0d08e6, 0x0240904e, 0x040a58a2, + 0x023009ee, 0xff3a229e, 0xfdc1bb84, 0xfe752544, + 0x00221a9a, 0x0130b253, 0x010053e2, 0x001b280e, + 0xff6d03fd, 0xff6a173c, 0xffd9c414, 0x003d6309, + 0x004d04b7, 0x001cf87f, 0xffeb5d07, 0xffde8c2b, + 0xfff01c25, 0x0004c7bf, 0x000b6f25, 0x00063c4d, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22fc06d8, 0x1465bbb9, 0x041544aa, 0xf9cce4e6, + 0xf86d7146, 0xfd18b71d, 0x02484253, 0x0409b58e, + 0x022a2c73, 0xff351a08, 0xfdc1235c, 0xfe781cc8, + 0x00254273, 0x013189cc, 0x00feecdf, 0x00195045, + 0xff6c4d99, 0xff6aad40, 0xffdabe97, 0x003ddcf3, + 0x004cd0f5, 0x001c82c3, 0xffeb1a1f, 0xffde9939, + 0xfff04b53, 0x0004e526, 0x000b6d57, 0x00062d2b, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22e65a40, 0x1443cedf, 0x03f8bc28, 0xf9c168db, + 0xf8727bc9, 0xfd2466c3, 0x024fe536, 0x040902f6, + 0x02244aaa, 0xff301836, 0xfdc09492, 0xfe7b1843, + 0x00286766, 0x01325bd9, 0x00fd82f1, 0x00177990, + 0xff6b9a23, 0xff6b4523, 0xffdbb8ce, 0x003e556a, + 0x004c9c28, 0x001c0d0e, 0xffead7dc, 0xffdea6c7, + 0xfff07a88, 0x0005024d, 0x000b6b56, 0x00061e05, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22d0855c, 0x1421db7e, 0x03dc4dca, 0xf9b6128e, + 0xf8779f3c, 0xfd3017a9, 0x025778e5, 0x040840ea, + 0x021e64ab, 0xff2b1d37, 0xfdc00f20, 0xfe7e17a5, + 0x002b8968, 0x0133287b, 0x00fc161e, 0x0015a3f5, + 0xff6ae99c, 0xff6bdee1, 0xffdcb2b6, 0x003ecc6c, + 0x004c6652, 0x001b9761, 0xffea963e, 0xffdeb4d3, + 0xfff0a9c4, 0x00051f34, 0x000b6924, 0x00060edb, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22ba8860, 0x13ffe1e0, 0x03bff9c0, 0xf9aae1fb, + 0xf87cdb75, 0xfd3bc9a3, 0x025efd50, 0x04076f78, + 0x02187a92, 0xff26291a, 0xfdbf9304, 0xfe811ae0, + 0x002ea86e, 0x0133efb4, 0x00faa670, 0x0013cf7b, + 0xff6a3c06, 0xff6c7a74, 0xffddac4c, 0x003f41f9, + 0x004c2f75, 0x001b21be, 0xffea5546, 0xffdec35e, + 0xfff0d904, 0x00053bdb, 0x000b66c1, 0x0005ffaf, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22a46381, 0x13dde250, 0x03a3c03c, 0xf99fd71f, + 0xf8823049, 0xfd477c83, 0x02667266, 0x04068eae, + 0x02128c79, 0xff213bed, 0xfdbf2036, 0xfe8421e6, + 0x0031c46e, 0x0134b183, 0x00f933ed, 0x0011fc29, + 0xff69915f, 0xff6d17da, 0xffdea58b, 0x003fb610, + 0x004bf792, 0x001aac26, 0xffea14f4, 0xffded267, + 0xfff10849, 0x00055842, 0x000b642d, 0x0005f081, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x228e16f3, 0x13bbdd1a, 0x0387a16d, 0xf994f1f4, + 0xf8879d8c, 0xfd53301d, 0x026dd816, 0x04059e9b, + 0x020c9a7a, 0xff1c55bf, 0xfdbeb6b4, 0xfe872ca7, + 0x0034dd5f, 0x01356dea, 0x00f7be9f, 0x00102a05, + 0xff68e9a9, 0xff6db70e, 0xffdf9e70, 0x004028b1, + 0x004bbeab, 0x001a369d, 0xffe9d548, 0xffdee1eb, + 0xfff13792, 0x00057468, 0x000b6169, 0x0005e151, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x2277a2ec, 0x1399d287, 0x036b9d81, 0xf98a3277, + 0xf88d2313, 0xfd5ee442, 0x02752e50, 0x04049f4f, + 0x0206a4af, 0xff17769e, 0xfdbe5678, 0xfe8a3b15, + 0x0037f335, 0x013624eb, 0x00f6468d, 0x000e5916, + 0xff6844e4, 0xff6e580c, 0xffe096f6, 0x004099dc, + 0x004b84c3, 0x0019c124, 0xffe99643, 0xffdef1ec, + 0xfff166dd, 0x0005904e, 0x000b5e74, 0x0005d21e, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x226107a1, 0x1377c2e3, 0x034fb4aa, 0xf97f98a2, + 0xf892c0b3, 0xfd6a98c8, 0x027c7503, 0x040390d8, + 0x0200ab32, 0xff129e99, 0xfdbdff7c, 0xfe8d4d20, + 0x003b05e6, 0x0136d685, 0x00f4cbc0, 0x000c8961, + 0xff67a310, 0xff6efacf, 0xffe18f1b, 0x0041098f, + 0x004b49db, 0x00194bbc, 0xffe957e5, 0xffdf0267, + 0xfff1962a, 0x0005abf3, 0x000b5b4f, 0x0005c2eb, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x224a454a, 0x1355ae78, 0x0333e714, 0xf975246f, + 0xf898763f, 0xfd764d80, 0x0283ac20, 0x04027347, + 0x01faae1e, 0xff0dcdbd, 0xfdbdb1bc, 0xfe9062ba, + 0x003e1569, 0x013782ba, 0x00f34e3f, 0x000abaee, + 0xff67042d, 0xff6f9f54, 0xffe286db, 0x004177cb, + 0x004b0df6, 0x0018d668, 0xffe91a2e, 0xffdf135c, + 0xfff1c577, 0x0005c757, 0x000b57fb, 0x0005b3b6, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22335c1a, 0x13339590, 0x031834ee, 0xf96ad5d8, + 0xf89e438c, 0xfd82023f, 0x028ad398, 0x040146aa, + 0x01f4ad8d, 0xff090419, 0xfdbd6d32, 0xfe937bd4, + 0x004121b3, 0x0138298c, 0x00f1ce12, 0x0008edc3, + 0xff66683c, 0xff704596, 0xffe37e31, 0x0041e48f, + 0x004ad115, 0x0018612a, 0xffe8dd1f, 0xffdf24ca, + 0xfff1f4c5, 0x0005e27a, 0x000b5478, 0x0005a480, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x221c4c4b, 0x13117877, 0x02fc9e67, 0xf960acd7, + 0xf8a4286d, 0xfd8db6d8, 0x0291eb5a, 0x04000b12, + 0x01eea999, 0xff0441bb, 0xfdbd31d9, 0xfe96985f, + 0x00442abb, 0x0138cafc, 0x00f04b43, 0x000721e7, + 0xff65cf3c, 0xff70ed92, 0xffe4751b, 0x00424fda, + 0x004a933a, 0x0017ec03, 0xffe8a0b8, 0xffdf36b0, + 0xfff22412, 0x0005fd5c, 0x000b50c6, 0x0005954a, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x22051612, 0x12ef5776, 0x02e123ac, 0xf956a964, + 0xf8aa24b7, 0xfd996b1e, 0x0298f359, 0x03fec08f, + 0x01e8a25b, 0xfeff86af, 0xfdbcffab, 0xfe99b84c, + 0x00473076, 0x0139670b, 0x00eec5d8, 0x0005575e, + 0xff65392d, 0xff719743, 0xffe56b94, 0x0042b9ac, + 0x004a5467, 0x001776f5, 0xffe864fa, 0xffdf490e, + 0xfff2535e, 0x000617fd, 0x000b4ce6, 0x00058613, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x21edb9a7, 0x12cd32d9, 0x02c5c4eb, 0xf94ccb7a, + 0xf8b0383d, 0xfda51ee7, 0x029feb85, 0x03fd6730, + 0x01e297ef, 0xfefad304, 0xfdbcd6a2, 0xfe9cdb8c, + 0x004a32db, 0x0139fdbc, 0x00ed3dda, 0x00038e31, + 0xff64a610, 0xff7242a4, 0xffe66199, 0x00432206, + 0x004a149f, 0x00170202, 0xffe829e4, 0xffdf5be3, + 0xfff282a7, 0x0006325c, 0x000b48d7, 0x000576dc, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x21d63741, 0x12ab0ae9, 0x02aa824f, 0xf9431310, + 0xf8b662d3, 0xfdb0d205, 0x02a6d3d1, 0x03fbff07, + 0x01dc8a6e, 0xfef626c7, 0xfdbcb6b9, 0xfea00210, + 0x004d31e0, 0x013a8f0f, 0x00ebb352, 0x0001c665, + 0xff6415e4, 0xff72efb3, 0xffe75726, 0x004388e6, + 0x0049d3e3, 0x00168d2d, 0xffe7ef77, 0xffdf6f2c, + 0xfff2b1ec, 0x00064c79, 0x000b449b, 0x000567a6, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x21be8f19, 0x1288dff1, 0x028f5c07, 0xf939801e, + 0xf8bca44b, 0xfdbc844d, 0x02adac2d, 0x03fa8824, + 0x01d679f2, 0xfef18206, 0xfdbc9fe9, 0xfea32bc9, + 0x00502d7c, 0x013b1b06, 0x00ea2648, 0x00000000, + 0xff6388a9, 0xff739e69, 0xffe84c38, 0x0043ee4c, + 0x00499236, 0x00161876, 0xffe7b5b4, 0xffdf82eb, + 0xfff2e12e, 0x00066655, 0x000b4031, 0x00055871, + 0x00000000, 0x00000000, 0x00000000, 0x00000000 }; #endif