Add thread-safe font loading requests and integrate FiraCode-Regular font
This commit is contained in:
@@ -90,6 +90,7 @@ endif ()
|
||||
|
||||
set(FONT_SOURCES
|
||||
fonts/Font.cc
|
||||
fonts/FontRegistry.cc
|
||||
)
|
||||
|
||||
set(GUI_SOURCES
|
||||
@@ -158,6 +159,23 @@ set(FONT_HEADERS
|
||||
fonts/Font.h
|
||||
fonts/FontRegistry.h
|
||||
fonts/FontRegistry.h
|
||||
fonts/FontList.h
|
||||
fonts/B612Mono.h
|
||||
fonts/BrassMono.h
|
||||
fonts/BrassMonoCode.h
|
||||
fonts/FiraCode.h
|
||||
fonts/Go.h
|
||||
fonts/IBMPlexMono.h
|
||||
fonts/Idealist.h
|
||||
fonts/Inconsolata.h
|
||||
fonts/InconsolataExpanded.h
|
||||
fonts/Iosevka.h
|
||||
fonts/IosevkaExtended.h
|
||||
fonts/ShareTech.h
|
||||
fonts/SpaceMono.h
|
||||
fonts/Syne.h
|
||||
fonts/Triplicate.h
|
||||
fonts/Unispace.h
|
||||
)
|
||||
|
||||
set(COMMON_HEADERS
|
||||
@@ -270,9 +288,8 @@ if (${BUILD_GUI})
|
||||
|
||||
# io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
|
||||
# io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad; // Enable Gamepad Controls
|
||||
target_sources(kte PRIVATE ${COMMON_SOURCES} ${COMMON_HEADERS})
|
||||
target_compile_definitions(kte PRIVATE KTE_BUILD_GUI=1)
|
||||
target_link_libraries(kte imgui)
|
||||
# Do not enable GUI in the terminal-first 'kte' binary; GUI is built as separate 'kge'.
|
||||
# This avoids referencing GUI classes from kte and keeps dependencies minimal.
|
||||
|
||||
# kge (GUI-first) executable
|
||||
add_executable(kge
|
||||
|
||||
@@ -95,6 +95,8 @@ enum class CommandId {
|
||||
CommandPromptStart, // begin generic command prompt (C-k ;)
|
||||
// Theme by name
|
||||
ThemeSetByName,
|
||||
// Font by name (GUI)
|
||||
FontSetByName,
|
||||
// Background mode (GUI)
|
||||
BackgroundSet,
|
||||
// Syntax highlighting
|
||||
|
||||
@@ -102,6 +102,8 @@ GUIConfig::LoadFromFile(const std::string &path)
|
||||
if (v > 0.0f) {
|
||||
font_size = v;
|
||||
}
|
||||
} else if (key == "font") {
|
||||
font = val;
|
||||
} else if (key == "theme") {
|
||||
theme = val;
|
||||
} else if (key == "background" || key == "bg") {
|
||||
|
||||
@@ -16,6 +16,7 @@ public:
|
||||
int columns = 80;
|
||||
int rows = 42;
|
||||
float font_size = (float) KTE_FONT_SIZE;
|
||||
std::string font = "default";
|
||||
std::string theme = "nord";
|
||||
// Background mode for themes that support light/dark variants
|
||||
// Values: "dark" (default), "light"
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#define KTE_GUI_FRONTEND_H
|
||||
|
||||
#include "Frontend.h"
|
||||
#include "GUIConfig.h"
|
||||
#include "GUIInputHandler.h"
|
||||
#include "GUIRenderer.h"
|
||||
|
||||
@@ -27,6 +28,7 @@ public:
|
||||
private:
|
||||
static bool LoadGuiFont_(const char *path, float size_px);
|
||||
|
||||
GUIConfig config_{};
|
||||
GUIInputHandler input_{};
|
||||
GUIRenderer renderer_{};
|
||||
SDL_Window *window_ = nullptr;
|
||||
@@ -35,4 +37,4 @@ private:
|
||||
int height_ = 800;
|
||||
};
|
||||
|
||||
#endif // KTE_GUI_FRONTEND_H
|
||||
#endif // KTE_GUI_FRONTEND_H
|
||||
@@ -285,11 +285,12 @@ GUIInputHandler::ProcessSDLEvent(const SDL_Event &e)
|
||||
bool produced = false;
|
||||
switch (e.type) {
|
||||
case SDL_MOUSEWHEEL: {
|
||||
// Map vertical wheel to viewport scrolling (ScrollUp/ScrollDown)
|
||||
// Note: We don't check WantCaptureMouse here because ImGui sets it to true
|
||||
// whenever the mouse is over any ImGui window (including our editor content area).
|
||||
// The NoScrollWithMouse flag on the child window prevents ImGui from handling
|
||||
// scroll internally, so we can safely process wheel events ourselves.
|
||||
// Let ImGui handle mouse wheel when it wants to capture the mouse
|
||||
// (e.g., when hovering the editor child window with scrollbars).
|
||||
// This enables native vertical and horizontal scrolling behavior in GUI.
|
||||
if (ImGui::GetIO().WantCaptureMouse)
|
||||
return false;
|
||||
// Otherwise, fallback to mapping vertical wheel to editor scroll commands.
|
||||
int dy = e.wheel.y;
|
||||
#ifdef SDL_MOUSEWHEEL_FLIPPED
|
||||
if (e.wheel.direction == SDL_MOUSEWHEEL_FLIPPED)
|
||||
@@ -561,6 +562,8 @@ GUIInputHandler::ProcessSDLEvent(const SDL_Event &e)
|
||||
if (produced && mi.hasCommand) {
|
||||
// Attach universal-argument count if present, then clear the state
|
||||
if (uarg_active_ &&mi
|
||||
|
||||
|
||||
|
||||
.
|
||||
id != CommandId::UArgStatus
|
||||
|
||||
2851
ext/fonts/FiraCode.h
2851
ext/fonts/FiraCode.h
File diff suppressed because it is too large
Load Diff
Binary file not shown.
BIN
ext/fonts/FiraCode/FiraCode-Regular.ttf
Normal file
BIN
ext/fonts/FiraCode/FiraCode-Regular.ttf
Normal file
Binary file not shown.
6234
ext/fonts/Idealist.h
Normal file
6234
ext/fonts/Idealist.h
Normal file
File diff suppressed because it is too large
Load Diff
BIN
ext/fonts/Idealist/Idealist-Regular.ttf
Normal file
BIN
ext/fonts/Idealist/Idealist-Regular.ttf
Normal file
Binary file not shown.
BIN
ext/fonts/Iosevka/Iosevka-Regular.ttf
Normal file
BIN
ext/fonts/Iosevka/Iosevka-Regular.ttf
Normal file
Binary file not shown.
66576
ext/fonts/Iosoveka.h
Normal file
66576
ext/fonts/Iosoveka.h
Normal file
File diff suppressed because it is too large
Load Diff
66699
ext/fonts/IosovekaExtended.h
Normal file
66699
ext/fonts/IosovekaExtended.h
Normal file
File diff suppressed because it is too large
Load Diff
BIN
ext/fonts/IosovekaExtended/IosevkaExtended-Regular.ttf
Normal file
BIN
ext/fonts/IosovekaExtended/IosevkaExtended-Regular.ttf
Normal file
Binary file not shown.
BIN
ext/fonts/NovaMono/NovaMono-Regular.ttf
Normal file
BIN
ext/fonts/NovaMono/NovaMono-Regular.ttf
Normal file
Binary file not shown.
10477
ext/fonts/SpaceMono.h
Normal file
10477
ext/fonts/SpaceMono.h
Normal file
File diff suppressed because it is too large
Load Diff
93
ext/fonts/SpaceMono/OFL.txt
Normal file
93
ext/fonts/SpaceMono/OFL.txt
Normal file
@@ -0,0 +1,93 @@
|
||||
Copyright 2016 The Space Mono Project Authors (https://github.com/googlefonts/spacemono)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
https://openfontlicense.org
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||
BIN
ext/fonts/SpaceMono/SpaceMono-Bold.ttf
Normal file
BIN
ext/fonts/SpaceMono/SpaceMono-Bold.ttf
Normal file
Binary file not shown.
BIN
ext/fonts/SpaceMono/SpaceMono-BoldItalic.ttf
Normal file
BIN
ext/fonts/SpaceMono/SpaceMono-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
ext/fonts/SpaceMono/SpaceMono-Italic.ttf
Normal file
BIN
ext/fonts/SpaceMono/SpaceMono-Italic.ttf
Normal file
Binary file not shown.
BIN
ext/fonts/SpaceMono/SpaceMono-Regular.ttf
Normal file
BIN
ext/fonts/SpaceMono/SpaceMono-Regular.ttf
Normal file
Binary file not shown.
880
ext/fonts/Unispace.h
Normal file
880
ext/fonts/Unispace.h
Normal file
@@ -0,0 +1,880 @@
|
||||
#pragma once
|
||||
namespace kte::Fonts::Unispace {
|
||||
// File: 'Unispace/Unispace-Regular.ttf' (33884 bytes)
|
||||
// Exported using binary_to_compressed_c.cpp
|
||||
static const unsigned int DefaultFontRegularCompressedSize = 20899;
|
||||
static const unsigned int DefaultFontRegularCompressedData[20900 / 4] =
|
||||
{
|
||||
0x0000bc57, 0x00000000, 0x5c840000, 0x00000400, 0x00010037, 0x000d0000, 0x00030080, 0x54464650, 0x3238394d,
|
||||
0x84000031, 0x2c158240, 0x4544471c,
|
||||
0x09f10746, 0x83000001, 0x2c0f82e4, 0x2f534f5a, 0x4c088b32, 0x0100009a, 0x360f8258, 0x616d6360, 0xfa0ed770,
|
||||
0x04000030, 0x03000098, 0x736167a6,
|
||||
0x82ffff70, 0x83002249, 0x381f82dc, 0x796c6708, 0xab179366, 0x0b00001d, 0x6800001c, 0x61656824, 0x9ee0bf64,
|
||||
0x831b821a, 0x6836211f, 0x06231082,
|
||||
0x82720124, 0x8214204f, 0x68242813, 0x2f78746d, 0x82872510, 0x00b82b0f, 0x6ce00200, 0x3161636f, 0x5f8217aa,
|
||||
0x8f820820, 0x6dda0229, 0x01707861,
|
||||
0x825b00b5, 0x8238201f, 0x6e202b2f, 0x5b656d61, 0x00c6f841, 0x1f827300, 0x701a0a31, 0xde74736f, 0x006ff819,
|
||||
0x005c7d00, 0x847e0600, 0x00052edb,
|
||||
0x8b588000, 0x3c0f5fde, 0x030b00f5, 0x243782e8, 0x31257c00, 0x2b0783f0, 0x7b2834e2, 0x0dfffeff, 0xbd036602,
|
||||
0x08220f82, 0x05820200, 0xf1820283,
|
||||
0xffbd0323, 0x2083820d, 0x221f8263, 0x846602fd, 0x87198349, 0x83042003, 0x6c012611, 0x07005800, 0x24008300,
|
||||
0x00000002, 0x82258401, 0x2e0b8289,
|
||||
0x02040000, 0x00900163, 0x02000005, 0x8258028a, 0x024b2411, 0x828a02bc, 0x00c52424, 0x82fa0032, 0x05002315,
|
||||
0x06830609, 0x00a00428, 0x00002f00,
|
||||
0x23820a20, 0x542b0284, 0x004f5059, 0x25170040, 0x824d03ca, 0x82c82083, 0x20f3249b, 0x83930000, 0x8102231c,
|
||||
0x07822803, 0x01002026, 0x1b006302,
|
||||
0x00260982, 0x00004d01, 0x09836302, 0x00e40025, 0x824800aa, 0x001b2615, 0x00020128, 0x2201828d, 0x82510057,
|
||||
0x00302e15, 0x002c00ee, 0x002b0023,
|
||||
0x00280024, 0x22018221, 0x821c0023, 0x82242009, 0x00e42c1b, 0x0062007f, 0x0030007e, 0x82200035, 0x823c2019,
|
||||
0x00332217, 0x2201822e, 0x82330021,
|
||||
0x82282013, 0x0025220f, 0x831b8225, 0x82262039, 0x82382009, 0x00202649, 0x00260002, 0x201b821a, 0x2459828d,
|
||||
0xff05008d, 0x209f82fe, 0x2013821e,
|
||||
0x22138230, 0x822d0024, 0x00242409, 0x8272002e, 0x002d2271, 0x2035821e, 0x22058219, 0x823a0028, 0x822d209d,
|
||||
0x00153013, 0x001f0009, 0x0037000e,
|
||||
0x0001016f, 0x8256006f, 0x00e422bf, 0x266f8278, 0x00fe001a, 0x82670039, 0x00782289, 0x20bd825a, 0x22458230,
|
||||
0x82740053, 0x00b52409, 0x82e300b2,
|
||||
0x00ee245d, 0x82cc00f4, 0x005a2811, 0x00150017, 0x8230001e, 0x8820209b, 0x00172203, 0x20b7823c, 0x20038c33,
|
||||
0x87bf8419, 0x827a2023, 0x82232077,
|
||||
0x830383c3, 0x821a20c1, 0x881e2043, 0x82102003, 0x8224204f, 0x200383a1, 0x837b822e, 0x84232003, 0x001921bf,
|
||||
0x51200185, 0x21870782, 0x37820e20,
|
||||
0x7b820e20, 0x03881e20, 0x3f823c20, 0x28220387, 0x2b820a00, 0x8b822820, 0x03902420, 0x26002e22, 0x03855d82,
|
||||
0x1f82fc82, 0x038c2e20, 0x28002622,
|
||||
0x24200182, 0x2d200382, 0x25200390, 0x038b8f82, 0x65822020, 0x21220387, 0x59820500, 0x03883a20, 0x1b002522,
|
||||
0x03852d82, 0x2d003823, 0x20038700,
|
||||
0x93e38223, 0x00022603, 0x001a0009, 0x2203820e, 0x82370028, 0x20038579, 0x8343841e, 0x006c2e3b, 0x0055006c,
|
||||
0x00bb00ee, 0x00570095, 0x20f7823e,
|
||||
0x21498226, 0x37830026, 0x3f830387, 0x30003024, 0x0184d500, 0x83005d21, 0x82552001, 0x008e2235, 0x2c59821c,
|
||||
0x00cd00cd, 0x00350021, 0x00170029,
|
||||
0x22098223, 0x82510033, 0x0049266d, 0x003c000b, 0x230b822c, 0x005c0051, 0x03200085, 0x03830682, 0x01001c22,
|
||||
0x00240982, 0x03009c01, 0x1c2a0984,
|
||||
0x80010400, 0x5c000000, 0xed824000, 0x09821c20, 0x00175808, 0x00a3007e, 0x010701b4, 0x0123011b, 0x01330127,
|
||||
0x01480137, 0x017e015b, 0x021b0292,
|
||||
0x03dd02c7, 0x03a90394, 0x1ec003bc, 0x20f31e85, 0x201a2014, 0x2022201e, 0x20302026, 0x2044203a, 0x21ac20a4,
|
||||
0x22022222, 0x2212220f, 0x221e221a,
|
||||
0x2248222b, 0x25652260, 0x82ffffca, 0x00003a5b, 0x00200017, 0x00a500a0, 0x010a01b6, 0x0126011e, 0x0136012a,
|
||||
0x014a0139, 0x245d825e, 0x02c60218,
|
||||
0x2a5d88d8, 0x20f21e80, 0x20182013, 0x8420201c, 0x8c39205d, 0x8a11205d, 0x8464205d, 0x015a085d, 0xe4ffecff,
|
||||
0xc2ffc3ff, 0xbfffc1ff, 0xbbffbdff,
|
||||
0xb7ffb9ff, 0xb5ffb6ff, 0xa0ffb3ff, 0x71fe1bff, 0xabfd61fe, 0x85fd97fd, 0xc3e282fd, 0x38e157e2, 0x34e135e1,
|
||||
0x30e133e1, 0x1fe127e1, 0xb7e016e1,
|
||||
0x3be0b0e0, 0x50df5cdf, 0x48df4fdf, 0x39df45df, 0x06df1ddf, 0x9fdb03df, 0xb9840100, 0x062204d7, 0x5a830a02,
|
||||
0x678f6482, 0x02000123, 0x87008500,
|
||||
0x8a002007, 0x8a032000, 0x8401200b, 0x04bc080b, 0x06000500, 0x08000700, 0x0a000900, 0x0c000b00, 0x0e000d00,
|
||||
0x10000f00, 0x12001100, 0x14001300,
|
||||
0x16001500, 0x18001700, 0x1a001900, 0x1c001b00, 0x1e001d00, 0x20001f00, 0x22002100, 0x24002300, 0x26002500,
|
||||
0x28002700, 0x2a002900, 0x2c002b00,
|
||||
0x2e002d00, 0x30002f00, 0x32003100, 0x34003300, 0x36003500, 0x38003700, 0x3a003900, 0x3c003b00, 0x3e003d00,
|
||||
0x40003f00, 0x42004100, 0x44004300,
|
||||
0x46004500, 0x48004700, 0x4a004900, 0x4c004b00, 0x4e004d00, 0x50004f00, 0x52005100, 0x54005300, 0x56005500,
|
||||
0x58005700, 0x5a005900, 0x5c005b00,
|
||||
0x5e005d00, 0x60005f00, 0x62006100, 0x8a08c182, 0x00860085, 0x008a0088, 0x00970092, 0x00a2009d, 0x00a300a1,
|
||||
0x00a400a5, 0x00a800a6, 0x00a900aa,
|
||||
0x00ac00ab, 0x00ad00ae, 0x00b000af, 0x00b400b2, 0x00b500b3, 0x00b600b7, 0x00ba00bb, 0x01bd00bc, 0x00720053,
|
||||
0x00660065, 0x00550169, 0x00a00077,
|
||||
0x016b0070, 0x0076005d, 0x0066016a, 0x01990087, 0x01730063, 0x00680167, 0x01000067, 0x0160015e, 0x0142015f,
|
||||
0x006c0064, 0x0040017b, 0x00b900a7,
|
||||
0x00640080, 0x0162016e, 0x82650132, 0x6d2c088d, 0x56017c00, 0x81006300, 0x96008400, 0x08010701, 0x4c014b01,
|
||||
0x51015001, 0x4e014d01, 0x6901b800,
|
||||
0x2b01c000, 0x5c015a01, 0x59015801, 0x20082f82, 0x00540100, 0x014f0178, 0x00570152, 0x008b0083, 0x008c0082,
|
||||
0x008e0089, 0x0090008f, 0x0094008d,
|
||||
0x3c238295, 0x009b0093, 0x009a009c, 0x013701ea, 0x0171003d, 0x013a0139, 0x0179003b, 0x013c013e, 0x221f8238,
|
||||
0x883c0000, 0x004e2a01, 0x008a0060,
|
||||
0x011c01ca, 0x0863824e, 0x9c017cac, 0xd401c001, 0xf001e201, 0x0a02fc01, 0x58024402, 0xb2028202, 0xf002ce02,
|
||||
0x34032203, 0xa6037403, 0xca03b803,
|
||||
0xf003dc03, 0x32040404, 0x80046604, 0xd204b004, 0x0e05f604, 0x4a052405, 0x78056205, 0xae059205, 0xda05be05,
|
||||
0x2206f205, 0x7a064406, 0xd006a406,
|
||||
0x0207e206, 0x36071607, 0x68075207, 0x92078007, 0xb207a007, 0xd207c407, 0x0a08e007, 0x4e082e08, 0xa2087408,
|
||||
0xec08be08, 0x22090809, 0x60094409,
|
||||
0x92097409, 0xda09ac09, 0x220afe09, 0x640a380a, 0x9c0a820a, 0xca0aae0a, 0xf80ae40a, 0x3e0b100b, 0x780b4c0b,
|
||||
0x01829e0b, 0x0bb00a0a, 0x0cfe0bdc,
|
||||
0x0c340c22, 0x0c900c7e, 0x0d1c0df4, 0x0d480d38, 0x0d960d56, 0x0dd20da4, 0x0e140eee, 0x0e480e3a, 0x0e700e64,
|
||||
0x0e900e7c, 0x0fda0ebe, 0x0f440f08,
|
||||
0x0fb40f86, 0x10f80fd6, 0x1050101e, 0x10ae1076, 0x11f810d0, 0x11381118, 0x1180115c, 0x11bc119e, 0x12fe11dc,
|
||||
0x1258122a, 0x12c4128e, 0x134413fe,
|
||||
0x139a1380, 0x140214da, 0x1454142a, 0x149c1480, 0x15f614be, 0x155a1528, 0x16d21590, 0x1658160a, 0x16c4169e,
|
||||
0x173017fa, 0x17a21768, 0x17da17be,
|
||||
0x181a18fa, 0x187c184c, 0x19e418b0, 0x1960191c, 0x19b2199a, 0x1a101af0, 0x1a541a30, 0x1a961a7a, 0x1adc1abc,
|
||||
0x1b301bfe, 0x1b9c1b5e, 0x1c101cce,
|
||||
0x1c5e1c38, 0x1cac1c86, 0x1d021dd8, 0x1d5c1d30, 0x1db61d88, 0x1e0c1ed6, 0x1e781e38, 0x1eca1e96, 0x1f401ffa,
|
||||
0x1f9c1f64, 0x201420d4, 0x20742040,
|
||||
0x20d620a2, 0x212021fc, 0x215a213e, 0x21aa2182, 0x220e22da, 0x223e222a, 0x228c225e, 0x22d022ae, 0x230423e8,
|
||||
0x2336231a, 0x236a234e, 0x239c2380,
|
||||
0x23d223b2, 0x241024f0, 0x244e242e, 0x24942470, 0x25de24b8, 0x25482514, 0x26ca258a, 0x26422608, 0x26ba266c,
|
||||
0x270627ea, 0x27522736, 0x27a62786,
|
||||
0x280a28d8, 0x286e283c, 0x28da28a4, 0x291629f2, 0x29562932, 0x29962972, 0x2afc29cc, 0x2a442a24, 0x2aa22a76,
|
||||
0x2b222be6, 0x2b762b50, 0x2ce02bae,
|
||||
0x2c322c0a, 0x2c722c52, 0x2cb22c94, 0x2dee2cd0, 0x2d2e2d0c, 0x2d762d50, 0x2dda2da8, 0x2e162ef2, 0x2e3a2e28,
|
||||
0x2e602e54, 0x2eac2e8a, 0x2ede2eca,
|
||||
0x2f2a2ff4, 0x2f5c2f44, 0x2fa62f82, 0x30f02fcc, 0x3044301c, 0x307c3060, 0x3098308a, 0x30b430a6, 0x30d630c2,
|
||||
0x310031ec, 0x31343116, 0x315a3142,
|
||||
0x31e031ce, 0x320032f2, 0x3254322a, 0x32ac3278, 0x32d832c0, 0x33fc32e6, 0x335e3340, 0x33c0339e, 0x34f433da,
|
||||
0x08018312, 0x00000064, 0xff1b0003,
|
||||
0x03490238, 0x000b0095, 0x00290025, 0x22210500, 0x33341135, 0x11153221, 0x15210314, 0x15163233, 0x012b0614,
|
||||
0x14150622, 0x36343317, 0x3632013b,
|
||||
0x03263435, 0x01331523, 0x6195fee7, 0x626b0161, 0xfcbbfeb9, 0x2b36372a, 0x1e523d21, 0x41383b27, 0xc6555344,
|
||||
0x54c88787, 0x5555b403, 0x06824cfc,
|
||||
0x3f54433b, 0x3b5b5241, 0x5f542739, 0x765c5b7f, 0x00744dfd, 0x00e40002, 0x037f0100, 0x36818228, 0x13000007,
|
||||
0x07231133, 0xee231533, 0x9b0a8787,
|
||||
0xfd28039b, 0x82786aba, 0x02aa2623, 0x03b90165, 0x2223875a, 0x82372315, 0x5eaa2b23, 0x5d5db25e, 0xf5f55a03,
|
||||
0x238200f5, 0x04824820, 0x47841a20,
|
||||
0x47821f20, 0x35331524, 0x04823303, 0x15200382, 0x0382a382, 0x23352323, 0x2c038215, 0x23353335, 0x96eb3335,
|
||||
0x4f964ee4, 0x2300824a, 0x554e964f,
|
||||
0x012c0082, 0x01d7d7ee, 0xf2f2f23a, 0xd146d748, 0x46220082, 0x6d8248d7, 0x53821b20, 0x53824920, 0x26001d24,
|
||||
0x55822f00, 0x86353321, 0x060d414f,
|
||||
0x57085087, 0x34352622, 0x33151336, 0x34353632, 0x23032326, 0x14150622, 0x9d013b16, 0xcccc3d73, 0x3a3c2f91,
|
||||
0xde3d9131, 0x46347bde, 0x1c4aed45,
|
||||
0x871c2323, 0x1e1e1845, 0xc5024518, 0xc8446363, 0x634e5073, 0xd1434545, 0x5d4f4e72, 0x3dd194fe, 0x013f2a2b,
|
||||
0x2a2c3928, 0x00050039, 0x48207f83,
|
||||
0x1322d384, 0x81821f00, 0x00003b3c, 0x23013301, 0x16323303, 0x0614011d, 0x2622012b, 0x3634013d, 0x3b141517,
|
||||
0x09823201, 0x01201082, 0x54081b9b,
|
||||
0xf4fe4997, 0x2861244a, 0x61282424, 0x26212229, 0x1b1b341a, 0x39011a34, 0x23232862, 0x22286228, 0x331b2422,
|
||||
0x1b331c1c, 0xd8fc2803, 0x40342803,
|
||||
0x3435407b, 0x33417b41, 0x3d3e7a74, 0x73fe3d7b, 0x3f7c4034, 0x7c3f3535, 0x7a743440, 0x3c7c3d3f, 0x00020000,
|
||||
0x20048228, 0x22a3823c, 0x82210008,
|
||||
0x22fa879d, 0x82153303, 0x16142e0a, 0x23152133, 0x21153311, 0x34352622, 0x08038237, 0x6d01363e, 0x36332e66,
|
||||
0xe0a8662b, 0x30362b9b, 0x7838012b,
|
||||
0x4483fe78, 0x534a5053, 0x54579901, 0xe502614a, 0x48744d43, 0x43aafe43, 0x309a668b, 0x6d537538, 0x02010100,
|
||||
0x61016502, 0x03005a03, 0x58826182,
|
||||
0x5f020127, 0xf55a035f, 0x2a008200, 0xff8d0001, 0x03d6010d, 0x851300bc, 0x0622271b, 0x16141115, 0x7e82013b,
|
||||
0x35262108, 0x01363411, 0x2d67577f,
|
||||
0x246b4b46, 0x8f8f7545, 0x5a44bc03, 0x4debfc31, 0x5a69443a, 0x79571c03, 0x3f8b3282, 0x32331323, 0x263d8216,
|
||||
0x35012b06, 0x82363233, 0x2b263e3d,
|
||||
0x61578d01, 0x44759091, 0x484b6a25, 0xbc03662c, 0xe4fc567a, 0x3c44695a, 0x3115034b, 0x247f845a, 0x02730157,
|
||||
0x27ff820b, 0x13000011, 0x07173717,
|
||||
0x17250282, 0x27072707, 0x08028237, 0x55c42725, 0x7b2c6e18, 0x4f617e1d, 0x296d1955, 0x607d1d79, 0x7f620b03,
|
||||
0x6c2a7a1d, 0x614f5619, 0x2a791e7f,
|
||||
0x8254186f, 0x01002b46, 0xe4005100, 0x82021102, 0x67420b00, 0x3523300a, 0x4cbb5123, 0xbb4cb9b9, 0xa6a6dc01,
|
||||
0x82b3b345, 0xffe43527, 0x007f0149,
|
||||
0x00030078, 0x03333700, 0x2e9be423, 0xd1fe786d, 0x30264385, 0x31025301, 0x1b839901, 0x1521132b, 0x01023021,
|
||||
0x9901fffd, 0x281c8246, 0x00ee0001,
|
||||
0x00750100, 0x26378575, 0x87ee2315, 0x82757587, 0x2c002512, 0x38020000, 0x4f82bf82, 0x0133012d, 0x55e30123,
|
||||
0x03584cfe, 0x82d8fc28, 0x82232029,
|
||||
0x8241201b, 0x0009231b, 0x0b820013, 0x16030134, 0x3632013b, 0x05341135, 0x13171411, 0x22012b26, 0x33413706,
|
||||
0x41222008, 0x3908056f, 0x140fd7c3,
|
||||
0xfe362b5e, 0x10db0cc6, 0x372b6015, 0x5443f125, 0x41f14255, 0x99025355, 0x5407b1fd, 0x2581013b, 0x267ffe25,
|
||||
0x094f021f, 0x597c9855, 0x785a7ffe,
|
||||
0x81015979, 0xa6827c59, 0x00010023, 0x2073822b, 0x3a738439, 0x11211300, 0x35211533, 0x73231133, 0xfdbe0801,
|
||||
0x0383cbf2, 0x431bfd28, 0x82a20243,
|
||||
0x86242027, 0x001b219b, 0x9d442782, 0x011d2108, 0x3520f782, 0x08089f44, 0x77012b28, 0x55432f01, 0x29a84553,
|
||||
0xfd99012d, 0xa74350e3, 0x2a37352c,
|
||||
0x7c2803e7, 0x4e795a5d, 0xec43a942, 0x3f54765d, 0x7b85553e, 0x53822820, 0x7b823a20, 0x53871f20, 0x011e0729,
|
||||
0x23061415, 0x82213521, 0x823420f6,
|
||||
0x433520f0, 0x2f0806e3, 0x6b013021, 0x274c5543, 0xfe43552c, 0x2a320186, 0x862b3637, 0x362e2c86, 0x03ddfe2b,
|
||||
0x845d7728, 0x3f6e182f, 0x5c43815b,
|
||||
0x445a3f42, 0x54404350, 0x02225f83, 0xb3862100, 0x0d000229, 0x03010000, 0x82330333, 0x15233ce0, 0x35213523,
|
||||
0xf7f76f01, 0x5a5ab33b, 0x02b2fe78,
|
||||
0x02effde9, 0x3fb0fd50, 0x835a9899, 0x88012037, 0x83142037, 0x21152597, 0x16323311, 0x2508958a, 0x01212123,
|
||||
0xe6a2fedd, 0x545b5962, 0x2d018ffe,
|
||||
0x3630363e, 0x2803c5fe, 0x6f00ff43, 0x5c4386f0, 0x00435c63, 0xcb410002, 0x83162007, 0x2113284d, 0x06222315,
|
||||
0x4421011d, 0x24080948, 0x36341135,
|
||||
0x16141513, 0x3d32013b, 0xc8233401, 0x2ed81001, 0x3c170128, 0xd35e4844, 0x4047475e, 0x54642e28, 0x35548238,
|
||||
0x5180473b, 0x4e6d8f48, 0xb2016d4e,
|
||||
0x78fe4d6e, 0x6c3b49d9, 0xa7855b96, 0xdf821c20, 0x28034824, 0xa7830500, 0x01230135, 0x2c021c21, 0x017ea8fe,
|
||||
0x0367fe43, 0x02d8fc28, 0x440300e5,
|
||||
0x1720082f, 0x2d2e8782, 0x23210000, 0x34352622, 0x012e3736, 0x7a823435, 0x06141522, 0x26057341, 0x012b3427,
|
||||
0x82141522, 0x054e4512, 0x35370882,
|
||||
0x92012634, 0x304e5bc1, 0x97252e35, 0x2c2697c1, 0x304f3035, 0x82615561, 0x6e250802, 0x6333303a, 0x6e34633a,
|
||||
0x145b616d, 0xd1445315, 0x155344d1,
|
||||
0x6d605b15, 0x9f9fe06e, 0x41a2029d, 0x4f919150, 0x21a48242, 0x37420002, 0x002c2105, 0x42050741, 0xe14106bd,
|
||||
0x013d2205, 0x0a504521, 0x82826e82,
|
||||
0xd4c72e08, 0x5e48475f, 0x1701b2fe, 0xeafe272d, 0x3f45403e, 0x2d27d63a, 0x2c035666, 0x4afe6d4e, 0x3a434e6d,
|
||||
0x4a4e6248, 0xb44d6eb2, 0x49f87b93,
|
||||
0x4662823a, 0x012107d3, 0x05af46d8, 0x15333724, 0x03821123, 0x829be421, 0x78782400, 0x8276d801, 0x00022624,
|
||||
0x0149ffe4, 0x2023877f, 0x231f8213,
|
||||
0x23033315, 0x2e212383, 0x0822826d, 0xd1feea30, 0x7f000100, 0xe5017c00, 0x0600d702, 0x01130000, 0x17150715,
|
||||
0x66017f15, 0xa401eeee, 0xca5b3301,
|
||||
0x005bca11, 0x62000200, 0x02023301, 0x6b854e02, 0x15211324, 0x03821121, 0xa0016224, 0x038460fe, 0x01457825,
|
||||
0x8200471b, 0x8a7e204b, 0x0109324b,
|
||||
0x27353735, 0xfe67017e, 0x02eeee99, 0xfecdfed7, 0x844f83d8, 0x82302097, 0x03342654, 0x00190028, 0x0c59431d,
|
||||
0x26231522, 0x22095743, 0x82132123,
|
||||
0x302a08b1, 0x55426d01, 0x38414453, 0x521e273b, 0x362b213d, 0xdcfe2a37, 0x03878762, 0x5b5c7628, 0x27545f7f,
|
||||
0x525b3b39, 0xfd543f41, 0x5a827590,
|
||||
0x0002002d, 0x0259ff35, 0x0081022c, 0x8423001c, 0x1115325b, 0x34352223, 0x3311013b, 0x21233411, 0x14111522,
|
||||
0x08bc8233, 0x1135223c, 0x22230134,
|
||||
0x013b1415, 0x651f01a8, 0x616d63fe, 0xe7fe2547, 0x8a012121, 0x01737cfe, 0x20202d28, 0x9181022d, 0xa2ab62fe,
|
||||
0x5b01f3fe, 0xe6fd5151, 0x02784337,
|
||||
0xe6fe911f, 0x68826c69, 0x20000226, 0x44020000, 0x0322c382, 0xfa820b00, 0x33032608, 0x13332703, 0x07232723,
|
||||
0x5b2f0123, 0xb75f5bbc, 0xd62186b7,
|
||||
0xd1028621, 0xdc0124fe, 0xb0d8fc57, 0x000300b0, 0x20338221, 0x22338243, 0x84100008, 0x431120f9, 0x032006e9,
|
||||
0x34290883, 0x21252326, 0x14151632,
|
||||
0x08038207, 0x21230636, 0x362abda6, 0xb2bd2b35, 0x2a36342c, 0x7f01c9fe, 0x53485543, 0x76fe4355, 0xc7fe7c01,
|
||||
0x5c40435a, 0xdcfe6901, 0x4355824d,
|
||||
0x3d745d78, 0x845c883a, 0x3c000100, 0x28205f82, 0x13205f82, 0x1521f983, 0x05a74621, 0x2620ee84, 0x363cef82,
|
||||
0xfe5401d4, 0x36362af3, 0xfe0d012a,
|
||||
0x555444ac, 0x55432803, 0x3b7ffe3d, 0x5a784354, 0x47061c45, 0x3d20056b, 0x09214382, 0x84458300, 0x871120a1,
|
||||
0x1411219a, 0xad239782, 0x823729b0,
|
||||
0x01cb2491, 0x8255437d, 0x0283328f, 0x535efde5, 0x3d81013c, 0x597c4355, 0x79597ffe, 0x22008200, 0x82330001,
|
||||
0x822f208b, 0x850b2047, 0x4211208b,
|
||||
0x332c0635, 0x8cfefc01, 0xf2fe0e01, 0x04fe7401, 0xfe298082, 0xd0fe44d2, 0x00010043, 0x202f822e, 0x20778435,
|
||||
0x07614200, 0x2e23112b, 0x82fe0702,
|
||||
0xe7fe1901, 0x232a8389, 0x99fe44c6, 0x2b875b84, 0xe78b1720, 0x11013b27, 0x11213523, 0x05234621, 0x6101c731,
|
||||
0x352ce7fe, 0x92ac2a37, 0x92fe0c01,
|
||||
0x86545742, 0x533c2eed, 0xfe453001, 0x01587a48, 0x007b5a81, 0x08934101, 0x3326a783, 0x33112111, 0x05822311,
|
||||
0x87212336, 0x88881301, 0x0387edfe,
|
||||
0x018ffe28, 0x01d8fc71, 0x008dfe73, 0xd78d2f82, 0x3d462320, 0x25d78207, 0x04febaba, 0x6682baba, 0x465efd21,
|
||||
0x3520063f, 0x2e20d382, 0x0d20d382,
|
||||
0x1120a783, 0x38084e45, 0x01d42311, 0xfe41565a, 0x2b19019e, 0x2803dc37, 0x7959aafd, 0x023c5343, 0x485f8313,
|
||||
0x0c2007eb, 0x33373382, 0x33133311,
|
||||
0x03230109, 0x28231107, 0x8afb0887, 0x1401ecfe, 0x8308ee97, 0x01a12b94, 0xfe84fe5f, 0x02810154, 0x378781fe,
|
||||
0x17453a20, 0x27c78206, 0x87282115,
|
||||
0xeefd8b01, 0x1b215d82, 0x201f8343, 0x208b8225, 0x841f823e, 0x011b2157, 0x032ee683, 0x23110323, 0x75739825,
|
||||
0x746b6899, 0x2a82686a, 0xb002502d,
|
||||
0x6a02d8fc, 0x660296fd, 0x82009afd, 0x00012100, 0x09203787, 0x01218f83, 0x2b378211, 0x25231101, 0x6a1d0192,
|
||||
0x66f9feac, 0x69223382, 0x33829702,
|
||||
0xaffd5122, 0x00202e82, 0x20051743, 0x22678243, 0x821f000f, 0x14112331, 0xce473b16, 0x14c94705, 0x2a399d3a,
|
||||
0x36362a64, 0x382b642a, 0x5542f51a,
|
||||
0x43f54156, 0x53025454, 0x533c7ffe, 0x21055242, 0x53429956, 0x07a04205, 0x22099f42, 0x4412000a, 0x11220a3b,
|
||||
0x43431323, 0x01283d06, 0x5456427d,
|
||||
0x8686f744, 0x34342caf, 0x8e28032c, 0xfe876769, 0xfee502bd, 0x659860a3, 0x2123a385, 0x850284ff, 0x9b2320a3,
|
||||
0x231723a3, 0x4d422327, 0x379f2305,
|
||||
0xa783622b, 0x372b622f, 0x5543f418, 0x3b314157, 0x41583b6b, 0x2aab8355, 0x53523c7e, 0x3d82013b, 0x82985555,
|
||||
0x587e28ab, 0x787c7c79, 0x48820159,
|
||||
0x022c056b, 0x00002600, 0x28033d02, 0x19001100, 0x2808f147, 0x23011d16, 0x2b263435, 0x3fb68901, 0x457b0126,
|
||||
0x7f555a57, 0x85ae2b35, 0x342baf85,
|
||||
0x28032937, 0x3c85597e, 0xbbbbaa2b, 0x93fe664c, 0xcd22bf82, 0xab478257, 0x07934106, 0x00001d26, 0x22211501,
|
||||
0x44055147, 0x35220535, 0x59843221,
|
||||
0x2d08b782, 0x02333634, 0x5af0fe0c, 0x6a643936, 0xfe575f5f, 0x651601bb, 0x534a6143, 0x034d5358, 0x4c8d4328,
|
||||
0x6e6d703e, 0x55a44383, 0x6e637633,
|
||||
0x4a820072, 0x82380021, 0x822c20ab, 0x830720ab, 0x231522a9, 0x25018211, 0xb4f40138, 0x2f82bb85, 0x021bfd23,
|
||||
0x202383e5, 0x20238223, 0x06634441,
|
||||
0xde413320, 0x22098208, 0x82012b06, 0x7d233c74, 0x2b602c35, 0x42568035, 0x035541f0, 0x42aafd28, 0x02414e4d,
|
||||
0x59aafd56, 0x83597979, 0x8220203f,
|
||||
0x8644203f, 0x13332163, 0x03290182, 0x86862023, 0xb7868909, 0x242e82b7, 0xfcd1022f, 0x208b84d8, 0x20278202,
|
||||
0x2027825f, 0x848b820f, 0x332b8527,
|
||||
0x23032303, 0x05318602, 0x054f4850, 0x945e8431, 0x9339043a, 0x412c3782, 0x1cfee401, 0xd8fcbf02, 0x9ffe6101,
|
||||
0x26203f84, 0x2006ef42, 0x083f830b,
|
||||
0x33011b25, 0x0b231303, 0x31132301, 0x7d867e8c, 0x7b8eb9ba, 0x03c58a84, 0x01cafe28, 0xfe75fe36, 0xfe470163,
|
||||
0x849d01b9, 0x821a2037, 0x82492037,
|
||||
0x87082077, 0x23112937, 0x8a8f1a11, 0x87d98690, 0x68282f82, 0xfafd9801, 0x2401defe, 0xcb492b84, 0x82092007,
|
||||
0x15213e2b, 0x21152101, 0x28210135,
|
||||
0x85fe1202, 0xeefd7b01, 0x72fe8e01, 0xfd3f2803, 0x022c435a, 0x0c474cb9, 0x2f075f41, 0x8d211533, 0xdada4901,
|
||||
0xbc03b7fe, 0x44d9fb44, 0x270e2b4b,
|
||||
0x23013313, 0xb801542c, 0x20052a4b, 0x09874c00, 0x11253f84, 0x11333521, 0x2a3f8223, 0xdadab7fe, 0x51fbbc03,
|
||||
0x82270444, 0x01052423, 0x825e02c3,
|
||||
0x000624bf, 0x46010900, 0x30270590, 0xcb592e01, 0x825aca11, 0xed9b31bf, 0xff0100ed, 0x0217fffe, 0x006dff66,
|
||||
0x07000003, 0x0226b482, 0x98fd6802,
|
||||
0xa2825693, 0x93263f82, 0x81019d02, 0x1b831603, 0x1517132b, 0xeeee9327, 0x45341603, 0x2b1c821a, 0x001e0002,
|
||||
0x02450200, 0x00110081, 0x13320f82,
|
||||
0x15163221, 0x35222111, 0x21333634, 0x2b263435, 0x994d0101, 0x76290807, 0x475e2a01, 0x428b64fe, 0x26150149,
|
||||
0x4801f230, 0x2c333cb2, 0x8102c035,
|
||||
0x3cfe6e4f, 0x516061be, 0xfffe313d, 0x3c434437, 0x051f4300, 0x4d033e2c, 0x15000b00, 0x33130000, 0x2e4a3315,
|
||||
0x232b0805, 0x33111321, 0x013d3632,
|
||||
0x26232634, 0x4c58ed87, 0x8cfe574d, 0x292cb587, 0x4d032d27, 0xd27761cc, 0x3d026077, 0x513506fe, 0x823d4aed,
|
||||
0x0001229b, 0x209b8230, 0x469b8231,
|
||||
0x1d2608fb, 0x3b161401, 0x6e491501, 0x01d43c06, 0x30defe5d, 0xcf694026, 0x4a5aa3fe, 0x4381024a, 0x4ffb4a3b,
|
||||
0x7158432c, 0x4e5871ef, 0x87830963,
|
||||
0x1d4d1620, 0x4eda8205, 0x1e2407f9, 0x11013b01, 0x2008dc82, 0xfe86eacc, 0x4a4d5790, 0x3b371a3b, 0x282eb37d,
|
||||
0xfccc8102, 0xd27760b3, 0xa3cb6078,
|
||||
0x011c575d, 0x828a83fa, 0x822420d3, 0x84412050, 0x831f208b, 0x1532254b, 0x15212314, 0x17208d8b, 0x3806c74f,
|
||||
0x0622012b, 0x8686f4c7, 0x3f2df0fe,
|
||||
0x59c4feec, 0xd03d4a4a, 0x3025262f, 0x365b837a, 0x5145b7be, 0x72574333, 0xc85872ee, 0x4543316a, 0x00003c36,
|
||||
0x822d0001, 0x0336245b, 0x8310004d,
|
||||
0x36342159, 0x2323e182, 0x43331522, 0x2d3605ac, 0xc65a4a9f, 0x9a9a598a, 0x81029f87, 0x88446666, 0x02c2fd43,
|
||||
0x0082003e, 0x26000226, 0x3e020dff,
|
||||
0x1d209384, 0x25098d46, 0x3d363233, 0x904a2301, 0x83112006, 0x08e683a1, 0x7301cb2b, 0xfffe5a4a, 0xed396383,
|
||||
0x3a4b485d, 0x88b62f28, 0x8102394c,
|
||||
0x567456fd, 0x344c3043, 0x72ed7457, 0xfcfebb57, 0xfb013946, 0x205b8233, 0x06ef4a01, 0x0f004d22, 0x33205982,
|
||||
0x2108da82, 0x23111516, 0x2b263411,
|
||||
0x24231101, 0x475df287, 0xbc2d2786, 0xcc4d0387, 0x3bfe6d4f, 0x3d49b901, 0x9385c1fd, 0x2305c747, 0x0009004d,
|
||||
0x4d052147, 0x13200689, 0x2e2ace82,
|
||||
0xfdc04701, 0xb6c0c0f9, 0x79829b9b, 0x4343c22f, 0x1001fa01, 0x00020070, 0x010dff72, 0x22ff82fb, 0x8613000f,
|
||||
0x012b29c7, 0x3e323335, 0x23113502,
|
||||
0x722c3883, 0x5c487f01, 0x292c79db, 0xeef80921, 0x472c3c84, 0x06434f6c, 0x0233361e, 0x700f0161, 0x0c20af8c,
|
||||
0x33294182, 0x33373311, 0x03230109,
|
||||
0x29ac8323, 0xfe88f009, 0x9e2301f2, 0xaf8207f1, 0xfb39fe2a, 0xa0fedffe, 0xd8fe2801, 0x7b413682, 0x82352006,
|
||||
0x8409207b, 0x2fad8679, 0xc444012d,
|
||||
0xbebef8fd, 0xf6fc4d03, 0xc6024343, 0x27432782, 0x05374e09, 0x82080d41, 0x1e233c08, 0x475d8301, 0x232e2884,
|
||||
0x0284584e, 0xfe6d4e81, 0x49b8013a,
|
||||
0x02c2fd3d, 0x82c2fd3e, 0x0025263b, 0x023f0200, 0x05114181, 0x49413220, 0x01252d0a, 0x84465e76, 0x85bc2d28,
|
||||
0x6c4f8102, 0x4b213583, 0x8231823b,
|
||||
0x1900212e, 0x4b200482, 0x0f223382, 0x99821f00, 0x16141524, 0x3a43013b, 0x073d4f05, 0xc9511d20, 0x9f25080a,
|
||||
0x3f4c402d, 0x7a2e272d, 0xea1e282e,
|
||||
0x5a4a4a5a, 0x49495bea, 0x58e5b901, 0xf2513339, 0x803d3d48, 0x73ef7356, 0x82048456, 0x1e002556, 0x46020dff,
|
||||
0x9f435b82, 0x08cc4d05, 0x13231522,
|
||||
0x32081b4a, 0x5982011e, 0xfc5b4b4d, 0x2fc48686, 0x025a3827, 0x82705981, 0x03f32a41, 0x3905fe31, 0x4a050146,
|
||||
0x2047832d, 0x20478228, 0x2347873c,
|
||||
0x35231101, 0x22067642, 0x4a231733, 0x3b2705a7, 0x863c0201, 0x82475dea, 0x4b862a90, 0xb32e2838, 0x8cfc8102,
|
||||
0x2e8782f3, 0x32435871, 0x46fbfe45,
|
||||
0x00000039, 0x823a0001, 0x8229204c, 0x820a2047, 0x1521210c, 0x23343b84, 0x22013411, 0x4eef0701, 0x8102882a,
|
||||
0xfe5f2f43, 0xc2bf0150, 0x00251e82,
|
||||
0x0200001b, 0x202b8249, 0x210c821d, 0x31532115, 0x47322006, 0x22080828, 0x2b263436, 0x35262201, 0x19023334,
|
||||
0x2218b2fe, 0x46f01822, 0xfe434348,
|
||||
0x1d65016f, 0xf5222025, 0x829c4a3d, 0x2b3b2e4f, 0x4c673a29, 0x4143665c, 0x446b3958, 0x204a82bd, 0x2fd08300,
|
||||
0x00280335, 0x13000012, 0x15331533,
|
||||
0x16141123, 0x4a820582, 0x3339d782, 0xdddd86d2, 0x6760542a, 0x03a5a53d, 0xfe43a728, 0x43294977, 0x9f01623d,
|
||||
0x097b4243, 0x4706df41, 0x1123053f,
|
||||
0x82211133, 0x8424353a, 0x88bb2e28, 0x455e86fe, 0x46fe8102, 0x3e023c48, 0x6d4e7ffd, 0x15203384, 0x4f20c782,
|
||||
0x06203382, 0x33079346, 0x93881523,
|
||||
0xbcbf8897, 0xc6fd8102, 0x7ffd3a02, 0x09000100, 0x5a202382, 0x0c202382, 0x1b342386, 0x23033301, 0x0923010b,
|
||||
0x48423b88, 0x65883d3f, 0x982a2c98,
|
||||
0x01232f83, 0x8371fe8f, 0x30012333, 0x3782d0fe, 0x37821f20, 0x00217182, 0x0837830b, 0x33371721, 0x27231303,
|
||||
0x1f132307, 0x7a989084, 0x8f84cecf,
|
||||
0x02cc8190, 0xfef5f581, 0xf8b7fec8, 0x844401f8, 0xff0e248f, 0x8256020d, 0x8607206b, 0x23012b6b, 0xa1950e37,
|
||||
0xb5fe6aa8, 0xbc82656e, 0xe6011a29,
|
||||
0x00f38cfc, 0x82370001, 0x822c205b, 0x0c1f4727, 0xf5013735, 0x5301adfe, 0x66010bfe, 0x81029afe, 0x43fdfd3b,
|
||||
0x84160228, 0xff6f2c57, 0x03f5010d,
|
||||
0x001e00bc, 0x50330100, 0x1423053d, 0x45160706, 0x8b4906c9, 0x36273605, 0x3634013d, 0x3727ce01, 0x2f40462c,
|
||||
0x25552f6f, 0x6d8f7515, 0x0577536d,
|
||||
0x512bf134, 0xfc49471c, 0x69443750, 0x5e04015a, 0xf05d3b32, 0x5a827957, 0x01010023, 0x205b8201, 0x215b8262,
|
||||
0x5b820003, 0x01231129, 0x03616101,
|
||||
0x8f51fbbc, 0x46132077, 0x1721057f, 0x09a45306, 0x37226f82, 0x0582012e, 0x2b267d08, 0x62256f01, 0x8f6f6f90,
|
||||
0x52221276, 0x3e306e34, 0x03352d46,
|
||||
0xf05779bc, 0x5f313a5e, 0x695afcfe, 0xfc4e3944, 0x511c454b, 0x5a31f12b, 0x56000100, 0x0c024d01, 0x1900ec01,
|
||||
0x33130000, 0x33021e32, 0x33353632,
|
||||
0x012b0614, 0x23022e22, 0x23150622, 0x4bb03634, 0x23192816, 0x4e1d1913, 0x1c372b3a, 0x18241429, 0x2f4e1b1c,
|
||||
0x211bec01, 0x3c27301b, 0x1e241e62,
|
||||
0x5c43273a, 0xe4000200, 0x7f22bf82, 0x834f3302, 0x23053305, 0x23373311, 0x75013335, 0x9b0a8787, 0x4602f39b,
|
||||
0x2382766a, 0xdb827820, 0x2803e926,
|
||||
0x1d001500, 0x99420982, 0x56332005, 0x22330597, 0x34113526, 0x07013b36, 0x33161411, 0x01222311, 0x82822f38,
|
||||
0x2f210800, 0x3535404b, 0x235f4b40,
|
||||
0x033d223c, 0xfe307428, 0x75753021, 0x2101523d, 0xfe8d3d52, 0x011f38d5, 0x204882df, 0x07c74c00, 0x97411520,
|
||||
0x24568209, 0x21152111, 0x08848211,
|
||||
0x36343521, 0xaff82801, 0xa4a4372a, 0x63fe1e01, 0x03555c5c, 0x3d514328, 0xc5fe4691, 0x46800145, 0x82775a91,
|
||||
0x49002036, 0x18200757, 0x21063342,
|
||||
0x42821503, 0x31570384, 0x1a352708, 0x8e8a898e, 0x00827ed9, 0x82718721, 0x28033100, 0xa3015dfe, 0x2f12fafd,
|
||||
0x51512e62, 0x142f622e, 0xfe26e382,
|
||||
0x660124ff, 0x0741bc03, 0x82372005, 0x821120ca, 0x68fe2103, 0xb7260082, 0x98046dfe, 0x23826efe, 0x80ff392a,
|
||||
0x28032a02, 0x33002700, 0xa6826d82,
|
||||
0x4f0afa43, 0x6d53065d, 0x08355608, 0x23133208, 0x1614010e, 0x3536013b, 0x01c32634, 0x18effe37, 0xc2182121,
|
||||
0x3737423d, 0xa1fe3c3e, 0x261d2701,
|
||||
0x3cb81d26, 0x483f3f4b, 0x1f1891f7, 0x27ab1920, 0x08e78226, 0x292a3b23, 0x6053703b, 0x4f6d2c30, 0x2c414361,
|
||||
0x4f713b29, 0x6b2f305e, 0x93fe5c50,
|
||||
0x39543801, 0x3a29471c, 0x28008200, 0x02670002, 0x03fc01b0, 0x20b78516, 0x20fb8213, 0x2b038225, 0x01878767,
|
||||
0x0387870e, 0x66666616, 0x212c1982,
|
||||
0x4102e9ff, 0x13003f03, 0x4c002500, 0x83096b41, 0x45152095, 0x9f08062e, 0x020e2237, 0x031e1415, 0x013e3233,
|
||||
0x27012e10, 0x14071e32, 0x2223070e,
|
||||
0x3435082e, 0x0f01063e, 0x231c5886, 0x86581c23, 0x4b38372a, 0x13354e44, 0x44361c0e, 0x29585a36, 0x2b5b5828,
|
||||
0x1e273742, 0x02060c13, 0x130c0602,
|
||||
0x4237271e, 0x333c272b, 0x0f152026, 0x03020509, 0x271c1009, 0x7602473a, 0xda233125, 0x42262f23, 0x4534da36,
|
||||
0x8b521a8b, 0x547d5f76, 0x9a35112b,
|
||||
0x37993a01, 0x1d0d073e, 0x5936381f, 0x59548054, 0x1d1e3837, 0x0d05070d, 0x37212011, 0x394f5236, 0x385f5d47,
|
||||
0x08161c36, 0x782eeb84, 0xeb016d01,
|
||||
0x12002903, 0x00001a00, 0x274a3313, 0x05da5105, 0x34354808, 0x17012b26, 0x15062223, 0xb0013b14, 0xfe3340c8,
|
||||
0x39392cf2, 0x1812a32c, 0x2a56cfa6,
|
||||
0x03811d1e, 0xfe4e3b29, 0x3a3c4fcd, 0x18232650, 0x4c241da4, 0x5a000200, 0x0902a400, 0x06003602, 0x00000d00,
|
||||
0x07153701, 0x852f1517, 0x01273406,
|
||||
0x8f8fc841, 0x8fc9e7c8, 0x8d01c98f, 0x6a6a5fa9, 0x853cad5f, 0x01002b06, 0xf1005100, 0xdc011102, 0x35820500,
|
||||
0x3523152e, 0x11023521, 0x0184fe44,
|
||||
0x45a6ebdc, 0x0121a782, 0x19cb5600, 0x2e000431, 0x35021601, 0x10003f03, 0x21001600, 0x85002c00, 0x071421c7,
|
||||
0x2a05bb4d, 0x2315012b, 0x32331513,
|
||||
0x83272334, 0x33162aca, 0x26343632, 0x14163227, 0x056b5406, 0xb2b53d08, 0x282a2920, 0x3e512d3d, 0x2e2e523e,
|
||||
0x7e7e5614, 0x7f7f5756, 0x98986c57,
|
||||
0x9a986b6c, 0x242fc402, 0x430f1833, 0x8d464747, 0x76761d01, 0x5d5c8d67, 0x8abe8b8d, 0xa0e8a12e, 0xa27374a0,
|
||||
0x0026ae82, 0x02bb0253, 0x874b0310,
|
||||
0x15212a05, 0xbd015321, 0x160343fe, 0x2bb7825b, 0x01740002, 0x03f00191, 0x000f004d, 0x59055f4a, 0xff470fa9,
|
||||
0x95e72f0c, 0x3e36363e, 0x35353e95,
|
||||
0x7f17131f, 0x04841317, 0x414d033a, 0x434f9a4f, 0x4f9a5042, 0x2ab08441, 0xb2292526, 0x00222228, 0x51000200,
|
||||
0x23580482, 0x580f2005, 0x11200d25,
|
||||
0x51218582, 0x052958bb, 0x40fec02c, 0xa6a6dc01, 0xfeb3b345, 0x928245ae, 0x00010029, 0x01a001b5, 0x412a03ae,
|
||||
0x142108f1, 0x05cd5b07, 0x32333526,
|
||||
0x012b3435, 0x20080686, 0x2823aeb5, 0x22292a2a, 0x21218eae, 0x21214545, 0x402a038e, 0x2224352f, 0x303c3034,
|
||||
0x3d313d3e, 0x224c823e, 0x82b20001,
|
||||
0x03b2224b, 0x06374528, 0x22254785, 0x1533011d, 0x061e5421, 0x26342508, 0x8fd7012b, 0x21282920, 0xffb61d4d,
|
||||
0x49232600, 0x0f14140f, 0x4028036d,
|
||||
0x3a3a2e2f, 0x31773047, 0x23322238, 0xe3244b84, 0xd1019d02, 0x2a064741, 0xe3071537, 0xe202eeee, 0x841a5f34,
|
||||
0xff28241b, 0x823d020d, 0x820e2067,
|
||||
0x112122e9, 0x21018523, 0x64822622, 0x7e01bf37, 0x2a6d6c7b, 0x03545344, 0x03e5fb28, 0x023afcc6, 0x6a688636,
|
||||
0x28eb858d, 0x014a01ee, 0x00bf0175,
|
||||
0x32378203, 0xee231533, 0xbf018787, 0x00010075, 0x010dfff4, 0x83ceff6f, 0x33172917, 0x7bf42307, 0xc1324f2c,
|
||||
0xcc2d1782, 0x9101a101, 0x09002a03,
|
||||
0x33130000, 0x31318211, 0x23113335, 0xc53a83d4, 0x2a033a42, 0x2f2fa6fe, 0x58822901, 0x74000228, 0xf0016c01,
|
||||
0xd7412903, 0x1338262f, 0x12174e17,
|
||||
0x37048212, 0x42290313, 0x4251994f, 0x50995142, 0x2b979141, 0x992a2425, 0x00242428, 0x270f4343, 0x07151713,
|
||||
0x37273735, 0x5a320685, 0x8f8fc9c9,
|
||||
0x8fc8c8e7, 0xac36028f, 0x695faa3c, 0x06855f6b, 0x04000024, 0x3c821700, 0xbb824e20, 0x0d000328, 0x1b001800,
|
||||
0x1d5c0000, 0x20c58705, 0x2ecf8401,
|
||||
0x23352315, 0x33073735, 0xfe49fc01, 0x82064c2c, 0x39412fd9, 0x295aac01, 0x99924529, 0x28036363, 0xe787d8fc,
|
||||
0xfe8ffe2d, 0x45472dec, 0x00cbc535,
|
||||
0x82150003, 0x864f205b, 0x9128205b, 0x41322059, 0x23200af9, 0x0806f941, 0x26343523, 0xfa01012b, 0x4b2bfe4a,
|
||||
0xc63b8206, 0x57013942, 0x2929218e,
|
||||
0xb51d4c21, 0x492325fe, 0x1014150f, 0x2e6f8d6d, 0x3b2e303f, 0x77304739, 0x18233930, 0x83002219, 0x821e20d3,
|
||||
0x84462077, 0x000e2477, 0x852c0011,
|
||||
0x20c98e79, 0x088a5533, 0x4208bc42, 0x012106c3, 0x24e483f5, 0x285ba501, 0x2cde8228, 0x40fe6464, 0x2a2822a2,
|
||||
0xa221292a, 0x05d44282, 0x80838220,
|
||||
0x87880121, 0xb60221e8, 0x2910e242, 0x30000200, 0x34020dff, 0x03573402, 0x21052305, 0xe0872622, 0x055f3320,
|
||||
0x33162a09, 0x35230321, 0xfe340233,
|
||||
0x0f045793, 0x62240125, 0x57f38787, 0x02220d03, 0xde827470, 0x56030021, 0xbd20069b, 0x0b220982, 0x9d560f00,
|
||||
0x1713230d, 0xa1562715, 0xee73220c,
|
||||
0x0aa456ee, 0x4fbd0321, 0x439d05eb, 0x07153722, 0xc320438c, 0x8920438d, 0x8d055f43, 0x8e122043, 0x17332387,
|
||||
0x2c572723, 0x98c6260e, 0x4f527579,
|
||||
0x228e8c75, 0x914e4e76, 0x8e1d20d3, 0x3423244b, 0x49163233, 0x2324065c, 0x06222622, 0x8c2e9d8c, 0x5a2d8855,
|
||||
0x55181a1e, 0x57334342, 0x5e8b163a,
|
||||
0x2c655828, 0x392b1c10, 0x63831732, 0x37410420, 0x8e13200e, 0x06b34765, 0x47205b8c, 0x8c05c047, 0x05cb47b2,
|
||||
0x0000202c, 0xbd034402, 0x17001300,
|
||||
0x49822300, 0x2705574a, 0x27231307, 0x13230723, 0x28055950, 0x27033303, 0x33171415, 0x06575f36, 0x5e023708,
|
||||
0xb2172227, 0x21d62186, 0x2117b186,
|
||||
0x5bbc5b54, 0x19351a38, 0x031b311c, 0x39211cbd, 0xeefc0d28, 0x1203b0b0, 0x2239280d, 0x24feec1b, 0x35afdc01,
|
||||
0x1d06071c, 0x6a821f35, 0x00266582,
|
||||
0x28034b02, 0x71820300, 0x03130025, 0x5f271133, 0x2f080516, 0x15331523, 0x03231121, 0x752cd023, 0xcad1019f,
|
||||
0xfeca7d7d, 0x651f7ece, 0x60fee902,
|
||||
0x3f3fa001, 0xbe4360fe, 0xfe010143, 0x000200fa, 0x020dff3c, 0x57053f58, 0x33220c59, 0x55571521, 0x33132306,
|
||||
0x45582307, 0x7b63230f, 0x49584f2c,
|
||||
0xa6fc220f, 0x579383c1, 0xbd24052b, 0x0f000b00, 0x230d0558, 0x27151713, 0x220c0958, 0x58eeee60, 0x8342080c,
|
||||
0x58022007, 0x3f930643, 0x07153722,
|
||||
0xb0203f8c, 0x7f423f8b, 0x203f8b06, 0x427f8e12, 0x428c057d, 0x7d42b320, 0x42868a05, 0xc78b087b, 0x498f1320,
|
||||
0x25231525, 0x8c231533, 0x4234204a,
|
||||
0x4a8a0515, 0x66666623, 0x58cf9100, 0x3720083d, 0x58050f41, 0x0b410541, 0x05445805, 0x8e43d820, 0x233b9b05,
|
||||
0x0715013f, 0x41087d58, 0x3b850507,
|
||||
0x8643a420, 0x413b8c05, 0x77890507, 0x85080741, 0x0903417a, 0xd8254285, 0x004e4e76, 0x0c874103, 0x418aff85,
|
||||
0x4285ff88, 0x4286fb89, 0x8382fa83,
|
||||
0xfeff192e, 0x28034a02, 0x1b000d00, 0x21130000, 0x29050561, 0x23112123, 0x11133335, 0x50821533, 0x36323208,
|
||||
0x26341135, 0x7e013423, 0x42565543,
|
||||
0x1b1b82fe, 0xaf7e7e87, 0x2b36362b, 0x597c2803, 0x7a597efe, 0x01428301, 0x42defe22, 0x3a55c1fe, 0x553d8201,
|
||||
0x57578200, 0xbd22050b, 0x57840900,
|
||||
0xa1583320, 0x44132007, 0xb3581013, 0x44872008, 0xc2580d0f, 0x4403200b, 0x03220b10, 0x60822000, 0xbd034327,
|
||||
0x1f000f00, 0x1c295800, 0x82262221,
|
||||
0x373624ba, 0x58271517, 0x1f2214d1, 0xd458eeee, 0x34952319, 0xb3451a45, 0x236baa06, 0x0715013f, 0x6f206b94,
|
||||
0x61226b9b, 0x6b8f5f34, 0x01592620,
|
||||
0x42d7861b, 0x6e940525, 0x35437220, 0x23de9a05, 0x004e4e76, 0x3120df8e, 0xbf4173a2, 0x207e9410, 0x0dcb4138,
|
||||
0x30208699, 0x4509e945, 0x6b4105e7,
|
||||
0xa1272009, 0x4527208d, 0x839406fb, 0xed430d20, 0x317b9905, 0x66666695, 0x01000000, 0x02017a00, 0x6d02e901,
|
||||
0x71820b00, 0x63173721, 0x280808c5,
|
||||
0x8584317a, 0x2f7f8335, 0x7f367f82, 0x842f3e02, 0x81853484, 0x357f8231, 0x0300007f, 0xbeff0e00, 0x56035602,
|
||||
0x1f001700, 0x25a98300, 0x37173233,
|
||||
0x43640733, 0x225d0806, 0x37230727, 0x34113526, 0x01111736, 0x22012b26, 0x16010506, 0x3632013b, 0x1df7bb35,
|
||||
0x3b551f13, 0xf741552d, 0x58271915,
|
||||
0x29542a41, 0x271d0a01, 0x01372c63, 0x1af7fe27, 0x362b632b, 0x380a2803, 0xfe59406a, 0x097a597e, 0x5b3d7b49,
|
||||
0x7c598201, 0x017efed5, 0x3d552aea,
|
||||
0x542615fe, 0x61b3823b, 0xc74607d3, 0x13002105, 0x2312f159, 0x27151713, 0x220cf559, 0x59eeee70, 0x02210ff8,
|
||||
0x08c744eb, 0x9b053f5a, 0x1537224f,
|
||||
0x204f8c07, 0x204f92c0, 0x08db44b7, 0x1a214f89, 0x429f9500, 0x528c05bd, 0xb542c320, 0x44a69105, 0x538905ef,
|
||||
0x55441720, 0x11e75a05, 0x8c07c14f,
|
||||
0x42442056, 0x56910509, 0x66666625, 0x51020000, 0xbd230603, 0x53000800, 0x032407a5, 0x03112311, 0x615af082,
|
||||
0x83062006, 0x5afe20ea, 0x02210864,
|
||||
0x5ce68365, 0x0c2209f3, 0x61571400, 0x06142308, 0x8455012b, 0x26342906, 0xf7862823, 0x43555642, 0x2c09f55c,
|
||||
0x67698ea7, 0x3d029b88, 0x9861a3fe,
|
||||
0x097f5164, 0x28004d22, 0x2407c94e, 0x011e0706, 0x64458315, 0x2b20066f, 0x26059166, 0x012b2634, 0x82150622,
|
||||
0x343e0897, 0x4eb9e036, 0x2b2b315a,
|
||||
0xb54b5d39, 0x373c2d7b, 0x20606028, 0x5b2d2921, 0x4f8a302d, 0x5c724d03, 0x0a087049, 0x91614d75, 0x41457443,
|
||||
0x4151435d, 0x3a3f4952, 0x6c026ffd,
|
||||
0x03005988, 0xf0821e00, 0x48034524, 0xf5821100, 0x2d5a0b82, 0x1701231a, 0x315a2715, 0xe9fe2316, 0x355aeeee,
|
||||
0x05032511, 0x001a4534, 0x032363ac,
|
||||
0x96071537, 0x93c72063, 0xd1022162, 0x8d056042, 0x002121c7, 0x5a06b946, 0x032014f5, 0x96056842, 0x42c42066,
|
||||
0xcd930572, 0x41086748, 0x2c200b33,
|
||||
0x1e456b9d, 0x20769610, 0x0e2045fe, 0x2110825b, 0x034ba002, 0x0db7410d, 0x859c2220, 0x16450120, 0x207b9706,
|
||||
0x050f43bd, 0x6623f393, 0x4d006666,
|
||||
0x452a088b, 0x11006603, 0x2a001a00, 0x6f9c3700, 0x786a0320, 0x064b6611, 0x22012b22, 0xa8318496, 0x2122275e,
|
||||
0x20285e28, 0x0f152221, 0x311c251f,
|
||||
0x318e921b, 0x39211c23, 0x231b1b23, 0x3d1b2239, 0x24141035, 0x9b821f35, 0x10000339, 0x56020000, 0x1d008102,
|
||||
0x32002600, 0x33010000, 0x2b141532,
|
||||
0x82141501, 0x21153574, 0x36343522, 0x3435013b, 0x35012b26, 0x36173233, 0x06222303, 0xa46b1a84, 0x08938207,
|
||||
0x7e01062e, 0x88656573, 0xfe6d2f22,
|
||||
0x36326851, 0x72241c8c, 0x1a1a309c, 0x262d424e, 0x654c2722, 0x1c1c2359, 0x1f211823, 0xb7be8102, 0x43335145,
|
||||
0x30051a5d, 0xfe111143, 0x434437bc,
|
||||
0x7581013c, 0x35464331, 0x258b8237, 0xff300002, 0xdf5c020d, 0x089b4b05, 0x4b0de15c, 0xe55c059b, 0x7b98230c,
|
||||
0xe95c4f2c, 0x4dfd240d, 0x5b0300c1,
|
||||
0x482206af, 0xd7481300, 0x5cd78306, 0x03231aa1, 0x5c271517, 0x182216a5, 0xbc87eeee, 0x240ba85c, 0x45344601,
|
||||
0xb1b6821a, 0x3713236b, 0x6b960715,
|
||||
0x6b963820, 0xaa431220, 0x206b8e05, 0x21795d26, 0xb0431320, 0x206e9605, 0x07b0433b, 0x2611875d, 0x4e764601,
|
||||
0x4104004e, 0x9d470e47, 0x1ceb5d05,
|
||||
0x30430320, 0x46729606, 0x5141063f, 0x46662015, 0x335d0543, 0x5d482005, 0x17221033, 0x335d2715, 0xee612507,
|
||||
0xfd8102ee, 0x2005335d, 0x0588410b,
|
||||
0x5f650220, 0x23379006, 0x0715013f, 0xab203787, 0xd7203789, 0x89085f47, 0x5c10206f, 0x3b410bf5, 0x203a8706,
|
||||
0x072c41ae, 0xd3447687, 0x223f8908,
|
||||
0x8d11000d, 0x05394c41, 0x2f204287, 0x87072c44, 0x05334d42, 0x24058b47, 0x000a004d, 0x2a3d8221, 0x013b1411,
|
||||
0x11353632, 0x4c032223, 0x2b210642,
|
||||
0x05a44a01, 0x08068360, 0x6554aa31, 0x38d6272e, 0x5e100120, 0xd35e4949, 0x3c43465e, 0x2d281601, 0xfee301d9,
|
||||
0x493b6ccc, 0x0f017701, 0x29fe6c4f,
|
||||
0x6d4e4f6c, 0x51482d01, 0x4c313325, 0x3f260643, 0x0d004803, 0x7f441f00, 0x5e232007, 0x474c06bf, 0x08875d12,
|
||||
0x5d0e484c, 0x02210b96, 0x095545e3,
|
||||
0x9f5d0320, 0x4c5f8205, 0xa15d0747, 0x1737231e, 0xa55d2715, 0xee312214, 0x15a85dee, 0x434cc720, 0x00192405,
|
||||
0xa94b0200, 0x013f2367, 0x67940715,
|
||||
0x67978120, 0x3f4c9320, 0x20678b05, 0x21715e26, 0x67433720, 0x206a9405, 0x05384284, 0x7624d696, 0x00004e4e,
|
||||
0x200d3f41, 0x476fa231, 0x7a94101c,
|
||||
0x1a474a20, 0x2082950d, 0x09c74162, 0xc7410420, 0xa227200e, 0x06ef4389, 0x05207f94, 0x9505f042, 0x66c72477,
|
||||
0x83006666, 0x00512cfb, 0x021102d1,
|
||||
0x00030099, 0x820b0007, 0x20518271, 0x25038211, 0x21152107, 0x008287ee, 0xc0019d2c, 0x2a0140fe, 0x58c80159,
|
||||
0x25824565, 0xb1ff192c, 0xd9024b02,
|
||||
0x1e001400, 0x2f822800, 0x33372123, 0x061f5807, 0x5c230721, 0x362205c7, 0x5a6f1517, 0x6f052007, 0x3008056e,
|
||||
0xbd34013d, 0x54300401, 0x5a4a413b,
|
||||
0x32582cea, 0x3c4a252d, 0x1810e810, 0x01272f7a, 0x1611dd23, 0x022d3f4c, 0x236d5881, 0x5673ef91, 0x55125a4f,
|
||||
0x31078257, 0x1d2fe5c8, 0x3b09ad01,
|
||||
0x0967fe1e, 0x12f25133, 0x0f450200, 0x05e94308, 0x230cdd5e, 0x27151713, 0x2209e15e, 0x5eeeee6f, 0x02240be4,
|
||||
0x1a45348d, 0x37223f9e, 0x3f890715,
|
||||
0x3f8ebf20, 0x274b5920, 0x00242805, 0x03410200, 0x4b0d0048, 0x11240527, 0x013b1614, 0x44065d5f, 0x428906af,
|
||||
0x7842c220, 0x42868d05, 0x4789066f,
|
||||
0x95641120, 0x44498d05, 0x4a8905b7, 0xc8414320, 0x414a8d05, 0x022605bf, 0x0dff0e00, 0x93825602, 0x2606bd41,
|
||||
0x0133011b, 0x82033723, 0x08315fcd,
|
||||
0xcc841f20, 0x2105345f, 0x78451403, 0x00022805, 0x0212ff1e, 0x824d0346, 0x651720cb, 0xf44b0b17, 0x11352708,
|
||||
0x1e232634, 0x7961fc86, 0x4d03360b,
|
||||
0xef7059cc, 0x03ee5673, 0x3808fe2b, 0x4b030146, 0x0000002c, 0x20838c03, 0x067f5d0f, 0x9d428583, 0x20898806,
|
||||
0x86c8889b, 0x5448208d, 0x03200dcb,
|
||||
0x2005c953, 0x0aed6c01, 0x15211323, 0x0c115521, 0xbd013324, 0x0f5543fe, 0x845b200c, 0x0d574a83, 0x201b474b,
|
||||
0x49528201, 0xfe2116cc, 0x4a5d84a9,
|
||||
0x032110c4, 0x20648205, 0x0cbf5503, 0xbd551920, 0x5614200f, 0x0e240521, 0x26222301, 0x352bb18c, 0x2d2b4173,
|
||||
0x7a0c723b, 0x8c7b5152, 0x322526b8,
|
||||
0x4a402730, 0x4cbe8249, 0x28200e6b, 0x211ca54a, 0x6a8b3301, 0xab20c997, 0xd092758b, 0x20087c89, 0xff200002,
|
||||
0x034a020d, 0x001a0028, 0x2100001e,
|
||||
0x23072327, 0x07133313, 0x011d010e, 0x3b011e14, 0x081b5e01, 0x010b3c08, 0xbe010333, 0x8621d621, 0x74b7b7b6,
|
||||
0x360f1a1f, 0x64953539, 0x191f1840,
|
||||
0xb05bbc5b, 0xfc2803b0, 0x180920d8, 0x1c1e1214, 0x3d2f430f, 0x091f1e20, 0x24fef202, 0x0000dc01, 0x821e0002,
|
||||
0x024b2b63, 0x00250081, 0x2900002e,
|
||||
0xd6672201, 0x21352509, 0x11151632, 0x13206e92, 0x2307f14a, 0xeafebf01, 0x2208ec67, 0x8b475e2a, 0x6775207a,
|
||||
0xda4a05fb, 0x6e4f2306, 0x828e3cfe,
|
||||
0x375e0129, 0x003c4344, 0x6e020000, 0x1b5006bf, 0x05b75f07, 0x16141122, 0x23097f56, 0x0715013f, 0x220f7f56,
|
||||
0x56eeee52, 0x61230f7e, 0x831a5f34,
|
||||
0x8230204f, 0x03312504, 0x00130048, 0x8516334b, 0x0c334b4f, 0xeeee6922, 0x200d324b, 0x055b4493, 0x0222a182,
|
||||
0x9b9a0328, 0x15333722, 0x22101b57,
|
||||
0x8f87875d, 0x6695219b, 0xeb82ea82, 0x4f859ba0, 0x74229b8c, 0x9b8d8787, 0x4c83c720, 0x820b3741, 0x411320f6,
|
||||
0x37261237, 0x17332723, 0x3a413337,
|
||||
0x56ec200f, 0x077008f2, 0x761f230c, 0xa7714e4e, 0x053f4108, 0x734c5788, 0x8725200d, 0x21a68c57, 0x57850301,
|
||||
0x5120ab8d, 0x2b055b51, 0x02000028,
|
||||
0x00bd033d, 0x00130009, 0x45665583, 0x56252008, 0x01200813, 0x68705585, 0x5501210f, 0x70705686, 0x4703210f,
|
||||
0x032cb084, 0x00000a00, 0x4d035702,
|
||||
0x16000b00, 0x33225b84, 0xc5693335, 0x33013812, 0xc9972307, 0x4bc4fe73, 0x16333f42, 0x9a6b3330, 0x71012327,
|
||||
0x6944266a, 0x3e2310ce, 0x82c14e01,
|
||||
0x56002052, 0x282057bb, 0x64205c82, 0x1322af82, 0x6b5f1e00, 0x08b18709, 0x35013b32, 0x14151323, 0x013b011e,
|
||||
0x06222311, 0x4686f1a7, 0x57aefe46,
|
||||
0xcc5a4a4d, 0x371a06f1, 0x2e955f3b, 0x37160328, 0x45fd5b37, 0x78d27760, 0xfbfe3a60, 0x5809846a, 0x2122116b,
|
||||
0xb7732111, 0x82132005, 0x0cad5807,
|
||||
0xbd012024, 0xab5843fe, 0x005b220a, 0x0e4b4d00, 0x4b4d2320, 0x82032021, 0x16d54c55, 0xb3455820, 0x13464d05,
|
||||
0x00206a83, 0x1920ab8b, 0x450f5d59,
|
||||
0xb58c0b4a, 0x3f452220, 0x45bc8a0a, 0xc7470cb3, 0x00132407, 0xa22d001f, 0x0cb845c3, 0x5620cd96, 0x930cb745,
|
||||
0x418287d4, 0x315a1b83, 0x87bb220f,
|
||||
0x20c48a87, 0x317f4166, 0x51821320, 0x4322b196, 0x514e8787, 0x00002816, 0xff330001, 0x7835020d, 0x2921058f,
|
||||
0x07234201, 0xef450782, 0xa9012312,
|
||||
0xbe738afe, 0x0be44509, 0xdb45bb88, 0x0200230e, 0x5f822400, 0x81024122, 0x21058b65, 0x6b6c2321, 0x013b2105,
|
||||
0x920a136d, 0x6d032069, 0x01260a1f,
|
||||
0x4a59b67d, 0x256d594a, 0x21768b07, 0x2c6dd05c, 0x72572406, 0x415872ee, 0x818e058b, 0x6dda0121, 0x6742073a,
|
||||
0x0e0f5c0c, 0x42067144, 0x01210c60,
|
||||
0x0f105c4a, 0x41056644, 0x67500e9b, 0x067d4522, 0x20169e41, 0x196750d2, 0x4e76d024, 0xb782004e, 0x2405434f,
|
||||
0x001700bd, 0x08cf6625, 0x16141122,
|
||||
0x200df174, 0x0dbd4227, 0x2010ff74, 0x0d30432d, 0xfe3d5523, 0x0c0b757f, 0xb7429520, 0x6e032007, 0x0327052b,
|
||||
0x00130048, 0x832b001d, 0x05bb7471,
|
||||
0x20152d6e, 0x6e778c03, 0x3343143b, 0x14476e0d, 0x433d0121, 0xab5008b9, 0x20ef8307, 0x23ef991b, 0x23153337,
|
||||
0x2111e575, 0x7147876c, 0x22dc8d07,
|
||||
0x8d000066, 0x9f2120d7, 0x821320d7, 0x22cd945f, 0x6f878743, 0x0121160c, 0x058f473d, 0x53432e20, 0x00172106,
|
||||
0x1322bf9a, 0xbf920733, 0x4d5f7220,
|
||||
0x23c08c09, 0x00c1a6fc, 0xc3870082, 0x13007f25, 0xa2001d00, 0x230721c3, 0x8320c394, 0xc4976682, 0x69827420,
|
||||
0x82000221, 0x63022300, 0x3b492803,
|
||||
0x33112505, 0x21153335, 0x33220382, 0x1f772315, 0x23113905, 0x21352117, 0x13018721, 0x88202088, 0x2187edfe,
|
||||
0xfe1301a8, 0x8d9b02ed, 0x5b2a0082,
|
||||
0x7301c0fd, 0x40028dfe, 0x46828989, 0x4b840120, 0x4d034126, 0x00001700, 0x45824984, 0x340d2570, 0x87462311,
|
||||
0x5dd0f0f0, 0x2d278647, 0x0346879a,
|
||||
0x5b373716, 0x092d703a, 0x84bb0221, 0x0c875e42, 0x60130021, 0x958205df, 0x37231122, 0x5e05d346, 0xcf460581,
|
||||
0x067f5e07, 0x53066346, 0x39821737,
|
||||
0x20078152, 0x05a8461b, 0x83077f52, 0x119b4638, 0x460af95e, 0x7d850e9b, 0x860e9746, 0x09134684, 0x17208789,
|
||||
0x8b0d0d53, 0x2091874d, 0x0c6c4613,
|
||||
0x29439887, 0x07bf4508, 0x28032f2d, 0x00002000, 0x33350129, 0x41352311, 0x23200517, 0x2a125645, 0xf1fe4201,
|
||||
0xfc01baba, 0x4567baba, 0x43240b46,
|
||||
0x4343a202, 0x3a45a882, 0x0573410e, 0x2405cb42, 0x001e004d, 0x22618922, 0x93153311, 0x8213205f, 0x26638216,
|
||||
0x01c0c0ec, 0x8b6dc047, 0x9b182662,
|
||||
0xfa01439b, 0x8ec18244, 0x6e032264, 0x62678570, 0x61600f2b, 0x08df600c, 0x41052747, 0x66210654, 0x07377a00,
|
||||
0x00810222, 0x410c9371, 0x0220073f,
|
||||
0x2d060655, 0x26000200, 0x42020000, 0x0d002803, 0x36821100, 0x3805af76, 0x36323335, 0x25231135, 0x01231133,
|
||||
0x4156e260, 0x372b79c2, 0x88c6fe64,
|
||||
0x0a937988, 0xd8fc4322, 0x0433a082, 0x0dff2800, 0x4d033802, 0x07000300, 0x1b001700, 0x82130000, 0x82032035,
|
||||
0x880520f0, 0x0883724b, 0x87873234,
|
||||
0x019b9b0a, 0x5c48f313, 0x292c51b3, 0x626c0921, 0x8b829b9b, 0x4d037f25, 0x72fd5c70, 0x02200f8f, 0x3c205b84,
|
||||
0x0c209b82, 0x7905d573, 0x17220af5,
|
||||
0xf9790733, 0x7bc2260d, 0x28034f2c, 0x0bfd79fe, 0x82c13221, 0x056747da, 0x43889f82, 0x8308d572, 0x87242143,
|
||||
0x200ad972, 0x204383c6, 0x0add724d,
|
||||
0x43834183, 0x2505cf76, 0x000500bd, 0xdf830009, 0x21152126, 0x07153713, 0x2105497a, 0x4c7aee02, 0x63032005,
|
||||
0x0021065e, 0x06077102, 0x8b56bd20,
|
||||
0x013f230f, 0x15730715, 0xeea22b07, 0xfdf802ee, 0x023c3c44, 0x5356ce7f, 0xff282308, 0xab7a020d, 0x85678805,
|
||||
0x8b0124e8, 0x84e0eefd, 0x1bfd22e1,
|
||||
0x20d78543, 0x732b822d, 0x23740573, 0x2307210e, 0xc8206387, 0x7d73cf84, 0xc5fc2305, 0x008200c1, 0x85000221,
|
||||
0x8b4d20cb, 0x330123cb, 0xcb852307,
|
||||
0x87060121, 0x4d032164, 0x2d252f86, 0x3f020000, 0x108b7403, 0x33822520, 0x01216787, 0x20688a97, 0x20678c44,
|
||||
0x0c334128, 0x86153321, 0x87e52467,
|
||||
0x82280387, 0xd10122ca, 0x415e8266, 0x6390062f, 0x2f820120, 0x80206388, 0x49743282, 0xeafe2106, 0xdb7b3582,
|
||||
0x052d410b, 0x05152526, 0x21152111,
|
||||
0x1022c982, 0xe37bf0fe, 0xacfe2905, 0xfe7f517f, 0x010045c2, 0x11286388, 0x21130000, 0x07153711, 0x2406a17c,
|
||||
0x11373507, 0x3b658223, 0xfdc4c0c0,
|
||||
0xbbbbbef8, 0xfe4d03be, 0x354635a4, 0x434398fe, 0x46334301, 0x003e0132, 0x200d4f63, 0x6341820d, 0x4982094f,
|
||||
0x22084163, 0x63eeeebe, 0x11420c35,
|
||||
0x00022205, 0x57408225, 0x7d840547, 0x200bbd74, 0x573f8313, 0x40820839, 0x520b2d57, 0x3f8205f5, 0x020dff25,
|
||||
0x4228033e, 0x7b88064f, 0x07331722,
|
||||
0x2009717c, 0x05b941cf, 0x4208757c, 0x252007bb, 0x37753b82, 0x847b9005, 0x837b883f, 0x847c8b40, 0x22bb8540,
|
||||
0x82bd033e, 0x8b10207b, 0x06194af7,
|
||||
0x0121fa88, 0x083a6058, 0x7f4e8288, 0x20ff8b06, 0x0f475814, 0x86884787, 0x8a8b4887, 0x76d20227, 0x01004e4e,
|
||||
0x22cb8300, 0x5428033e, 0x0121057b,
|
||||
0x0a604411, 0x23013d22, 0x28077e7d, 0x96db5c48, 0x0921292c, 0x09867d42, 0xe976a020, 0x02232406, 0x86affd51,
|
||||
0x023f2247, 0x05fd5081, 0x77057165,
|
||||
0x3422082c, 0x49832b26, 0x49828f83, 0x49837c20, 0x20085b76, 0x21478602, 0x6276db01, 0x0ebf6306, 0x23220b65,
|
||||
0x21152127, 0x24142d63, 0xfebd0121,
|
||||
0x1a2b6343, 0xef575b20, 0x596b830e, 0x6b831e2f, 0x20146157, 0x576b830f, 0x6783165f, 0xdf652020, 0x002d230a,
|
||||
0xad7e1300, 0x0d614b1e, 0x1f20dd94,
|
||||
0x7e0bb047, 0x6a4b18c7, 0x83eb8e08, 0x4beb9f83, 0xf5940c6d, 0x838a0d20, 0x4148fc96, 0x0b0b6508, 0x17001326,
|
||||
0x00002700, 0x09a14818, 0x2405585b,
|
||||
0x23073337, 0x20038225, 0x0e1d4103, 0xb07fb720, 0x6a432508, 0x7c01697a, 0x2a080482, 0x642a39a4, 0x2b35362a,
|
||||
0x02382b64, 0xfe5070d7, 0x6c6d50a6,
|
||||
0x515a0151, 0x9595e66f, 0xfeeffe95, 0x4b4b36a6, 0x375a0136, 0x82004d4d, 0x344f5900, 0xf7948b85, 0x86875f20,
|
||||
0x8382f496, 0x18020021, 0x2d08ef41,
|
||||
0x00190007, 0x22230100, 0x3b141115, 0x33490301, 0x33112206, 0x06e96a15, 0x58012508, 0x5c56565c, 0x887e0193,
|
||||
0xfe887171, 0x46465e82, 0xfe7be502,
|
||||
0xe5027d56, 0x44d2fe43, 0x4e43d0fe, 0x6bb4016d, 0x2c069b6c, 0x02000005, 0x0081025a, 0x002d001d, 0x0e276039,
|
||||
0x27222322, 0x08444b18, 0x32013b25,
|
||||
0x41073617, 0x05200ee1, 0x080beb4e, 0x63797e2a, 0x2f218e63, 0x182fae73, 0x43722f18, 0x72433636, 0xe91a1a2d,
|
||||
0x2f11221a, 0x1f221d21, 0x01011d22,
|
||||
0x1c1c235f, 0x1e221f23, 0x2c07d34f, 0x73561313, 0x135673ef, 0x3fffc813, 0x05c27938, 0xf34e4820, 0x00032208,
|
||||
0x249b8226, 0x00bd033d, 0x05696e11,
|
||||
0x6e211321, 0x1d2005d7, 0x10814018, 0x15372723, 0x85401807, 0xee762211, 0x884018ee, 0x065c6a14, 0x8f790220,
|
||||
0x48032505, 0x0e000a00, 0x230c9179,
|
||||
0x0715013f, 0x22079579, 0x79eeeeb3, 0x93200998, 0x2005435c, 0x067b7126, 0x032397a0, 0x91230733, 0x7b652397,
|
||||
0x98944f2c, 0xc1e9fc23, 0x21f28200,
|
||||
0x5f823a00, 0x8d05277a, 0x82132097, 0x2097874e, 0x89448206, 0x051b6198, 0x210b2f41, 0xa7580020, 0x07f57305,
|
||||
0x182b2621, 0x4f0ab141, 0x9a9106d5,
|
||||
0x21462420, 0x187e2007, 0x2311bf41, 0x4e4e7662, 0x00219e82, 0x0a374102, 0x37411120, 0x0652550c, 0x0121a287,
|
||||
0x084b554d, 0x2006d87a, 0x46428351,
|
||||
0x1d2209af, 0x42182100, 0x3f231f05, 0x18071501, 0x22170942, 0x18eeee1e, 0x57110c42, 0x1b26073f, 0x49020000,
|
||||
0x694e4803, 0x15012105, 0x841b417b,
|
||||
0x17457b63, 0xeeee2c22, 0x2011487b, 0x05575793, 0xa207eb46, 0x331323c7, 0xc7972307, 0x2c7b2f23, 0x20c8914f,
|
||||
0x05876efc, 0x0dff1b22, 0x4106077c,
|
||||
0xa863062b, 0x13097c05, 0xc7976384, 0x2f423d20, 0x0e117c05, 0xc14dfd22, 0x220a876c, 0x4124001d, 0x39421f8f,
|
||||
0x20ca9706, 0x05f141b8, 0x9757cd91,
|
||||
0x09974108, 0xcf996b86, 0xd2976b87, 0x21077371, 0xd58e4381, 0x52765121, 0x3826057b, 0x2c020dff, 0x7d5e2803,
|
||||
0x15212306, 0x01821123, 0x0733132a,
|
||||
0xf4013823, 0xbcbb85b4, 0x29057741, 0xe5021bfd, 0x00c1e9fc, 0xaf4b0002, 0x00282405, 0x7d160012, 0x3a83141d,
|
||||
0x200a217d, 0x7d3f844a, 0xfd230b25,
|
||||
0x8200c14d, 0x82382047, 0x032c2204, 0x207782bd, 0x8647820e, 0x061c4377, 0x01217a85, 0x08284145, 0x62207e83,
|
||||
0x20051743, 0x2237822d, 0x98610353,
|
||||
0x8225207f, 0x4c7f8aba, 0x808b0609, 0x7f82e020, 0x45180120, 0x0f20080b, 0x554f7d82, 0x22fd830a, 0x82bb9063,
|
||||
0x888831fb, 0xd2019085, 0x43431301,
|
||||
0xfe46edfe, 0x008c0174, 0x7f4b0082, 0x03392205, 0x067f5828, 0x18352321, 0x2308cf51, 0x14152315, 0x0805257e,
|
||||
0x23013d21, 0xa5a5a131, 0xe1dddd86,
|
||||
0x60542ae1, 0x01a13d67, 0xa743af8f, 0x46af43a7, 0x43294994, 0x82aa623d, 0x09836aff, 0xd76a2520, 0x10e56016,
|
||||
0x200c8b6a, 0x0ddd6089, 0x2010936a,
|
||||
0x08d86086, 0xb75f0220, 0x881f200a, 0x3311266b, 0x26222111, 0x11ff6235, 0x2009f75e, 0x5e628d88, 0x28200cff,
|
||||
0xcb8c5e88, 0xcb961720, 0x21152122,
|
||||
0x3020bd8c, 0x18059358, 0x230d3e46, 0x005beb02, 0x0a5f4d18, 0xcb4f4820, 0x06936c05, 0x4982af87, 0x2f20a189,
|
||||
0x978c4683, 0x8c5b8d21, 0x9621208f,
|
||||
0x0c65498f, 0x3220998c, 0x8f0c4655, 0x09e751a0, 0x50094360, 0x8b60052b, 0x0beb510c, 0x3120ad89, 0x180ced51,
|
||||
0x21090340, 0xaf498d02, 0x00032108,
|
||||
0x22091742, 0x97300023, 0x7a3220bd, 0x3d251311, 0x012b3401, 0x20cc8c22, 0x101c69df, 0x20102742, 0x131a69eb,
|
||||
0x26080357, 0x000d0066, 0x422a001d,
|
||||
0xa8691035, 0x20f0891b, 0x417e90de, 0xab200cab, 0xff8b7a91, 0x9b6d1720, 0x05254a19, 0x9420ea8c, 0x35071d4a,
|
||||
0xe6fdd702, 0x3b46463b, 0xe6fd1a02,
|
||||
0x506d6d50, 0x95950003, 0xf35a0095, 0x000d210c, 0x8514f761, 0x20be8955, 0x185288a7, 0x210ab041, 0x4e838d02,
|
||||
0x23000132, 0x41020dff, 0x27002803,
|
||||
0x23210000, 0x11352622, 0x530d3a6f, 0x012d133e, 0x55416b24, 0x602c357d, 0x5680352b, 0x0b3e5341, 0x02597923,
|
||||
0x0b6a4256, 0x240e4453, 0x00010000,
|
||||
0x246f8224, 0x00810247, 0x826f8d21, 0x13085476, 0x5ef4bb28, 0x2e288445, 0x658b88bb, 0x016d4e23, 0x077542c6,
|
||||
0x00226190, 0x01820200, 0x5f020026,
|
||||
0x0f00bd03, 0x2105db45, 0x01853313, 0x83230321, 0x06616301, 0x0f9c4918, 0x2f4f8320, 0xa3491808, 0xbd03210c,
|
||||
0x2a065f46, 0x02000009, 0x0048035a,
|
||||
0x1813000c, 0x860eb942, 0xc0421850, 0x6877200c, 0xc6200867, 0x0bc74218, 0x49480321, 0x1a200857, 0x49204f82,
|
||||
0x0820a382, 0x002aa582, 0x011b3313,
|
||||
0x23110333, 0x82660311, 0x06666f05, 0x21069f5e, 0x6a6f2803, 0x8499200a, 0x0baf6341, 0x8f860e20, 0x37230122,
|
||||
0x28633e86, 0x871c2008, 0x63fe2086,
|
||||
0xef680728, 0x207f8908, 0x05cd530c, 0x36648188, 0x20828605, 0x056a6382, 0x3364828d, 0x05bb5207, 0x18085753,
|
||||
0x2307594a, 0x0715013f, 0x0c5d4a18,
|
||||
0xeeeebb22, 0x08604a18, 0x2205904b, 0x82370002, 0x032c21ff, 0x8b08e769, 0x7943183b, 0xeeac220c, 0x7c4318ee,
|
||||
0x34d62108, 0x96052f61, 0x33372377,
|
||||
0x778c2315, 0x8787c622, 0xd8227788, 0x00820066, 0x13207798, 0x778c3b82, 0x8787b722, 0x01217788, 0x533c830a,
|
||||
0x7b5107ab, 0x494b1807, 0x06ed4708,
|
||||
0x04607a8c, 0x217f8807, 0xa7487662, 0x23f78905, 0x13000010, 0x828c438f, 0x41460121, 0x3b2707be, 0x2843fdfd,
|
||||
0x84941602, 0x00012a43, 0x020dff1e,
|
||||
0x004d0344, 0x2241821a, 0x18333523, 0x710b5d49, 0x3e240628, 0x9fda3502, 0x07654918, 0x9f5c4831, 0x21292c3d,
|
||||
0x433e0209, 0x88446666, 0x518afd43,
|
||||
0x00210637, 0x09cb5200, 0x49bfd74a, 0x012c75ff, 0xa0026c00, 0x1603f701, 0x00000600, 0x20060844, 0x05b541e6,
|
||||
0x76160322, 0x8c05434d, 0x065f5323,
|
||||
0x857d0121, 0xa0022124, 0x01262485, 0x8c025500, 0x47820e02, 0x47830d20, 0x200b7747, 0x0a6d4755, 0x59160321,
|
||||
0xee240c53, 0x7501b002, 0xdf7f3382,
|
||||
0x16032a09, 0x00020066, 0x016202bb, 0x221782aa, 0x7b1c000f, 0xdc4f08d1, 0x18172008, 0x2408d856, 0x0122012b,
|
||||
0x10da4603, 0x46160321, 0x002f11ce,
|
||||
0xff950001, 0x00ce010d, 0x00140000, 0x45332100, 0x422113aa, 0x0ba34586, 0x26129745, 0x02570001, 0x820b02b1,
|
||||
0x82112097, 0x10154ae3, 0xa549ac20,
|
||||
0x49b1200e, 0x00200999, 0x3e24d382, 0x24028102, 0x09974418, 0x2005e346, 0x07d946b7, 0x47160321, 0x0220051c,
|
||||
0x08065b67, 0x03002820, 0x00000700,
|
||||
0x33130129, 0x03210307, 0xdcfd4402, 0x7c5fb7b6, 0x037b0001, 0x5efd4328, 0xc982a202, 0x26000122, 0x3c205882,
|
||||
0x3205fb46, 0x35231525, 0x013d013e,
|
||||
0x012b2634, 0x011d0622, 0x82171614, 0x35332211, 0x2213832e, 0x48013b36, 0x370805a9, 0x3c021507, 0x372d26c8,
|
||||
0x372c662c, 0x97c8262d, 0x43544146,
|
||||
0x415443c8, 0xee434346, 0xe1364608, 0x3d55553d, 0x084636e1, 0x1f6743ee, 0x59e14c5d, 0xe1597c7c, 0x671f5d4c,
|
||||
0x2006f746, 0x4f491841, 0x693b2009,
|
||||
0x273805f0, 0x85242311, 0xfe887898, 0x851b63e6, 0x87fe8102, 0xfd3c02c3, 0xfafe137f, 0x3d249f88, 0x0b008002,
|
||||
0x3209594c, 0x23112311, 0x6a170226,
|
||||
0x72617a60, 0xfd438002, 0x833d02c3, 0x462e8203, 0x13200cf7, 0x118d5018, 0x15171323, 0x0ff44627, 0xeeee3025,
|
||||
0x46fd2803, 0xe36a0ef0, 0x09ef4605,
|
||||
0xef461020, 0x4648820f, 0x24220cec, 0x4918eeee, 0x03210fb0, 0x47458348, 0x93930d8b, 0x07153722, 0x8020938f,
|
||||
0x89209392, 0x9a05834f, 0x8c488293,
|
||||
0x92742093, 0x06b36a93, 0x1f480320, 0x0571670a, 0x21061f48, 0x21483313, 0x05024707, 0x0420998f, 0x41070b47,
|
||||
0x0f470f31, 0x00032105, 0x14209f8b,
|
||||
0x710e3541, 0xa58c0752, 0x4b700820, 0x0e264808, 0x87775183, 0x15172218, 0x069d4727, 0x87775620, 0x4199200e,
|
||||
0xcb6b05bb, 0x48368215, 0xd86c0818,
|
||||
0x07144805, 0x1805ab41, 0x9d1b6746, 0x02d5331b, 0x038e011e, 0x0003004d, 0x13230100, 0x9b700133, 0x12826d4c,
|
||||
0x0e822f20, 0x1b8a0020, 0x03331324,
|
||||
0x1a82f323, 0xfe4d0324, 0x1b8400d1, 0x0146ff25, 0x8375008e, 0x86372037, 0x8475201b, 0x0200271a, 0x1e025d00,
|
||||
0x53840602, 0x00000723, 0x83558213,
|
||||
0x82f82003, 0x86d2203d, 0xd1fe235c, 0x278f2f01, 0x45820120, 0x03820320, 0x866b0121, 0x216a8328, 0x53882f01,
|
||||
0x0246ff23, 0x826f8406, 0x8f252053,
|
||||
0x847a822b, 0x00012a2a, 0x02000055, 0x0028030e, 0x9d4a180b, 0x11233508, 0x01333523, 0xafaf5c03, 0x03aeae5c,
|
||||
0xfd4bb428, 0x4b2902d7, 0x2b881e82,
|
||||
0x4a181320, 0x35210fc9, 0x84338833, 0x27378535, 0xab4bcdfe, 0x33014bab, 0x8e263b84, 0xd401fa00, 0xff834802,
|
||||
0x1121132d, 0x46018e21, 0x4802bafe,
|
||||
0x8200b2fe, 0x821c2011, 0x86472083, 0x248782ab, 0x23153325, 0x24038627, 0x8787c001, 0x200284d2, 0x21008475,
|
||||
0x7d500000, 0x56022105, 0x0f2cb382,
|
||||
0x1f001b00, 0x3b002f00, 0x57004b00, 0x2a12fd45, 0x011d2223, 0x32013b14, 0x4134013d, 0x834d052d, 0x201f8a0e,
|
||||
0x0f1d4d13, 0x20081b8a, 0x2320f501,
|
||||
0x20231e1e, 0x391d1e21, 0x0c17170c, 0x3ee7fe18, 0x211440a7, 0x211e1f20, 0x1e1e2221, 0x27148337, 0x2120bf17,
|
||||
0x20221c1d, 0x0d2d0f83, 0x190d1717,
|
||||
0x40346401, 0x3534407c, 0x3804823f, 0x3f7a3c38, 0x013c7c3d, 0x03d8fcfc, 0x7b3f3528, 0x40353540, 0x3734407b,
|
||||
0x6061183d, 0x82298d09, 0x010035e6,
|
||||
0xa400cd00, 0x36029601, 0x00000600, 0x07153713, 0xcd271517, 0x0b544918, 0x238d2482, 0x15173531, 0xcd373507,
|
||||
0x0190c9c9, 0x3ca95fd7, 0x826a5fad,
|
||||
0x01002122, 0x08475e18, 0x00000330, 0x23013301, 0xfe49f801, 0x28034c2c, 0x1b82d8fc, 0x00003528, 0x28032e02,
|
||||
0x63821d00, 0x49353321, 0x0626065e,
|
||||
0x1533011d, 0x03831523, 0x21152131, 0x33352311, 0x5c352335, 0xaff84255, 0x82a4372a, 0x1e013800, 0x5c5c63fe,
|
||||
0x2d2a025c, 0x5143775a, 0x82462d3d,
|
||||
0x0145d746, 0x8582461c, 0xff29246f, 0x823a02fe, 0x001e2753, 0x15210100, 0x4d892223, 0x8606a677, 0x10332851,
|
||||
0x2f010b01, 0x82a862e7, 0x2d352600,
|
||||
0x98d1fee7, 0x3e00824a, 0xc1432803, 0x4391450d, 0x44513e2d, 0x91430001, 0x00110145, 0x01170002, 0x034e0273,
|
||||
0x7007002b, 0xf3520547, 0x33252405,
|
||||
0x8233011b, 0x0726084c, 0x23152723, 0x6134cf17, 0x5c08013a, 0x425e3a3b, 0x44314236, 0xfe362b03, 0x3582017e,
|
||||
0x4101bffe, 0xd3d349fe, 0xea82d1d1,
|
||||
0x2406ab4f, 0x000b004d, 0x29f18222, 0x3b011e15, 0x3d363201, 0xbc742101, 0x013d230c, 0xbc743634, 0x02912a06,
|
||||
0x2e952a29, 0x38f9fe27, 0x0bbf7407,
|
||||
0x2d282e2d, 0x944301f1, 0x493b3537, 0x74b001d6, 0x8d2607be, 0x33c65048, 0xf6820031, 0x82210021, 0x0343226c,
|
||||
0x22af8228, 0x63211300, 0x212e059f,
|
||||
0xfe6f2202, 0x28036ebb, 0xe502d8fc, 0x26821bfd, 0x0abb5a18, 0x8d820920, 0x21152124, 0x04820313, 0x01330138,
|
||||
0xee8cfefc, 0xfe7401ee, 0x03200104,
|
||||
0xaafe4328, 0x0143b4fe, 0x2f82008f, 0x97015126, 0xdc011102, 0x29054743, 0x01512115, 0x0140fec0, 0x571845dc,
|
||||
0x01381427, 0x1a230323, 0x70cd6290,
|
||||
0x7873fefe, 0xfe700142, 0xfce102d7, 0x002001d8, 0x492c3d82, 0x1a022401, 0x15005a02, 0x2f002200, 0x35207b82,
|
||||
0x3222f182, 0x06433617, 0x22233406,
|
||||
0x22230627, 0x14152526, 0x36323316, 0x2334013d, 0x8b070622, 0x492a080c, 0x2344354a, 0x4b384127, 0x293f384b,
|
||||
0x4a354126, 0x23260401, 0x234a2822,
|
||||
0x2229cc26, 0x22472720, 0x867c0129, 0x20203226, 0x06842830, 0x3985322a, 0x12161612, 0x13172a39, 0xb2820887,
|
||||
0x00010029, 0x020dff0b, 0x624d0358,
|
||||
0x15220501, 0x4f182223, 0x352a08e3, 0x01363411, 0x598ac692, 0x04835a4a, 0x444d032d, 0x6557fd88, 0x02874466,
|
||||
0x836666a9, 0x00022c3b, 0x02e5003c,
|
||||
0x00510228, 0x822d0016, 0x832320c1, 0xd04f18c1, 0x22232708, 0x2223022e, 0x14920703, 0x484d8d3f, 0x1d37234f,
|
||||
0x24211a2c, 0x2445494f, 0x1429203c,
|
||||
0x484e0350, 0x1c372450, 0x2521192c, 0x3d13834e, 0x4f15291f, 0x5a45b201, 0x2f1b211b, 0x1e5f4028, 0xd5fe1e23,
|
||||
0x1c594601, 0x28301c20, 0x0e825e40,
|
||||
0xbb820020, 0x00002c28, 0x28033802, 0x7d821300, 0x33372126, 0x23153307, 0x26080383, 0x23132303, 0x23373335,
|
||||
0x770a0162, 0x65417755, 0xa5d9b44f,
|
||||
0x9770a658, 0x4e02e54e, 0x8f47dada, 0x01cdfe45, 0x858f4533, 0x00512ac3, 0x02110200, 0x000600d7, 0x3445820a,
|
||||
0x15071501, 0x21051517, 0x017f2115,
|
||||
0xfeeeee66, 0xfec0016c, 0xf75f1840, 0x45372108, 0x09263393, 0x35373501, 0x33820327, 0x67017e27, 0xeeee99fe,
|
||||
0x1834832d, 0x2a09de5f, 0x0045c9fd,
|
||||
0x005c0002, 0x82070200, 0x000522ab, 0x26ba820b, 0x13032303, 0x83130333, 0x07022e06, 0x6d6cd16e, 0x4a4e4dd1,
|
||||
0x014c4f3b, 0x2d728294, 0xfd940194,
|
||||
0x01560116, 0xfeaafe56, 0x008200aa, 0x26011824, 0x07820100, 0x37220283, 0x0b867000, 0x08000124, 0x0b86ba00,
|
||||
0x07000224, 0x0b86d300, 0x2e000324,
|
||||
0x0b863901, 0x10000424, 0x0b868a01, 0x0d000524, 0x0b86b701, 0x17820620, 0x0b86e720, 0x0b000824, 0x0b861002,
|
||||
0x0b820920, 0x0b863420, 0x1b000c24,
|
||||
0x0b867802, 0xec010d24, 0x0b866e06, 0x32000e2a, 0x0300c108, 0x09040100, 0x6e209082, 0x0b850382, 0x10000124,
|
||||
0x1786a800, 0x0e000224, 0x0b86c300,
|
||||
0xfb820320, 0x0b86db20, 0x20000424, 0x0b866801, 0x1a000524, 0x0b869b01, 0x17820620, 0x0b86c520, 0x16000824,
|
||||
0x0b86f801, 0x16000924, 0x0b861c02,
|
||||
0x36000c24, 0x0b864002, 0xd8030d24, 0x0b869402, 0x64000e2a, 0x52005b08, 0x6c006500, 0x61220382, 0x05827300,
|
||||
0x20006426, 0x6e006900, 0x32260582,
|
||||
0x32003000, 0x09823400, 0x0f827520, 0x1b826420, 0x0b827220, 0x43004322, 0x20201782, 0x69223182, 0x13826300,
|
||||
0x35846e20, 0x19822e20, 0x6f004e22,
|
||||
0x72200582, 0x67243d82, 0x74006800, 0x20221782, 0x21827200, 0x39847320, 0x5b847620, 0x002e3808, 0x6c655200,
|
||||
0x65736165, 0x6e692064, 0x32303220,
|
||||
0x6e752034, 0x20726564, 0x20304343, 0x6563696c, 0x2e65736e, 0x206f4e20, 0x68676972, 0x72207374, 0x72657365,
|
||||
0x82646576, 0x82552038, 0x82692085,
|
||||
0x00702255, 0x28798461, 0x696e5500, 0x63617073, 0x25538265, 0x67006500, 0x94827500, 0x72826120, 0x67276282,
|
||||
0x72616c75, 0x84560000, 0x8273207a,
|
||||
0x846f2092, 0x003522d2, 0x20bc822e, 0x2b038230, 0x0054003b, 0x00500059, 0x003b004f, 0x2d22588f, 0x4f8c5200,
|
||||
0x31003b26, 0x36003900, 0x3b280382,
|
||||
0x4c004600, 0x33003800, 0x00334182, 0x73726556, 0x206e6f69, 0x30302e35, 0x59543b30, 0x873b4f50, 0x522d2291,
|
||||
0x2b818465, 0x3639313b, 0x4c463b39,
|
||||
0x00303338, 0xcf8866a0, 0xbf9b3d87, 0x5cb47d8d, 0x61005226, 0x20007900, 0x6122d082, 0x0b827200, 0x69006222,
|
||||
0x002df682, 0x20796152, 0x6172614c,
|
||||
0x00656962, 0x2223a300, 0x82740068, 0x00702601, 0x003a0073, 0x2001822f, 0x23558274, 0x006f0070, 0x20053142,
|
||||
0x2255826d, 0x82660063, 0x826e200f,
|
||||
0x00732425, 0x8263002e, 0x006d3c0b, 0x74746800, 0x2f3a7370, 0x7079742f, 0x7265646f, 0x6663696d, 0x73746e6f,
|
||||
0x826f632e, 0x0054221c, 0x20378268,
|
||||
0x879d8273, 0x82202039, 0x82612011, 0x00202263, 0x22a58262, 0x826e0065, 0x4272201b, 0xa94210b9, 0x8261200b,
|
||||
0x426e2021, 0x20222293, 0xff824300,
|
||||
0x61006522, 0x69229f82, 0x53827600, 0x6f221183, 0x01826d00, 0x67826f20, 0x5a208583, 0x72201582, 0x6c204b84,
|
||||
0x7f83cf84, 0x13827320, 0x63822e20,
|
||||
0x50002024, 0x3f436c00, 0x82202008, 0x826f20f7, 0x826e2015, 0x8274202d, 0x82612007, 0x826b20b3, 0x84702007,
|
||||
0x846d2041, 0x099042d5, 0x53847420,
|
||||
0x05846420, 0x6b826120, 0x83827920, 0x23826820, 0x67006e22, 0x77203382, 0x74200982, 0x2020f782, 0x65201584,
|
||||
0x65204982, 0x210a1141, 0x7d830073,
|
||||
0x1f825720, 0x1f826120, 0x76006522, 0x20226184, 0x4d827900, 0x3d847520, 0x6e006122, 0x3d831982, 0x65859183,
|
||||
0x6920538d, 0x20205382, 0x20089d41,
|
||||
0x8335822c, 0x2065836f, 0x20f98461, 0x20538677, 0x20898277, 0x41e5826c, 0x6383057d, 0x39826520, 0x2f822e20,
|
||||
0x7220fb8d, 0x61222f82, 0x17826400,
|
||||
0x62006122, 0x74208784, 0x3b44538a, 0x00502207, 0x411d8275, 0x20220549, 0x27824400, 0x61006d22, 0x5744f584,
|
||||
0x206f850f, 0x83218266, 0x00202259,
|
||||
0x06474263, 0x09826120, 0x27417420, 0x416d2008, 0x89420689, 0x4163200f, 0x79420ed7, 0x846d2005, 0x00732243,
|
||||
0x2455842e, 0x002f0067, 0x208f8a70,
|
||||
0x228d8a64, 0x847a002f, 0x826f20ff, 0x82312023, 0x8230202f, 0x00202207, 0x20218254, 0x06914120, 0x1f822020,
|
||||
0x0b827820, 0x69416520, 0x82702006,
|
||||
0x0073221b, 0x22998273, 0x826c0062, 0x8220201b, 0x436e2059, 0xdb830609, 0x77006126, 0x20002c00, 0x85065743,
|
||||
0x43642089, 0xeb421083, 0x00772209,
|
||||
0x454b8261, 0x2020053b, 0x83410b82, 0x82632005, 0x00702265, 0x24dd8279, 0x00670069, 0x837f8268, 0x2067831b,
|
||||
0x20f18420, 0x2029826c, 0x837d8274,
|
||||
0x826f2059, 0x82202011, 0x8265209d, 0x202b8347, 0x20f58462, 0x20118269, 0x10ad4567, 0x20058d42, 0x107b4374,
|
||||
0x29822e20, 0x20099143, 0x20418477,
|
||||
0x4213826b, 0x3d41053d, 0x82732009, 0x82652039, 0x002022ed, 0x22758266, 0x826d006f, 0x824a2023, 0x8270208b,
|
||||
0x006e3a03, 0x000a002e, 0x69685400,
|
||||
0x6f662073, 0x6820746e, 0x62207361, 0x206e6565, 0x07104672, 0x22050846, 0x456e2061, 0x203510fd, 0x61657243,
|
||||
0x65766974, 0x6d6f4320, 0x736e6f6d,
|
||||
0x72655a20, 0x092f466f, 0x6c502029, 0x65736165, 0x826f6420, 0x2074323c, 0x206b7361, 0x6d726570, 0x69737369,
|
||||
0x74206e6f, 0x3018836f, 0x74796e61,
|
||||
0x676e6968, 0x74697720, 0x68742068, 0x832f8265, 0x2e733188, 0x61685720, 0x65766574, 0x6f792072, 0x61772075,
|
||||
0x32859c82, 0xb1862986, 0x34832c20,
|
||||
0x6e612024, 0x29827773, 0x6c697723, 0x22be826c, 0x82657920, 0x827d863f, 0x206426a3, 0x756f6261, 0x30298474,
|
||||
0x20304343, 0x6c627550, 0x44206369,
|
||||
0x69616d6f, 0x82af876e, 0x6f662b37, 0x63206572, 0x61746e6f, 0x93837463, 0x2e656d23, 0x07104520, 0xeb866320,
|
||||
0xea856320, 0x726f2e25, 0x84702f67,
|
||||
0x84642047, 0x7a2f2146, 0x2f27fb82, 0x2f302e31, 0x846f5420, 0x78652369, 0xb4826574, 0x826f7021, 0x6c6222ef,
|
||||
0x06514765, 0x77616c2b, 0x6152202c,
|
||||
0x6e6f6d79, 0x07d14564, 0x61682023, 0x22e18273, 0x82657669, 0x28c182a9, 0x79706f63, 0x68676972, 0x26d78274,
|
||||
0x65722064, 0x8274616c, 0x726f2419,
|
||||
0x82656e20, 0x6f622215, 0x849c8372, 0x20732220, 0x416c8374, 0x2e23060b, 0x82685420, 0x6f77240a, 0x82206b72,
|
||||
0x219e8407, 0x3a826873, 0x6f72662d,
|
||||
0x614a206d, 0x2e6e6170, 0x4300000a, 0x48466390, 0x29374108, 0x00820020, 0x84000221, 0x67ff2300, 0x08841400,
|
||||
0x012e048e, 0x0100006c, 0x01020002,
|
||||
0x00030003, 0x77180004, 0x160ab809, 0xa3000401, 0x85008400, 0xe8009600, 0x8e008600, 0x9d008b00, 0xa400a900,
|
||||
0x8a000501, 0x8300da00, 0xf2009300,
|
||||
0x8d00f300, 0xc3008800, 0xf100de00, 0xaa009e00, 0xf400f500, 0xa200f600, 0xc900ad00, 0xae00c700, 0x63006200,
|
||||
0x64009000, 0x6500cb00, 0xca00c800,
|
||||
0xcc00cf00, 0xce00cd00, 0x6600e900, 0xd000d300, 0xaf00d100, 0xf0006700, 0xd6009100, 0xd500d400, 0xeb006800,
|
||||
0x8900ed00, 0x69006a00, 0x6d006b00,
|
||||
0x6e006c00, 0x6f00a000, 0x70007100, 0x73007200, 0x74007500, 0x77007600, 0x7800ea00, 0x79007a00, 0x7d007b00,
|
||||
0xb8007c00, 0x7f00a100, 0x80007e00,
|
||||
0xec008100, 0xba00ee00, 0x07010601, 0x09010801, 0x0b010a01, 0xfe00fd00, 0x0d010c01, 0x0001ff00, 0x0f010e01,
|
||||
0x01011001, 0x12011101, 0x14011301,
|
||||
0x16011501, 0x18011701, 0x1a011901, 0xf900f800, 0x1c011b01, 0x1e011d01, 0x20011f01, 0x22012101, 0x24012301,
|
||||
0x26012501, 0xd700fa00, 0x28012701,
|
||||
0x2a012901, 0x2c012b01, 0x2e012d01, 0x30012f01, 0x32013101, 0xe300e200, 0x34013301, 0x36013501, 0x38013701,
|
||||
0x3a013901, 0x3c013b01, 0x3e013d01,
|
||||
0x40013f01, 0xb100b000, 0x42014101, 0x44014301, 0x46014501, 0x48014701, 0xfc00fb00, 0xe500e400, 0x4a014901,
|
||||
0x4c014b01, 0x4e014d01, 0x50014f01,
|
||||
0x52015101, 0x54015301, 0x56015501, 0x58015701, 0x5a015901, 0x5c015b01, 0x5e015d01, 0x5f01bb00, 0x61016001,
|
||||
0xe6006201, 0xa600e700, 0x64016301,
|
||||
0x66016501, 0xe100d800, 0xdc00db00, 0xe000dd00, 0xdf00d900, 0x68016701, 0x9b006901, 0x6b016a01, 0x6d016c01,
|
||||
0x6f016e01, 0x71017001, 0xb300b200,
|
||||
0xb700b600, 0xb400c400, 0xc500b500, 0xc2008200, 0xab008700, 0xbe00c600, 0xbc00bf00, 0x73017201, 0x98008c00,
|
||||
0x99009a00, 0xa500ef00, 0x9c009200,
|
||||
0x8f00a700, 0x95009400, 0x7401b900, 0x75077501, 0x8230696e, 0x21078500, 0x07853731, 0x86304121, 0x07442a07,
|
||||
0x63616d41, 0x076e6f72, 0x28078561,
|
||||
0x72624106, 0x06657665, 0x29068461, 0x676f4107, 0x6b656e6f, 0x07856107, 0x64430a2c, 0x6361746f, 0x746e6563,
|
||||
0x0a88630a, 0x63440623, 0x21428261,
|
||||
0x06856406, 0x72634427, 0x0774616f, 0x21508545, 0x07856507, 0x84450621, 0x65062151, 0x0a210684, 0x213d8845,
|
||||
0x0a88650a, 0x85450721, 0x65072166,
|
||||
0x06210785, 0x20518545, 0x21068465, 0x3389470a, 0x0a886720, 0x3122c884, 0x07863232, 0x48043327, 0x04726162,
|
||||
0x21048268, 0x79854907, 0x85690721,
|
||||
0x49062107, 0x06217a84, 0x21068469, 0x63854907, 0x85690721, 0x49022507, 0x6a69024a, 0x33214585, 0x29078636,
|
||||
0x614c0637, 0x65747563, 0x06846c06,
|
||||
0x42201586, 0x43220786, 0x98844c06, 0x846c0621, 0x4c042106, 0x04219482, 0x2104826c, 0x35854e06, 0x358a6e20,
|
||||
0x85353421, 0x36342335, 0x2e844e06,
|
||||
0x846e0621, 0x45032906, 0x6503676e, 0x4f07676e, 0x0721a585, 0x2107856f, 0xa6844f06, 0x846f0621, 0x4f0d2f06,
|
||||
0x676e7568, 0x6d757261, 0x7475616c,
|
||||
0x0d8b6f0d, 0x84520621, 0x72062166, 0x35206d8a, 0x3523c186, 0x84520637, 0x72062166, 0x53200685, 0x06212484,
|
||||
0x202b8a73, 0x063b4136, 0x06333623,
|
||||
0x20248554, 0x26068474, 0x61625404, 0x82740472, 0x55062804, 0x646c6974, 0x84750665, 0x55072106, 0x0721a185,
|
||||
0x21078575, 0xa2845506, 0x84750621,
|
||||
0x55052706, 0x676e6972, 0x05837505, 0x8c550d21, 0x8b7520b5, 0x5507210d, 0x21057741, 0x07857507, 0x63570b2d,
|
||||
0x75637269, 0x656c666d, 0x8a770b78,
|
||||
0x8a59200b, 0x8979200b, 0x5a06210b, 0x0621c284, 0x2106847a, 0x10425a0a, 0x7a0a2108, 0x2a0d1b42, 0x07383132,
|
||||
0x30696e75, 0x86393132, 0x86412007,
|
||||
0x05c74107, 0x34393322, 0x33210f84, 0x2b1f8541, 0x06434233, 0x61726757, 0x77066576, 0x57200685, 0x06216284,
|
||||
0x2b068477, 0x69645709, 0x73657265,
|
||||
0x77097369, 0x06210987, 0x20288559, 0x31068479, 0x72696c04, 0x75450461, 0x43026f72, 0x45440352, 0x0083004c,
|
||||
0xffff0126, 0x01000200, 0x0c200a82,
|
||||
0x52200382, 0x02220382, 0x0f820b00, 0x03828620, 0x87008728, 0x88000200, 0x0b829f00, 0xa000a022, 0xa1220b82,
|
||||
0x0b82a600, 0xa700a722, 0xa8220b82,
|
||||
0x0b82ea00, 0xec00eb22, 0xed2e0b82, 0x01000601, 0x08010701, 0x09010200, 0x17826b01, 0x49840420, 0x02820482,
|
||||
0x03820120, 0xdeda0024, 0x0783c5d7,
|
||||
0x31257c2b, 0x000000f0, 0x2834e200, 0x33fa057b, 0x0082f2a5,
|
||||
};
|
||||
}
|
||||
BIN
ext/fonts/Unispace/Unispace-Regular.ttf
Normal file
BIN
ext/fonts/Unispace/Unispace-Regular.ttf
Normal file
Binary file not shown.
@@ -13,11 +13,17 @@ DEFAULT_FONTS = [
|
||||
'FiraCode',
|
||||
'Go',
|
||||
'IBMPlexMono',
|
||||
'Idealist',
|
||||
'Inconsolata',
|
||||
'InconsolataExpanded',
|
||||
'Iosoveka',
|
||||
'IosovekaExtended',
|
||||
'Orbitron',
|
||||
'ShareTech',
|
||||
'SpaceMono',
|
||||
'Syne',
|
||||
'Triplicate',
|
||||
'Unispace',
|
||||
]
|
||||
|
||||
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
#pragma once
|
||||
namespace kte::Fonts::B612Mono {
|
||||
|
||||
#include "Font.h"
|
||||
|
||||
|
||||
namespace kte::Fonts {
|
||||
namespace B612Mono {
|
||||
// File: 'B612Mono/B612Mono-Bold.ttf' (135904 bytes)
|
||||
// Exported using binary_to_compressed_c.cpp
|
||||
static const unsigned int DefaultFontBoldCompressedSize = 74748;
|
||||
@@ -11878,4 +11883,5 @@ static const unsigned int DefaultFontRegularCompressedData[72616 / 4] =
|
||||
0x534c1701, 0x17042a0f, 0x1efd613e, 0x0130511f, 0x2a568e22, 0x3e611404, 0x51301ffd, 0x8f22041f, 0x00fa055c,
|
||||
0x0070a96e,
|
||||
};
|
||||
}
|
||||
}
|
||||
2854
fonts/FiraCode.h
2854
fonts/FiraCode.h
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
||||
|
||||
#include "imgui.h"
|
||||
|
||||
|
||||
namespace kte::Fonts {
|
||||
void
|
||||
Font::Load(const float size) const
|
||||
{
|
||||
@@ -19,4 +19,5 @@ Font::Load(const float size) const
|
||||
|
||||
(void) font;
|
||||
io.Fonts->Build();
|
||||
}
|
||||
}
|
||||
} // namespace kte::Fonts
|
||||
@@ -6,9 +6,9 @@
|
||||
#include "BrassMonoCode.h"
|
||||
|
||||
namespace kte::Fonts {
|
||||
static const unsigned int DefaultFontSize = DefaultFontBoldCompressedSize;
|
||||
static const unsigned int *DefaultFontData = DefaultFontBoldCompressedData;
|
||||
}
|
||||
// Provide default embedded font aliases used by GUIFrontend fallback loader
|
||||
inline const unsigned int DefaultFontSize = BrassMonoCode::DefaultFontBoldCompressedSize;
|
||||
inline const unsigned int *DefaultFontData = BrassMonoCode::DefaultFontBoldCompressedData;
|
||||
|
||||
class Font {
|
||||
public:
|
||||
@@ -30,4 +30,5 @@ private:
|
||||
std::string name_;
|
||||
unsigned int *data_{nullptr};
|
||||
unsigned int size_{0};
|
||||
};
|
||||
};
|
||||
}
|
||||
17
fonts/FontList.h
Normal file
17
fonts/FontList.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "B612Mono.h"
|
||||
#include "BrassMono.h"
|
||||
#include "BrassMonoCode.h"
|
||||
#include "FiraCode.h"
|
||||
#include "Go.h"
|
||||
#include "IBMPlexMono.h"
|
||||
#include "Idealist.h"
|
||||
#include "Inconsolata.h"
|
||||
#include "InconsolataExpanded.h"
|
||||
#include "Iosevka.h"
|
||||
#include "IosevkaExtended.h"
|
||||
#include "ShareTech.h"
|
||||
#include "SpaceMono.h"
|
||||
#include "Syne.h"
|
||||
#include "Triplicate.h"
|
||||
#include "Unispace.h"
|
||||
94
fonts/FontRegistry.cc
Normal file
94
fonts/FontRegistry.cc
Normal file
@@ -0,0 +1,94 @@
|
||||
#include "FontRegistry.h"
|
||||
#include "FontList.h"
|
||||
|
||||
namespace kte::Fonts {
|
||||
void
|
||||
InstallDefaultFonts()
|
||||
{
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"default",
|
||||
const_cast<unsigned int *>(BrassMono::DefaultFontBoldCompressedData),
|
||||
BrassMono::DefaultFontBoldCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"b612",
|
||||
const_cast<unsigned int *>(B612Mono::DefaultFontRegularCompressedData),
|
||||
B612Mono::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"brassmono",
|
||||
const_cast<unsigned int *>(BrassMono::DefaultFontBoldCompressedData),
|
||||
BrassMono::DefaultFontBoldCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"brassmonocode",
|
||||
const_cast<unsigned int *>(BrassMonoCode::DefaultFontBoldCompressedData),
|
||||
BrassMonoCode::DefaultFontBoldCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"fira",
|
||||
const_cast<unsigned int *>(FiraCode::DefaultFontRegularCompressedData),
|
||||
FiraCode::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"go",
|
||||
const_cast<unsigned int *>(Go::DefaultFontRegularCompressedData),
|
||||
Go::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"ibm",
|
||||
const_cast<unsigned int *>(IBMPlexMono::DefaultFontRegularCompressedData),
|
||||
IBMPlexMono::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"idealist",
|
||||
const_cast<unsigned int *>(Idealist::DefaultFontRegularCompressedData),
|
||||
Idealist::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"inconsolata",
|
||||
const_cast<unsigned int *>(Inconsolata::DefaultFontRegularCompressedData),
|
||||
Inconsolata::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"inconsolataex",
|
||||
const_cast<unsigned int *>(InconsolataExpanded::DefaultFontRegularCompressedData),
|
||||
InconsolataExpanded::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"iosevka",
|
||||
const_cast<unsigned int *>(Iosoveka::DefaultFontRegularCompressedData),
|
||||
Iosoveka::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"iosevkaex",
|
||||
const_cast<unsigned int *>(IosevkaExtended::DefaultFontRegularCompressedData),
|
||||
IosevkaExtended::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"sharetech",
|
||||
const_cast<unsigned int *>(ShareTech::DefaultFontRegularCompressedData),
|
||||
ShareTech::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"space",
|
||||
const_cast<unsigned int *>(SpaceMono::DefaultFontRegularCompressedData),
|
||||
SpaceMono::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"syne",
|
||||
const_cast<unsigned int *>(Syne::DefaultFontRegularCompressedData),
|
||||
Syne::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"triplicate",
|
||||
const_cast<unsigned int *>(Triplicate::DefaultFontRegularCompressedData),
|
||||
Triplicate::DefaultFontRegularCompressedSize
|
||||
));
|
||||
FontRegistry::Instance().Register(std::make_unique<Font>(
|
||||
"unispace",
|
||||
const_cast<unsigned int *>(Unispace::DefaultFontRegularCompressedData),
|
||||
Unispace::DefaultFontRegularCompressedSize
|
||||
));
|
||||
}
|
||||
}
|
||||
@@ -8,9 +8,7 @@
|
||||
|
||||
#include "Font.h"
|
||||
|
||||
// Forward declaration
|
||||
// class Font;
|
||||
|
||||
namespace kte::Fonts {
|
||||
class FontRegistry {
|
||||
public:
|
||||
// Get the global instance
|
||||
@@ -51,6 +49,30 @@ public:
|
||||
}
|
||||
|
||||
|
||||
// Request font load to be applied at a safe time (e.g., before starting a new frame)
|
||||
// Thread-safe. Frontend should call ConsumePendingFontRequest() and then LoadFont().
|
||||
void RequestLoadFont(const std::string &name, float size)
|
||||
{
|
||||
std::lock_guard lock(mutex_);
|
||||
pending_name_ = name;
|
||||
pending_size_ = size;
|
||||
has_pending_ = true;
|
||||
}
|
||||
|
||||
|
||||
// Retrieve and clear a pending font request. Returns true if there was one.
|
||||
bool ConsumePendingFontRequest(std::string &name, float &size)
|
||||
{
|
||||
std::lock_guard lock(mutex_);
|
||||
if (!has_pending_)
|
||||
return false;
|
||||
name = pending_name_;
|
||||
size = pending_size_;
|
||||
has_pending_ = false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
// Check if font exists
|
||||
bool HasFont(const std::string &name) const
|
||||
{
|
||||
@@ -63,4 +85,13 @@ private:
|
||||
|
||||
mutable std::mutex mutex_;
|
||||
std::unordered_map<std::string, std::unique_ptr<Font> > fonts_;
|
||||
};
|
||||
|
||||
// Pending font change request (applied by frontend between frames)
|
||||
bool has_pending_ = false;
|
||||
std::string pending_name_;
|
||||
float pending_size_ = 0.0f;
|
||||
};
|
||||
|
||||
|
||||
void InstallDefaultFonts();
|
||||
}
|
||||
6234
fonts/Idealist.h
Normal file
6234
fonts/Idealist.h
Normal file
File diff suppressed because it is too large
Load Diff
66576
fonts/Iosevka.h
Normal file
66576
fonts/Iosevka.h
Normal file
File diff suppressed because it is too large
Load Diff
66699
fonts/IosevkaExtended.h
Normal file
66699
fonts/IosevkaExtended.h
Normal file
File diff suppressed because it is too large
Load Diff
10477
fonts/SpaceMono.h
Normal file
10477
fonts/SpaceMono.h
Normal file
File diff suppressed because it is too large
Load Diff
880
fonts/Unispace.h
Normal file
880
fonts/Unispace.h
Normal file
@@ -0,0 +1,880 @@
|
||||
#pragma once
|
||||
namespace kte::Fonts::Unispace {
|
||||
// File: 'Unispace/Unispace-Regular.ttf' (33884 bytes)
|
||||
// Exported using binary_to_compressed_c.cpp
|
||||
static const unsigned int DefaultFontRegularCompressedSize = 20899;
|
||||
static const unsigned int DefaultFontRegularCompressedData[20900 / 4] =
|
||||
{
|
||||
0x0000bc57, 0x00000000, 0x5c840000, 0x00000400, 0x00010037, 0x000d0000, 0x00030080, 0x54464650, 0x3238394d,
|
||||
0x84000031, 0x2c158240, 0x4544471c,
|
||||
0x09f10746, 0x83000001, 0x2c0f82e4, 0x2f534f5a, 0x4c088b32, 0x0100009a, 0x360f8258, 0x616d6360, 0xfa0ed770,
|
||||
0x04000030, 0x03000098, 0x736167a6,
|
||||
0x82ffff70, 0x83002249, 0x381f82dc, 0x796c6708, 0xab179366, 0x0b00001d, 0x6800001c, 0x61656824, 0x9ee0bf64,
|
||||
0x831b821a, 0x6836211f, 0x06231082,
|
||||
0x82720124, 0x8214204f, 0x68242813, 0x2f78746d, 0x82872510, 0x00b82b0f, 0x6ce00200, 0x3161636f, 0x5f8217aa,
|
||||
0x8f820820, 0x6dda0229, 0x01707861,
|
||||
0x825b00b5, 0x8238201f, 0x6e202b2f, 0x5b656d61, 0x00c6f841, 0x1f827300, 0x701a0a31, 0xde74736f, 0x006ff819,
|
||||
0x005c7d00, 0x847e0600, 0x00052edb,
|
||||
0x8b588000, 0x3c0f5fde, 0x030b00f5, 0x243782e8, 0x31257c00, 0x2b0783f0, 0x7b2834e2, 0x0dfffeff, 0xbd036602,
|
||||
0x08220f82, 0x05820200, 0xf1820283,
|
||||
0xffbd0323, 0x2083820d, 0x221f8263, 0x846602fd, 0x87198349, 0x83042003, 0x6c012611, 0x07005800, 0x24008300,
|
||||
0x00000002, 0x82258401, 0x2e0b8289,
|
||||
0x02040000, 0x00900163, 0x02000005, 0x8258028a, 0x024b2411, 0x828a02bc, 0x00c52424, 0x82fa0032, 0x05002315,
|
||||
0x06830609, 0x00a00428, 0x00002f00,
|
||||
0x23820a20, 0x542b0284, 0x004f5059, 0x25170040, 0x824d03ca, 0x82c82083, 0x20f3249b, 0x83930000, 0x8102231c,
|
||||
0x07822803, 0x01002026, 0x1b006302,
|
||||
0x00260982, 0x00004d01, 0x09836302, 0x00e40025, 0x824800aa, 0x001b2615, 0x00020128, 0x2201828d, 0x82510057,
|
||||
0x00302e15, 0x002c00ee, 0x002b0023,
|
||||
0x00280024, 0x22018221, 0x821c0023, 0x82242009, 0x00e42c1b, 0x0062007f, 0x0030007e, 0x82200035, 0x823c2019,
|
||||
0x00332217, 0x2201822e, 0x82330021,
|
||||
0x82282013, 0x0025220f, 0x831b8225, 0x82262039, 0x82382009, 0x00202649, 0x00260002, 0x201b821a, 0x2459828d,
|
||||
0xff05008d, 0x209f82fe, 0x2013821e,
|
||||
0x22138230, 0x822d0024, 0x00242409, 0x8272002e, 0x002d2271, 0x2035821e, 0x22058219, 0x823a0028, 0x822d209d,
|
||||
0x00153013, 0x001f0009, 0x0037000e,
|
||||
0x0001016f, 0x8256006f, 0x00e422bf, 0x266f8278, 0x00fe001a, 0x82670039, 0x00782289, 0x20bd825a, 0x22458230,
|
||||
0x82740053, 0x00b52409, 0x82e300b2,
|
||||
0x00ee245d, 0x82cc00f4, 0x005a2811, 0x00150017, 0x8230001e, 0x8820209b, 0x00172203, 0x20b7823c, 0x20038c33,
|
||||
0x87bf8419, 0x827a2023, 0x82232077,
|
||||
0x830383c3, 0x821a20c1, 0x881e2043, 0x82102003, 0x8224204f, 0x200383a1, 0x837b822e, 0x84232003, 0x001921bf,
|
||||
0x51200185, 0x21870782, 0x37820e20,
|
||||
0x7b820e20, 0x03881e20, 0x3f823c20, 0x28220387, 0x2b820a00, 0x8b822820, 0x03902420, 0x26002e22, 0x03855d82,
|
||||
0x1f82fc82, 0x038c2e20, 0x28002622,
|
||||
0x24200182, 0x2d200382, 0x25200390, 0x038b8f82, 0x65822020, 0x21220387, 0x59820500, 0x03883a20, 0x1b002522,
|
||||
0x03852d82, 0x2d003823, 0x20038700,
|
||||
0x93e38223, 0x00022603, 0x001a0009, 0x2203820e, 0x82370028, 0x20038579, 0x8343841e, 0x006c2e3b, 0x0055006c,
|
||||
0x00bb00ee, 0x00570095, 0x20f7823e,
|
||||
0x21498226, 0x37830026, 0x3f830387, 0x30003024, 0x0184d500, 0x83005d21, 0x82552001, 0x008e2235, 0x2c59821c,
|
||||
0x00cd00cd, 0x00350021, 0x00170029,
|
||||
0x22098223, 0x82510033, 0x0049266d, 0x003c000b, 0x230b822c, 0x005c0051, 0x03200085, 0x03830682, 0x01001c22,
|
||||
0x00240982, 0x03009c01, 0x1c2a0984,
|
||||
0x80010400, 0x5c000000, 0xed824000, 0x09821c20, 0x00175808, 0x00a3007e, 0x010701b4, 0x0123011b, 0x01330127,
|
||||
0x01480137, 0x017e015b, 0x021b0292,
|
||||
0x03dd02c7, 0x03a90394, 0x1ec003bc, 0x20f31e85, 0x201a2014, 0x2022201e, 0x20302026, 0x2044203a, 0x21ac20a4,
|
||||
0x22022222, 0x2212220f, 0x221e221a,
|
||||
0x2248222b, 0x25652260, 0x82ffffca, 0x00003a5b, 0x00200017, 0x00a500a0, 0x010a01b6, 0x0126011e, 0x0136012a,
|
||||
0x014a0139, 0x245d825e, 0x02c60218,
|
||||
0x2a5d88d8, 0x20f21e80, 0x20182013, 0x8420201c, 0x8c39205d, 0x8a11205d, 0x8464205d, 0x015a085d, 0xe4ffecff,
|
||||
0xc2ffc3ff, 0xbfffc1ff, 0xbbffbdff,
|
||||
0xb7ffb9ff, 0xb5ffb6ff, 0xa0ffb3ff, 0x71fe1bff, 0xabfd61fe, 0x85fd97fd, 0xc3e282fd, 0x38e157e2, 0x34e135e1,
|
||||
0x30e133e1, 0x1fe127e1, 0xb7e016e1,
|
||||
0x3be0b0e0, 0x50df5cdf, 0x48df4fdf, 0x39df45df, 0x06df1ddf, 0x9fdb03df, 0xb9840100, 0x062204d7, 0x5a830a02,
|
||||
0x678f6482, 0x02000123, 0x87008500,
|
||||
0x8a002007, 0x8a032000, 0x8401200b, 0x04bc080b, 0x06000500, 0x08000700, 0x0a000900, 0x0c000b00, 0x0e000d00,
|
||||
0x10000f00, 0x12001100, 0x14001300,
|
||||
0x16001500, 0x18001700, 0x1a001900, 0x1c001b00, 0x1e001d00, 0x20001f00, 0x22002100, 0x24002300, 0x26002500,
|
||||
0x28002700, 0x2a002900, 0x2c002b00,
|
||||
0x2e002d00, 0x30002f00, 0x32003100, 0x34003300, 0x36003500, 0x38003700, 0x3a003900, 0x3c003b00, 0x3e003d00,
|
||||
0x40003f00, 0x42004100, 0x44004300,
|
||||
0x46004500, 0x48004700, 0x4a004900, 0x4c004b00, 0x4e004d00, 0x50004f00, 0x52005100, 0x54005300, 0x56005500,
|
||||
0x58005700, 0x5a005900, 0x5c005b00,
|
||||
0x5e005d00, 0x60005f00, 0x62006100, 0x8a08c182, 0x00860085, 0x008a0088, 0x00970092, 0x00a2009d, 0x00a300a1,
|
||||
0x00a400a5, 0x00a800a6, 0x00a900aa,
|
||||
0x00ac00ab, 0x00ad00ae, 0x00b000af, 0x00b400b2, 0x00b500b3, 0x00b600b7, 0x00ba00bb, 0x01bd00bc, 0x00720053,
|
||||
0x00660065, 0x00550169, 0x00a00077,
|
||||
0x016b0070, 0x0076005d, 0x0066016a, 0x01990087, 0x01730063, 0x00680167, 0x01000067, 0x0160015e, 0x0142015f,
|
||||
0x006c0064, 0x0040017b, 0x00b900a7,
|
||||
0x00640080, 0x0162016e, 0x82650132, 0x6d2c088d, 0x56017c00, 0x81006300, 0x96008400, 0x08010701, 0x4c014b01,
|
||||
0x51015001, 0x4e014d01, 0x6901b800,
|
||||
0x2b01c000, 0x5c015a01, 0x59015801, 0x20082f82, 0x00540100, 0x014f0178, 0x00570152, 0x008b0083, 0x008c0082,
|
||||
0x008e0089, 0x0090008f, 0x0094008d,
|
||||
0x3c238295, 0x009b0093, 0x009a009c, 0x013701ea, 0x0171003d, 0x013a0139, 0x0179003b, 0x013c013e, 0x221f8238,
|
||||
0x883c0000, 0x004e2a01, 0x008a0060,
|
||||
0x011c01ca, 0x0863824e, 0x9c017cac, 0xd401c001, 0xf001e201, 0x0a02fc01, 0x58024402, 0xb2028202, 0xf002ce02,
|
||||
0x34032203, 0xa6037403, 0xca03b803,
|
||||
0xf003dc03, 0x32040404, 0x80046604, 0xd204b004, 0x0e05f604, 0x4a052405, 0x78056205, 0xae059205, 0xda05be05,
|
||||
0x2206f205, 0x7a064406, 0xd006a406,
|
||||
0x0207e206, 0x36071607, 0x68075207, 0x92078007, 0xb207a007, 0xd207c407, 0x0a08e007, 0x4e082e08, 0xa2087408,
|
||||
0xec08be08, 0x22090809, 0x60094409,
|
||||
0x92097409, 0xda09ac09, 0x220afe09, 0x640a380a, 0x9c0a820a, 0xca0aae0a, 0xf80ae40a, 0x3e0b100b, 0x780b4c0b,
|
||||
0x01829e0b, 0x0bb00a0a, 0x0cfe0bdc,
|
||||
0x0c340c22, 0x0c900c7e, 0x0d1c0df4, 0x0d480d38, 0x0d960d56, 0x0dd20da4, 0x0e140eee, 0x0e480e3a, 0x0e700e64,
|
||||
0x0e900e7c, 0x0fda0ebe, 0x0f440f08,
|
||||
0x0fb40f86, 0x10f80fd6, 0x1050101e, 0x10ae1076, 0x11f810d0, 0x11381118, 0x1180115c, 0x11bc119e, 0x12fe11dc,
|
||||
0x1258122a, 0x12c4128e, 0x134413fe,
|
||||
0x139a1380, 0x140214da, 0x1454142a, 0x149c1480, 0x15f614be, 0x155a1528, 0x16d21590, 0x1658160a, 0x16c4169e,
|
||||
0x173017fa, 0x17a21768, 0x17da17be,
|
||||
0x181a18fa, 0x187c184c, 0x19e418b0, 0x1960191c, 0x19b2199a, 0x1a101af0, 0x1a541a30, 0x1a961a7a, 0x1adc1abc,
|
||||
0x1b301bfe, 0x1b9c1b5e, 0x1c101cce,
|
||||
0x1c5e1c38, 0x1cac1c86, 0x1d021dd8, 0x1d5c1d30, 0x1db61d88, 0x1e0c1ed6, 0x1e781e38, 0x1eca1e96, 0x1f401ffa,
|
||||
0x1f9c1f64, 0x201420d4, 0x20742040,
|
||||
0x20d620a2, 0x212021fc, 0x215a213e, 0x21aa2182, 0x220e22da, 0x223e222a, 0x228c225e, 0x22d022ae, 0x230423e8,
|
||||
0x2336231a, 0x236a234e, 0x239c2380,
|
||||
0x23d223b2, 0x241024f0, 0x244e242e, 0x24942470, 0x25de24b8, 0x25482514, 0x26ca258a, 0x26422608, 0x26ba266c,
|
||||
0x270627ea, 0x27522736, 0x27a62786,
|
||||
0x280a28d8, 0x286e283c, 0x28da28a4, 0x291629f2, 0x29562932, 0x29962972, 0x2afc29cc, 0x2a442a24, 0x2aa22a76,
|
||||
0x2b222be6, 0x2b762b50, 0x2ce02bae,
|
||||
0x2c322c0a, 0x2c722c52, 0x2cb22c94, 0x2dee2cd0, 0x2d2e2d0c, 0x2d762d50, 0x2dda2da8, 0x2e162ef2, 0x2e3a2e28,
|
||||
0x2e602e54, 0x2eac2e8a, 0x2ede2eca,
|
||||
0x2f2a2ff4, 0x2f5c2f44, 0x2fa62f82, 0x30f02fcc, 0x3044301c, 0x307c3060, 0x3098308a, 0x30b430a6, 0x30d630c2,
|
||||
0x310031ec, 0x31343116, 0x315a3142,
|
||||
0x31e031ce, 0x320032f2, 0x3254322a, 0x32ac3278, 0x32d832c0, 0x33fc32e6, 0x335e3340, 0x33c0339e, 0x34f433da,
|
||||
0x08018312, 0x00000064, 0xff1b0003,
|
||||
0x03490238, 0x000b0095, 0x00290025, 0x22210500, 0x33341135, 0x11153221, 0x15210314, 0x15163233, 0x012b0614,
|
||||
0x14150622, 0x36343317, 0x3632013b,
|
||||
0x03263435, 0x01331523, 0x6195fee7, 0x626b0161, 0xfcbbfeb9, 0x2b36372a, 0x1e523d21, 0x41383b27, 0xc6555344,
|
||||
0x54c88787, 0x5555b403, 0x06824cfc,
|
||||
0x3f54433b, 0x3b5b5241, 0x5f542739, 0x765c5b7f, 0x00744dfd, 0x00e40002, 0x037f0100, 0x36818228, 0x13000007,
|
||||
0x07231133, 0xee231533, 0x9b0a8787,
|
||||
0xfd28039b, 0x82786aba, 0x02aa2623, 0x03b90165, 0x2223875a, 0x82372315, 0x5eaa2b23, 0x5d5db25e, 0xf5f55a03,
|
||||
0x238200f5, 0x04824820, 0x47841a20,
|
||||
0x47821f20, 0x35331524, 0x04823303, 0x15200382, 0x0382a382, 0x23352323, 0x2c038215, 0x23353335, 0x96eb3335,
|
||||
0x4f964ee4, 0x2300824a, 0x554e964f,
|
||||
0x012c0082, 0x01d7d7ee, 0xf2f2f23a, 0xd146d748, 0x46220082, 0x6d8248d7, 0x53821b20, 0x53824920, 0x26001d24,
|
||||
0x55822f00, 0x86353321, 0x060d414f,
|
||||
0x57085087, 0x34352622, 0x33151336, 0x34353632, 0x23032326, 0x14150622, 0x9d013b16, 0xcccc3d73, 0x3a3c2f91,
|
||||
0xde3d9131, 0x46347bde, 0x1c4aed45,
|
||||
0x871c2323, 0x1e1e1845, 0xc5024518, 0xc8446363, 0x634e5073, 0xd1434545, 0x5d4f4e72, 0x3dd194fe, 0x013f2a2b,
|
||||
0x2a2c3928, 0x00050039, 0x48207f83,
|
||||
0x1322d384, 0x81821f00, 0x00003b3c, 0x23013301, 0x16323303, 0x0614011d, 0x2622012b, 0x3634013d, 0x3b141517,
|
||||
0x09823201, 0x01201082, 0x54081b9b,
|
||||
0xf4fe4997, 0x2861244a, 0x61282424, 0x26212229, 0x1b1b341a, 0x39011a34, 0x23232862, 0x22286228, 0x331b2422,
|
||||
0x1b331c1c, 0xd8fc2803, 0x40342803,
|
||||
0x3435407b, 0x33417b41, 0x3d3e7a74, 0x73fe3d7b, 0x3f7c4034, 0x7c3f3535, 0x7a743440, 0x3c7c3d3f, 0x00020000,
|
||||
0x20048228, 0x22a3823c, 0x82210008,
|
||||
0x22fa879d, 0x82153303, 0x16142e0a, 0x23152133, 0x21153311, 0x34352622, 0x08038237, 0x6d01363e, 0x36332e66,
|
||||
0xe0a8662b, 0x30362b9b, 0x7838012b,
|
||||
0x4483fe78, 0x534a5053, 0x54579901, 0xe502614a, 0x48744d43, 0x43aafe43, 0x309a668b, 0x6d537538, 0x02010100,
|
||||
0x61016502, 0x03005a03, 0x58826182,
|
||||
0x5f020127, 0xf55a035f, 0x2a008200, 0xff8d0001, 0x03d6010d, 0x851300bc, 0x0622271b, 0x16141115, 0x7e82013b,
|
||||
0x35262108, 0x01363411, 0x2d67577f,
|
||||
0x246b4b46, 0x8f8f7545, 0x5a44bc03, 0x4debfc31, 0x5a69443a, 0x79571c03, 0x3f8b3282, 0x32331323, 0x263d8216,
|
||||
0x35012b06, 0x82363233, 0x2b263e3d,
|
||||
0x61578d01, 0x44759091, 0x484b6a25, 0xbc03662c, 0xe4fc567a, 0x3c44695a, 0x3115034b, 0x247f845a, 0x02730157,
|
||||
0x27ff820b, 0x13000011, 0x07173717,
|
||||
0x17250282, 0x27072707, 0x08028237, 0x55c42725, 0x7b2c6e18, 0x4f617e1d, 0x296d1955, 0x607d1d79, 0x7f620b03,
|
||||
0x6c2a7a1d, 0x614f5619, 0x2a791e7f,
|
||||
0x8254186f, 0x01002b46, 0xe4005100, 0x82021102, 0x67420b00, 0x3523300a, 0x4cbb5123, 0xbb4cb9b9, 0xa6a6dc01,
|
||||
0x82b3b345, 0xffe43527, 0x007f0149,
|
||||
0x00030078, 0x03333700, 0x2e9be423, 0xd1fe786d, 0x30264385, 0x31025301, 0x1b839901, 0x1521132b, 0x01023021,
|
||||
0x9901fffd, 0x281c8246, 0x00ee0001,
|
||||
0x00750100, 0x26378575, 0x87ee2315, 0x82757587, 0x2c002512, 0x38020000, 0x4f82bf82, 0x0133012d, 0x55e30123,
|
||||
0x03584cfe, 0x82d8fc28, 0x82232029,
|
||||
0x8241201b, 0x0009231b, 0x0b820013, 0x16030134, 0x3632013b, 0x05341135, 0x13171411, 0x22012b26, 0x33413706,
|
||||
0x41222008, 0x3908056f, 0x140fd7c3,
|
||||
0xfe362b5e, 0x10db0cc6, 0x372b6015, 0x5443f125, 0x41f14255, 0x99025355, 0x5407b1fd, 0x2581013b, 0x267ffe25,
|
||||
0x094f021f, 0x597c9855, 0x785a7ffe,
|
||||
0x81015979, 0xa6827c59, 0x00010023, 0x2073822b, 0x3a738439, 0x11211300, 0x35211533, 0x73231133, 0xfdbe0801,
|
||||
0x0383cbf2, 0x431bfd28, 0x82a20243,
|
||||
0x86242027, 0x001b219b, 0x9d442782, 0x011d2108, 0x3520f782, 0x08089f44, 0x77012b28, 0x55432f01, 0x29a84553,
|
||||
0xfd99012d, 0xa74350e3, 0x2a37352c,
|
||||
0x7c2803e7, 0x4e795a5d, 0xec43a942, 0x3f54765d, 0x7b85553e, 0x53822820, 0x7b823a20, 0x53871f20, 0x011e0729,
|
||||
0x23061415, 0x82213521, 0x823420f6,
|
||||
0x433520f0, 0x2f0806e3, 0x6b013021, 0x274c5543, 0xfe43552c, 0x2a320186, 0x862b3637, 0x362e2c86, 0x03ddfe2b,
|
||||
0x845d7728, 0x3f6e182f, 0x5c43815b,
|
||||
0x445a3f42, 0x54404350, 0x02225f83, 0xb3862100, 0x0d000229, 0x03010000, 0x82330333, 0x15233ce0, 0x35213523,
|
||||
0xf7f76f01, 0x5a5ab33b, 0x02b2fe78,
|
||||
0x02effde9, 0x3fb0fd50, 0x835a9899, 0x88012037, 0x83142037, 0x21152597, 0x16323311, 0x2508958a, 0x01212123,
|
||||
0xe6a2fedd, 0x545b5962, 0x2d018ffe,
|
||||
0x3630363e, 0x2803c5fe, 0x6f00ff43, 0x5c4386f0, 0x00435c63, 0xcb410002, 0x83162007, 0x2113284d, 0x06222315,
|
||||
0x4421011d, 0x24080948, 0x36341135,
|
||||
0x16141513, 0x3d32013b, 0xc8233401, 0x2ed81001, 0x3c170128, 0xd35e4844, 0x4047475e, 0x54642e28, 0x35548238,
|
||||
0x5180473b, 0x4e6d8f48, 0xb2016d4e,
|
||||
0x78fe4d6e, 0x6c3b49d9, 0xa7855b96, 0xdf821c20, 0x28034824, 0xa7830500, 0x01230135, 0x2c021c21, 0x017ea8fe,
|
||||
0x0367fe43, 0x02d8fc28, 0x440300e5,
|
||||
0x1720082f, 0x2d2e8782, 0x23210000, 0x34352622, 0x012e3736, 0x7a823435, 0x06141522, 0x26057341, 0x012b3427,
|
||||
0x82141522, 0x054e4512, 0x35370882,
|
||||
0x92012634, 0x304e5bc1, 0x97252e35, 0x2c2697c1, 0x304f3035, 0x82615561, 0x6e250802, 0x6333303a, 0x6e34633a,
|
||||
0x145b616d, 0xd1445315, 0x155344d1,
|
||||
0x6d605b15, 0x9f9fe06e, 0x41a2029d, 0x4f919150, 0x21a48242, 0x37420002, 0x002c2105, 0x42050741, 0xe14106bd,
|
||||
0x013d2205, 0x0a504521, 0x82826e82,
|
||||
0xd4c72e08, 0x5e48475f, 0x1701b2fe, 0xeafe272d, 0x3f45403e, 0x2d27d63a, 0x2c035666, 0x4afe6d4e, 0x3a434e6d,
|
||||
0x4a4e6248, 0xb44d6eb2, 0x49f87b93,
|
||||
0x4662823a, 0x012107d3, 0x05af46d8, 0x15333724, 0x03821123, 0x829be421, 0x78782400, 0x8276d801, 0x00022624,
|
||||
0x0149ffe4, 0x2023877f, 0x231f8213,
|
||||
0x23033315, 0x2e212383, 0x0822826d, 0xd1feea30, 0x7f000100, 0xe5017c00, 0x0600d702, 0x01130000, 0x17150715,
|
||||
0x66017f15, 0xa401eeee, 0xca5b3301,
|
||||
0x005bca11, 0x62000200, 0x02023301, 0x6b854e02, 0x15211324, 0x03821121, 0xa0016224, 0x038460fe, 0x01457825,
|
||||
0x8200471b, 0x8a7e204b, 0x0109324b,
|
||||
0x27353735, 0xfe67017e, 0x02eeee99, 0xfecdfed7, 0x844f83d8, 0x82302097, 0x03342654, 0x00190028, 0x0c59431d,
|
||||
0x26231522, 0x22095743, 0x82132123,
|
||||
0x302a08b1, 0x55426d01, 0x38414453, 0x521e273b, 0x362b213d, 0xdcfe2a37, 0x03878762, 0x5b5c7628, 0x27545f7f,
|
||||
0x525b3b39, 0xfd543f41, 0x5a827590,
|
||||
0x0002002d, 0x0259ff35, 0x0081022c, 0x8423001c, 0x1115325b, 0x34352223, 0x3311013b, 0x21233411, 0x14111522,
|
||||
0x08bc8233, 0x1135223c, 0x22230134,
|
||||
0x013b1415, 0x651f01a8, 0x616d63fe, 0xe7fe2547, 0x8a012121, 0x01737cfe, 0x20202d28, 0x9181022d, 0xa2ab62fe,
|
||||
0x5b01f3fe, 0xe6fd5151, 0x02784337,
|
||||
0xe6fe911f, 0x68826c69, 0x20000226, 0x44020000, 0x0322c382, 0xfa820b00, 0x33032608, 0x13332703, 0x07232723,
|
||||
0x5b2f0123, 0xb75f5bbc, 0xd62186b7,
|
||||
0xd1028621, 0xdc0124fe, 0xb0d8fc57, 0x000300b0, 0x20338221, 0x22338243, 0x84100008, 0x431120f9, 0x032006e9,
|
||||
0x34290883, 0x21252326, 0x14151632,
|
||||
0x08038207, 0x21230636, 0x362abda6, 0xb2bd2b35, 0x2a36342c, 0x7f01c9fe, 0x53485543, 0x76fe4355, 0xc7fe7c01,
|
||||
0x5c40435a, 0xdcfe6901, 0x4355824d,
|
||||
0x3d745d78, 0x845c883a, 0x3c000100, 0x28205f82, 0x13205f82, 0x1521f983, 0x05a74621, 0x2620ee84, 0x363cef82,
|
||||
0xfe5401d4, 0x36362af3, 0xfe0d012a,
|
||||
0x555444ac, 0x55432803, 0x3b7ffe3d, 0x5a784354, 0x47061c45, 0x3d20056b, 0x09214382, 0x84458300, 0x871120a1,
|
||||
0x1411219a, 0xad239782, 0x823729b0,
|
||||
0x01cb2491, 0x8255437d, 0x0283328f, 0x535efde5, 0x3d81013c, 0x597c4355, 0x79597ffe, 0x22008200, 0x82330001,
|
||||
0x822f208b, 0x850b2047, 0x4211208b,
|
||||
0x332c0635, 0x8cfefc01, 0xf2fe0e01, 0x04fe7401, 0xfe298082, 0xd0fe44d2, 0x00010043, 0x202f822e, 0x20778435,
|
||||
0x07614200, 0x2e23112b, 0x82fe0702,
|
||||
0xe7fe1901, 0x232a8389, 0x99fe44c6, 0x2b875b84, 0xe78b1720, 0x11013b27, 0x11213523, 0x05234621, 0x6101c731,
|
||||
0x352ce7fe, 0x92ac2a37, 0x92fe0c01,
|
||||
0x86545742, 0x533c2eed, 0xfe453001, 0x01587a48, 0x007b5a81, 0x08934101, 0x3326a783, 0x33112111, 0x05822311,
|
||||
0x87212336, 0x88881301, 0x0387edfe,
|
||||
0x018ffe28, 0x01d8fc71, 0x008dfe73, 0xd78d2f82, 0x3d462320, 0x25d78207, 0x04febaba, 0x6682baba, 0x465efd21,
|
||||
0x3520063f, 0x2e20d382, 0x0d20d382,
|
||||
0x1120a783, 0x38084e45, 0x01d42311, 0xfe41565a, 0x2b19019e, 0x2803dc37, 0x7959aafd, 0x023c5343, 0x485f8313,
|
||||
0x0c2007eb, 0x33373382, 0x33133311,
|
||||
0x03230109, 0x28231107, 0x8afb0887, 0x1401ecfe, 0x8308ee97, 0x01a12b94, 0xfe84fe5f, 0x02810154, 0x378781fe,
|
||||
0x17453a20, 0x27c78206, 0x87282115,
|
||||
0xeefd8b01, 0x1b215d82, 0x201f8343, 0x208b8225, 0x841f823e, 0x011b2157, 0x032ee683, 0x23110323, 0x75739825,
|
||||
0x746b6899, 0x2a82686a, 0xb002502d,
|
||||
0x6a02d8fc, 0x660296fd, 0x82009afd, 0x00012100, 0x09203787, 0x01218f83, 0x2b378211, 0x25231101, 0x6a1d0192,
|
||||
0x66f9feac, 0x69223382, 0x33829702,
|
||||
0xaffd5122, 0x00202e82, 0x20051743, 0x22678243, 0x821f000f, 0x14112331, 0xce473b16, 0x14c94705, 0x2a399d3a,
|
||||
0x36362a64, 0x382b642a, 0x5542f51a,
|
||||
0x43f54156, 0x53025454, 0x533c7ffe, 0x21055242, 0x53429956, 0x07a04205, 0x22099f42, 0x4412000a, 0x11220a3b,
|
||||
0x43431323, 0x01283d06, 0x5456427d,
|
||||
0x8686f744, 0x34342caf, 0x8e28032c, 0xfe876769, 0xfee502bd, 0x659860a3, 0x2123a385, 0x850284ff, 0x9b2320a3,
|
||||
0x231723a3, 0x4d422327, 0x379f2305,
|
||||
0xa783622b, 0x372b622f, 0x5543f418, 0x3b314157, 0x41583b6b, 0x2aab8355, 0x53523c7e, 0x3d82013b, 0x82985555,
|
||||
0x587e28ab, 0x787c7c79, 0x48820159,
|
||||
0x022c056b, 0x00002600, 0x28033d02, 0x19001100, 0x2808f147, 0x23011d16, 0x2b263435, 0x3fb68901, 0x457b0126,
|
||||
0x7f555a57, 0x85ae2b35, 0x342baf85,
|
||||
0x28032937, 0x3c85597e, 0xbbbbaa2b, 0x93fe664c, 0xcd22bf82, 0xab478257, 0x07934106, 0x00001d26, 0x22211501,
|
||||
0x44055147, 0x35220535, 0x59843221,
|
||||
0x2d08b782, 0x02333634, 0x5af0fe0c, 0x6a643936, 0xfe575f5f, 0x651601bb, 0x534a6143, 0x034d5358, 0x4c8d4328,
|
||||
0x6e6d703e, 0x55a44383, 0x6e637633,
|
||||
0x4a820072, 0x82380021, 0x822c20ab, 0x830720ab, 0x231522a9, 0x25018211, 0xb4f40138, 0x2f82bb85, 0x021bfd23,
|
||||
0x202383e5, 0x20238223, 0x06634441,
|
||||
0xde413320, 0x22098208, 0x82012b06, 0x7d233c74, 0x2b602c35, 0x42568035, 0x035541f0, 0x42aafd28, 0x02414e4d,
|
||||
0x59aafd56, 0x83597979, 0x8220203f,
|
||||
0x8644203f, 0x13332163, 0x03290182, 0x86862023, 0xb7868909, 0x242e82b7, 0xfcd1022f, 0x208b84d8, 0x20278202,
|
||||
0x2027825f, 0x848b820f, 0x332b8527,
|
||||
0x23032303, 0x05318602, 0x054f4850, 0x945e8431, 0x9339043a, 0x412c3782, 0x1cfee401, 0xd8fcbf02, 0x9ffe6101,
|
||||
0x26203f84, 0x2006ef42, 0x083f830b,
|
||||
0x33011b25, 0x0b231303, 0x31132301, 0x7d867e8c, 0x7b8eb9ba, 0x03c58a84, 0x01cafe28, 0xfe75fe36, 0xfe470163,
|
||||
0x849d01b9, 0x821a2037, 0x82492037,
|
||||
0x87082077, 0x23112937, 0x8a8f1a11, 0x87d98690, 0x68282f82, 0xfafd9801, 0x2401defe, 0xcb492b84, 0x82092007,
|
||||
0x15213e2b, 0x21152101, 0x28210135,
|
||||
0x85fe1202, 0xeefd7b01, 0x72fe8e01, 0xfd3f2803, 0x022c435a, 0x0c474cb9, 0x2f075f41, 0x8d211533, 0xdada4901,
|
||||
0xbc03b7fe, 0x44d9fb44, 0x270e2b4b,
|
||||
0x23013313, 0xb801542c, 0x20052a4b, 0x09874c00, 0x11253f84, 0x11333521, 0x2a3f8223, 0xdadab7fe, 0x51fbbc03,
|
||||
0x82270444, 0x01052423, 0x825e02c3,
|
||||
0x000624bf, 0x46010900, 0x30270590, 0xcb592e01, 0x825aca11, 0xed9b31bf, 0xff0100ed, 0x0217fffe, 0x006dff66,
|
||||
0x07000003, 0x0226b482, 0x98fd6802,
|
||||
0xa2825693, 0x93263f82, 0x81019d02, 0x1b831603, 0x1517132b, 0xeeee9327, 0x45341603, 0x2b1c821a, 0x001e0002,
|
||||
0x02450200, 0x00110081, 0x13320f82,
|
||||
0x15163221, 0x35222111, 0x21333634, 0x2b263435, 0x994d0101, 0x76290807, 0x475e2a01, 0x428b64fe, 0x26150149,
|
||||
0x4801f230, 0x2c333cb2, 0x8102c035,
|
||||
0x3cfe6e4f, 0x516061be, 0xfffe313d, 0x3c434437, 0x051f4300, 0x4d033e2c, 0x15000b00, 0x33130000, 0x2e4a3315,
|
||||
0x232b0805, 0x33111321, 0x013d3632,
|
||||
0x26232634, 0x4c58ed87, 0x8cfe574d, 0x292cb587, 0x4d032d27, 0xd27761cc, 0x3d026077, 0x513506fe, 0x823d4aed,
|
||||
0x0001229b, 0x209b8230, 0x469b8231,
|
||||
0x1d2608fb, 0x3b161401, 0x6e491501, 0x01d43c06, 0x30defe5d, 0xcf694026, 0x4a5aa3fe, 0x4381024a, 0x4ffb4a3b,
|
||||
0x7158432c, 0x4e5871ef, 0x87830963,
|
||||
0x1d4d1620, 0x4eda8205, 0x1e2407f9, 0x11013b01, 0x2008dc82, 0xfe86eacc, 0x4a4d5790, 0x3b371a3b, 0x282eb37d,
|
||||
0xfccc8102, 0xd27760b3, 0xa3cb6078,
|
||||
0x011c575d, 0x828a83fa, 0x822420d3, 0x84412050, 0x831f208b, 0x1532254b, 0x15212314, 0x17208d8b, 0x3806c74f,
|
||||
0x0622012b, 0x8686f4c7, 0x3f2df0fe,
|
||||
0x59c4feec, 0xd03d4a4a, 0x3025262f, 0x365b837a, 0x5145b7be, 0x72574333, 0xc85872ee, 0x4543316a, 0x00003c36,
|
||||
0x822d0001, 0x0336245b, 0x8310004d,
|
||||
0x36342159, 0x2323e182, 0x43331522, 0x2d3605ac, 0xc65a4a9f, 0x9a9a598a, 0x81029f87, 0x88446666, 0x02c2fd43,
|
||||
0x0082003e, 0x26000226, 0x3e020dff,
|
||||
0x1d209384, 0x25098d46, 0x3d363233, 0x904a2301, 0x83112006, 0x08e683a1, 0x7301cb2b, 0xfffe5a4a, 0xed396383,
|
||||
0x3a4b485d, 0x88b62f28, 0x8102394c,
|
||||
0x567456fd, 0x344c3043, 0x72ed7457, 0xfcfebb57, 0xfb013946, 0x205b8233, 0x06ef4a01, 0x0f004d22, 0x33205982,
|
||||
0x2108da82, 0x23111516, 0x2b263411,
|
||||
0x24231101, 0x475df287, 0xbc2d2786, 0xcc4d0387, 0x3bfe6d4f, 0x3d49b901, 0x9385c1fd, 0x2305c747, 0x0009004d,
|
||||
0x4d052147, 0x13200689, 0x2e2ace82,
|
||||
0xfdc04701, 0xb6c0c0f9, 0x79829b9b, 0x4343c22f, 0x1001fa01, 0x00020070, 0x010dff72, 0x22ff82fb, 0x8613000f,
|
||||
0x012b29c7, 0x3e323335, 0x23113502,
|
||||
0x722c3883, 0x5c487f01, 0x292c79db, 0xeef80921, 0x472c3c84, 0x06434f6c, 0x0233361e, 0x700f0161, 0x0c20af8c,
|
||||
0x33294182, 0x33373311, 0x03230109,
|
||||
0x29ac8323, 0xfe88f009, 0x9e2301f2, 0xaf8207f1, 0xfb39fe2a, 0xa0fedffe, 0xd8fe2801, 0x7b413682, 0x82352006,
|
||||
0x8409207b, 0x2fad8679, 0xc444012d,
|
||||
0xbebef8fd, 0xf6fc4d03, 0xc6024343, 0x27432782, 0x05374e09, 0x82080d41, 0x1e233c08, 0x475d8301, 0x232e2884,
|
||||
0x0284584e, 0xfe6d4e81, 0x49b8013a,
|
||||
0x02c2fd3d, 0x82c2fd3e, 0x0025263b, 0x023f0200, 0x05114181, 0x49413220, 0x01252d0a, 0x84465e76, 0x85bc2d28,
|
||||
0x6c4f8102, 0x4b213583, 0x8231823b,
|
||||
0x1900212e, 0x4b200482, 0x0f223382, 0x99821f00, 0x16141524, 0x3a43013b, 0x073d4f05, 0xc9511d20, 0x9f25080a,
|
||||
0x3f4c402d, 0x7a2e272d, 0xea1e282e,
|
||||
0x5a4a4a5a, 0x49495bea, 0x58e5b901, 0xf2513339, 0x803d3d48, 0x73ef7356, 0x82048456, 0x1e002556, 0x46020dff,
|
||||
0x9f435b82, 0x08cc4d05, 0x13231522,
|
||||
0x32081b4a, 0x5982011e, 0xfc5b4b4d, 0x2fc48686, 0x025a3827, 0x82705981, 0x03f32a41, 0x3905fe31, 0x4a050146,
|
||||
0x2047832d, 0x20478228, 0x2347873c,
|
||||
0x35231101, 0x22067642, 0x4a231733, 0x3b2705a7, 0x863c0201, 0x82475dea, 0x4b862a90, 0xb32e2838, 0x8cfc8102,
|
||||
0x2e8782f3, 0x32435871, 0x46fbfe45,
|
||||
0x00000039, 0x823a0001, 0x8229204c, 0x820a2047, 0x1521210c, 0x23343b84, 0x22013411, 0x4eef0701, 0x8102882a,
|
||||
0xfe5f2f43, 0xc2bf0150, 0x00251e82,
|
||||
0x0200001b, 0x202b8249, 0x210c821d, 0x31532115, 0x47322006, 0x22080828, 0x2b263436, 0x35262201, 0x19023334,
|
||||
0x2218b2fe, 0x46f01822, 0xfe434348,
|
||||
0x1d65016f, 0xf5222025, 0x829c4a3d, 0x2b3b2e4f, 0x4c673a29, 0x4143665c, 0x446b3958, 0x204a82bd, 0x2fd08300,
|
||||
0x00280335, 0x13000012, 0x15331533,
|
||||
0x16141123, 0x4a820582, 0x3339d782, 0xdddd86d2, 0x6760542a, 0x03a5a53d, 0xfe43a728, 0x43294977, 0x9f01623d,
|
||||
0x097b4243, 0x4706df41, 0x1123053f,
|
||||
0x82211133, 0x8424353a, 0x88bb2e28, 0x455e86fe, 0x46fe8102, 0x3e023c48, 0x6d4e7ffd, 0x15203384, 0x4f20c782,
|
||||
0x06203382, 0x33079346, 0x93881523,
|
||||
0xbcbf8897, 0xc6fd8102, 0x7ffd3a02, 0x09000100, 0x5a202382, 0x0c202382, 0x1b342386, 0x23033301, 0x0923010b,
|
||||
0x48423b88, 0x65883d3f, 0x982a2c98,
|
||||
0x01232f83, 0x8371fe8f, 0x30012333, 0x3782d0fe, 0x37821f20, 0x00217182, 0x0837830b, 0x33371721, 0x27231303,
|
||||
0x1f132307, 0x7a989084, 0x8f84cecf,
|
||||
0x02cc8190, 0xfef5f581, 0xf8b7fec8, 0x844401f8, 0xff0e248f, 0x8256020d, 0x8607206b, 0x23012b6b, 0xa1950e37,
|
||||
0xb5fe6aa8, 0xbc82656e, 0xe6011a29,
|
||||
0x00f38cfc, 0x82370001, 0x822c205b, 0x0c1f4727, 0xf5013735, 0x5301adfe, 0x66010bfe, 0x81029afe, 0x43fdfd3b,
|
||||
0x84160228, 0xff6f2c57, 0x03f5010d,
|
||||
0x001e00bc, 0x50330100, 0x1423053d, 0x45160706, 0x8b4906c9, 0x36273605, 0x3634013d, 0x3727ce01, 0x2f40462c,
|
||||
0x25552f6f, 0x6d8f7515, 0x0577536d,
|
||||
0x512bf134, 0xfc49471c, 0x69443750, 0x5e04015a, 0xf05d3b32, 0x5a827957, 0x01010023, 0x205b8201, 0x215b8262,
|
||||
0x5b820003, 0x01231129, 0x03616101,
|
||||
0x8f51fbbc, 0x46132077, 0x1721057f, 0x09a45306, 0x37226f82, 0x0582012e, 0x2b267d08, 0x62256f01, 0x8f6f6f90,
|
||||
0x52221276, 0x3e306e34, 0x03352d46,
|
||||
0xf05779bc, 0x5f313a5e, 0x695afcfe, 0xfc4e3944, 0x511c454b, 0x5a31f12b, 0x56000100, 0x0c024d01, 0x1900ec01,
|
||||
0x33130000, 0x33021e32, 0x33353632,
|
||||
0x012b0614, 0x23022e22, 0x23150622, 0x4bb03634, 0x23192816, 0x4e1d1913, 0x1c372b3a, 0x18241429, 0x2f4e1b1c,
|
||||
0x211bec01, 0x3c27301b, 0x1e241e62,
|
||||
0x5c43273a, 0xe4000200, 0x7f22bf82, 0x834f3302, 0x23053305, 0x23373311, 0x75013335, 0x9b0a8787, 0x4602f39b,
|
||||
0x2382766a, 0xdb827820, 0x2803e926,
|
||||
0x1d001500, 0x99420982, 0x56332005, 0x22330597, 0x34113526, 0x07013b36, 0x33161411, 0x01222311, 0x82822f38,
|
||||
0x2f210800, 0x3535404b, 0x235f4b40,
|
||||
0x033d223c, 0xfe307428, 0x75753021, 0x2101523d, 0xfe8d3d52, 0x011f38d5, 0x204882df, 0x07c74c00, 0x97411520,
|
||||
0x24568209, 0x21152111, 0x08848211,
|
||||
0x36343521, 0xaff82801, 0xa4a4372a, 0x63fe1e01, 0x03555c5c, 0x3d514328, 0xc5fe4691, 0x46800145, 0x82775a91,
|
||||
0x49002036, 0x18200757, 0x21063342,
|
||||
0x42821503, 0x31570384, 0x1a352708, 0x8e8a898e, 0x00827ed9, 0x82718721, 0x28033100, 0xa3015dfe, 0x2f12fafd,
|
||||
0x51512e62, 0x142f622e, 0xfe26e382,
|
||||
0x660124ff, 0x0741bc03, 0x82372005, 0x821120ca, 0x68fe2103, 0xb7260082, 0x98046dfe, 0x23826efe, 0x80ff392a,
|
||||
0x28032a02, 0x33002700, 0xa6826d82,
|
||||
0x4f0afa43, 0x6d53065d, 0x08355608, 0x23133208, 0x1614010e, 0x3536013b, 0x01c32634, 0x18effe37, 0xc2182121,
|
||||
0x3737423d, 0xa1fe3c3e, 0x261d2701,
|
||||
0x3cb81d26, 0x483f3f4b, 0x1f1891f7, 0x27ab1920, 0x08e78226, 0x292a3b23, 0x6053703b, 0x4f6d2c30, 0x2c414361,
|
||||
0x4f713b29, 0x6b2f305e, 0x93fe5c50,
|
||||
0x39543801, 0x3a29471c, 0x28008200, 0x02670002, 0x03fc01b0, 0x20b78516, 0x20fb8213, 0x2b038225, 0x01878767,
|
||||
0x0387870e, 0x66666616, 0x212c1982,
|
||||
0x4102e9ff, 0x13003f03, 0x4c002500, 0x83096b41, 0x45152095, 0x9f08062e, 0x020e2237, 0x031e1415, 0x013e3233,
|
||||
0x27012e10, 0x14071e32, 0x2223070e,
|
||||
0x3435082e, 0x0f01063e, 0x231c5886, 0x86581c23, 0x4b38372a, 0x13354e44, 0x44361c0e, 0x29585a36, 0x2b5b5828,
|
||||
0x1e273742, 0x02060c13, 0x130c0602,
|
||||
0x4237271e, 0x333c272b, 0x0f152026, 0x03020509, 0x271c1009, 0x7602473a, 0xda233125, 0x42262f23, 0x4534da36,
|
||||
0x8b521a8b, 0x547d5f76, 0x9a35112b,
|
||||
0x37993a01, 0x1d0d073e, 0x5936381f, 0x59548054, 0x1d1e3837, 0x0d05070d, 0x37212011, 0x394f5236, 0x385f5d47,
|
||||
0x08161c36, 0x782eeb84, 0xeb016d01,
|
||||
0x12002903, 0x00001a00, 0x274a3313, 0x05da5105, 0x34354808, 0x17012b26, 0x15062223, 0xb0013b14, 0xfe3340c8,
|
||||
0x39392cf2, 0x1812a32c, 0x2a56cfa6,
|
||||
0x03811d1e, 0xfe4e3b29, 0x3a3c4fcd, 0x18232650, 0x4c241da4, 0x5a000200, 0x0902a400, 0x06003602, 0x00000d00,
|
||||
0x07153701, 0x852f1517, 0x01273406,
|
||||
0x8f8fc841, 0x8fc9e7c8, 0x8d01c98f, 0x6a6a5fa9, 0x853cad5f, 0x01002b06, 0xf1005100, 0xdc011102, 0x35820500,
|
||||
0x3523152e, 0x11023521, 0x0184fe44,
|
||||
0x45a6ebdc, 0x0121a782, 0x19cb5600, 0x2e000431, 0x35021601, 0x10003f03, 0x21001600, 0x85002c00, 0x071421c7,
|
||||
0x2a05bb4d, 0x2315012b, 0x32331513,
|
||||
0x83272334, 0x33162aca, 0x26343632, 0x14163227, 0x056b5406, 0xb2b53d08, 0x282a2920, 0x3e512d3d, 0x2e2e523e,
|
||||
0x7e7e5614, 0x7f7f5756, 0x98986c57,
|
||||
0x9a986b6c, 0x242fc402, 0x430f1833, 0x8d464747, 0x76761d01, 0x5d5c8d67, 0x8abe8b8d, 0xa0e8a12e, 0xa27374a0,
|
||||
0x0026ae82, 0x02bb0253, 0x874b0310,
|
||||
0x15212a05, 0xbd015321, 0x160343fe, 0x2bb7825b, 0x01740002, 0x03f00191, 0x000f004d, 0x59055f4a, 0xff470fa9,
|
||||
0x95e72f0c, 0x3e36363e, 0x35353e95,
|
||||
0x7f17131f, 0x04841317, 0x414d033a, 0x434f9a4f, 0x4f9a5042, 0x2ab08441, 0xb2292526, 0x00222228, 0x51000200,
|
||||
0x23580482, 0x580f2005, 0x11200d25,
|
||||
0x51218582, 0x052958bb, 0x40fec02c, 0xa6a6dc01, 0xfeb3b345, 0x928245ae, 0x00010029, 0x01a001b5, 0x412a03ae,
|
||||
0x142108f1, 0x05cd5b07, 0x32333526,
|
||||
0x012b3435, 0x20080686, 0x2823aeb5, 0x22292a2a, 0x21218eae, 0x21214545, 0x402a038e, 0x2224352f, 0x303c3034,
|
||||
0x3d313d3e, 0x224c823e, 0x82b20001,
|
||||
0x03b2224b, 0x06374528, 0x22254785, 0x1533011d, 0x061e5421, 0x26342508, 0x8fd7012b, 0x21282920, 0xffb61d4d,
|
||||
0x49232600, 0x0f14140f, 0x4028036d,
|
||||
0x3a3a2e2f, 0x31773047, 0x23322238, 0xe3244b84, 0xd1019d02, 0x2a064741, 0xe3071537, 0xe202eeee, 0x841a5f34,
|
||||
0xff28241b, 0x823d020d, 0x820e2067,
|
||||
0x112122e9, 0x21018523, 0x64822622, 0x7e01bf37, 0x2a6d6c7b, 0x03545344, 0x03e5fb28, 0x023afcc6, 0x6a688636,
|
||||
0x28eb858d, 0x014a01ee, 0x00bf0175,
|
||||
0x32378203, 0xee231533, 0xbf018787, 0x00010075, 0x010dfff4, 0x83ceff6f, 0x33172917, 0x7bf42307, 0xc1324f2c,
|
||||
0xcc2d1782, 0x9101a101, 0x09002a03,
|
||||
0x33130000, 0x31318211, 0x23113335, 0xc53a83d4, 0x2a033a42, 0x2f2fa6fe, 0x58822901, 0x74000228, 0xf0016c01,
|
||||
0xd7412903, 0x1338262f, 0x12174e17,
|
||||
0x37048212, 0x42290313, 0x4251994f, 0x50995142, 0x2b979141, 0x992a2425, 0x00242428, 0x270f4343, 0x07151713,
|
||||
0x37273735, 0x5a320685, 0x8f8fc9c9,
|
||||
0x8fc8c8e7, 0xac36028f, 0x695faa3c, 0x06855f6b, 0x04000024, 0x3c821700, 0xbb824e20, 0x0d000328, 0x1b001800,
|
||||
0x1d5c0000, 0x20c58705, 0x2ecf8401,
|
||||
0x23352315, 0x33073735, 0xfe49fc01, 0x82064c2c, 0x39412fd9, 0x295aac01, 0x99924529, 0x28036363, 0xe787d8fc,
|
||||
0xfe8ffe2d, 0x45472dec, 0x00cbc535,
|
||||
0x82150003, 0x864f205b, 0x9128205b, 0x41322059, 0x23200af9, 0x0806f941, 0x26343523, 0xfa01012b, 0x4b2bfe4a,
|
||||
0xc63b8206, 0x57013942, 0x2929218e,
|
||||
0xb51d4c21, 0x492325fe, 0x1014150f, 0x2e6f8d6d, 0x3b2e303f, 0x77304739, 0x18233930, 0x83002219, 0x821e20d3,
|
||||
0x84462077, 0x000e2477, 0x852c0011,
|
||||
0x20c98e79, 0x088a5533, 0x4208bc42, 0x012106c3, 0x24e483f5, 0x285ba501, 0x2cde8228, 0x40fe6464, 0x2a2822a2,
|
||||
0xa221292a, 0x05d44282, 0x80838220,
|
||||
0x87880121, 0xb60221e8, 0x2910e242, 0x30000200, 0x34020dff, 0x03573402, 0x21052305, 0xe0872622, 0x055f3320,
|
||||
0x33162a09, 0x35230321, 0xfe340233,
|
||||
0x0f045793, 0x62240125, 0x57f38787, 0x02220d03, 0xde827470, 0x56030021, 0xbd20069b, 0x0b220982, 0x9d560f00,
|
||||
0x1713230d, 0xa1562715, 0xee73220c,
|
||||
0x0aa456ee, 0x4fbd0321, 0x439d05eb, 0x07153722, 0xc320438c, 0x8920438d, 0x8d055f43, 0x8e122043, 0x17332387,
|
||||
0x2c572723, 0x98c6260e, 0x4f527579,
|
||||
0x228e8c75, 0x914e4e76, 0x8e1d20d3, 0x3423244b, 0x49163233, 0x2324065c, 0x06222622, 0x8c2e9d8c, 0x5a2d8855,
|
||||
0x55181a1e, 0x57334342, 0x5e8b163a,
|
||||
0x2c655828, 0x392b1c10, 0x63831732, 0x37410420, 0x8e13200e, 0x06b34765, 0x47205b8c, 0x8c05c047, 0x05cb47b2,
|
||||
0x0000202c, 0xbd034402, 0x17001300,
|
||||
0x49822300, 0x2705574a, 0x27231307, 0x13230723, 0x28055950, 0x27033303, 0x33171415, 0x06575f36, 0x5e023708,
|
||||
0xb2172227, 0x21d62186, 0x2117b186,
|
||||
0x5bbc5b54, 0x19351a38, 0x031b311c, 0x39211cbd, 0xeefc0d28, 0x1203b0b0, 0x2239280d, 0x24feec1b, 0x35afdc01,
|
||||
0x1d06071c, 0x6a821f35, 0x00266582,
|
||||
0x28034b02, 0x71820300, 0x03130025, 0x5f271133, 0x2f080516, 0x15331523, 0x03231121, 0x752cd023, 0xcad1019f,
|
||||
0xfeca7d7d, 0x651f7ece, 0x60fee902,
|
||||
0x3f3fa001, 0xbe4360fe, 0xfe010143, 0x000200fa, 0x020dff3c, 0x57053f58, 0x33220c59, 0x55571521, 0x33132306,
|
||||
0x45582307, 0x7b63230f, 0x49584f2c,
|
||||
0xa6fc220f, 0x579383c1, 0xbd24052b, 0x0f000b00, 0x230d0558, 0x27151713, 0x220c0958, 0x58eeee60, 0x8342080c,
|
||||
0x58022007, 0x3f930643, 0x07153722,
|
||||
0xb0203f8c, 0x7f423f8b, 0x203f8b06, 0x427f8e12, 0x428c057d, 0x7d42b320, 0x42868a05, 0xc78b087b, 0x498f1320,
|
||||
0x25231525, 0x8c231533, 0x4234204a,
|
||||
0x4a8a0515, 0x66666623, 0x58cf9100, 0x3720083d, 0x58050f41, 0x0b410541, 0x05445805, 0x8e43d820, 0x233b9b05,
|
||||
0x0715013f, 0x41087d58, 0x3b850507,
|
||||
0x8643a420, 0x413b8c05, 0x77890507, 0x85080741, 0x0903417a, 0xd8254285, 0x004e4e76, 0x0c874103, 0x418aff85,
|
||||
0x4285ff88, 0x4286fb89, 0x8382fa83,
|
||||
0xfeff192e, 0x28034a02, 0x1b000d00, 0x21130000, 0x29050561, 0x23112123, 0x11133335, 0x50821533, 0x36323208,
|
||||
0x26341135, 0x7e013423, 0x42565543,
|
||||
0x1b1b82fe, 0xaf7e7e87, 0x2b36362b, 0x597c2803, 0x7a597efe, 0x01428301, 0x42defe22, 0x3a55c1fe, 0x553d8201,
|
||||
0x57578200, 0xbd22050b, 0x57840900,
|
||||
0xa1583320, 0x44132007, 0xb3581013, 0x44872008, 0xc2580d0f, 0x4403200b, 0x03220b10, 0x60822000, 0xbd034327,
|
||||
0x1f000f00, 0x1c295800, 0x82262221,
|
||||
0x373624ba, 0x58271517, 0x1f2214d1, 0xd458eeee, 0x34952319, 0xb3451a45, 0x236baa06, 0x0715013f, 0x6f206b94,
|
||||
0x61226b9b, 0x6b8f5f34, 0x01592620,
|
||||
0x42d7861b, 0x6e940525, 0x35437220, 0x23de9a05, 0x004e4e76, 0x3120df8e, 0xbf4173a2, 0x207e9410, 0x0dcb4138,
|
||||
0x30208699, 0x4509e945, 0x6b4105e7,
|
||||
0xa1272009, 0x4527208d, 0x839406fb, 0xed430d20, 0x317b9905, 0x66666695, 0x01000000, 0x02017a00, 0x6d02e901,
|
||||
0x71820b00, 0x63173721, 0x280808c5,
|
||||
0x8584317a, 0x2f7f8335, 0x7f367f82, 0x842f3e02, 0x81853484, 0x357f8231, 0x0300007f, 0xbeff0e00, 0x56035602,
|
||||
0x1f001700, 0x25a98300, 0x37173233,
|
||||
0x43640733, 0x225d0806, 0x37230727, 0x34113526, 0x01111736, 0x22012b26, 0x16010506, 0x3632013b, 0x1df7bb35,
|
||||
0x3b551f13, 0xf741552d, 0x58271915,
|
||||
0x29542a41, 0x271d0a01, 0x01372c63, 0x1af7fe27, 0x362b632b, 0x380a2803, 0xfe59406a, 0x097a597e, 0x5b3d7b49,
|
||||
0x7c598201, 0x017efed5, 0x3d552aea,
|
||||
0x542615fe, 0x61b3823b, 0xc74607d3, 0x13002105, 0x2312f159, 0x27151713, 0x220cf559, 0x59eeee70, 0x02210ff8,
|
||||
0x08c744eb, 0x9b053f5a, 0x1537224f,
|
||||
0x204f8c07, 0x204f92c0, 0x08db44b7, 0x1a214f89, 0x429f9500, 0x528c05bd, 0xb542c320, 0x44a69105, 0x538905ef,
|
||||
0x55441720, 0x11e75a05, 0x8c07c14f,
|
||||
0x42442056, 0x56910509, 0x66666625, 0x51020000, 0xbd230603, 0x53000800, 0x032407a5, 0x03112311, 0x615af082,
|
||||
0x83062006, 0x5afe20ea, 0x02210864,
|
||||
0x5ce68365, 0x0c2209f3, 0x61571400, 0x06142308, 0x8455012b, 0x26342906, 0xf7862823, 0x43555642, 0x2c09f55c,
|
||||
0x67698ea7, 0x3d029b88, 0x9861a3fe,
|
||||
0x097f5164, 0x28004d22, 0x2407c94e, 0x011e0706, 0x64458315, 0x2b20066f, 0x26059166, 0x012b2634, 0x82150622,
|
||||
0x343e0897, 0x4eb9e036, 0x2b2b315a,
|
||||
0xb54b5d39, 0x373c2d7b, 0x20606028, 0x5b2d2921, 0x4f8a302d, 0x5c724d03, 0x0a087049, 0x91614d75, 0x41457443,
|
||||
0x4151435d, 0x3a3f4952, 0x6c026ffd,
|
||||
0x03005988, 0xf0821e00, 0x48034524, 0xf5821100, 0x2d5a0b82, 0x1701231a, 0x315a2715, 0xe9fe2316, 0x355aeeee,
|
||||
0x05032511, 0x001a4534, 0x032363ac,
|
||||
0x96071537, 0x93c72063, 0xd1022162, 0x8d056042, 0x002121c7, 0x5a06b946, 0x032014f5, 0x96056842, 0x42c42066,
|
||||
0xcd930572, 0x41086748, 0x2c200b33,
|
||||
0x1e456b9d, 0x20769610, 0x0e2045fe, 0x2110825b, 0x034ba002, 0x0db7410d, 0x859c2220, 0x16450120, 0x207b9706,
|
||||
0x050f43bd, 0x6623f393, 0x4d006666,
|
||||
0x452a088b, 0x11006603, 0x2a001a00, 0x6f9c3700, 0x786a0320, 0x064b6611, 0x22012b22, 0xa8318496, 0x2122275e,
|
||||
0x20285e28, 0x0f152221, 0x311c251f,
|
||||
0x318e921b, 0x39211c23, 0x231b1b23, 0x3d1b2239, 0x24141035, 0x9b821f35, 0x10000339, 0x56020000, 0x1d008102,
|
||||
0x32002600, 0x33010000, 0x2b141532,
|
||||
0x82141501, 0x21153574, 0x36343522, 0x3435013b, 0x35012b26, 0x36173233, 0x06222303, 0xa46b1a84, 0x08938207,
|
||||
0x7e01062e, 0x88656573, 0xfe6d2f22,
|
||||
0x36326851, 0x72241c8c, 0x1a1a309c, 0x262d424e, 0x654c2722, 0x1c1c2359, 0x1f211823, 0xb7be8102, 0x43335145,
|
||||
0x30051a5d, 0xfe111143, 0x434437bc,
|
||||
0x7581013c, 0x35464331, 0x258b8237, 0xff300002, 0xdf5c020d, 0x089b4b05, 0x4b0de15c, 0xe55c059b, 0x7b98230c,
|
||||
0xe95c4f2c, 0x4dfd240d, 0x5b0300c1,
|
||||
0x482206af, 0xd7481300, 0x5cd78306, 0x03231aa1, 0x5c271517, 0x182216a5, 0xbc87eeee, 0x240ba85c, 0x45344601,
|
||||
0xb1b6821a, 0x3713236b, 0x6b960715,
|
||||
0x6b963820, 0xaa431220, 0x206b8e05, 0x21795d26, 0xb0431320, 0x206e9605, 0x07b0433b, 0x2611875d, 0x4e764601,
|
||||
0x4104004e, 0x9d470e47, 0x1ceb5d05,
|
||||
0x30430320, 0x46729606, 0x5141063f, 0x46662015, 0x335d0543, 0x5d482005, 0x17221033, 0x335d2715, 0xee612507,
|
||||
0xfd8102ee, 0x2005335d, 0x0588410b,
|
||||
0x5f650220, 0x23379006, 0x0715013f, 0xab203787, 0xd7203789, 0x89085f47, 0x5c10206f, 0x3b410bf5, 0x203a8706,
|
||||
0x072c41ae, 0xd3447687, 0x223f8908,
|
||||
0x8d11000d, 0x05394c41, 0x2f204287, 0x87072c44, 0x05334d42, 0x24058b47, 0x000a004d, 0x2a3d8221, 0x013b1411,
|
||||
0x11353632, 0x4c032223, 0x2b210642,
|
||||
0x05a44a01, 0x08068360, 0x6554aa31, 0x38d6272e, 0x5e100120, 0xd35e4949, 0x3c43465e, 0x2d281601, 0xfee301d9,
|
||||
0x493b6ccc, 0x0f017701, 0x29fe6c4f,
|
||||
0x6d4e4f6c, 0x51482d01, 0x4c313325, 0x3f260643, 0x0d004803, 0x7f441f00, 0x5e232007, 0x474c06bf, 0x08875d12,
|
||||
0x5d0e484c, 0x02210b96, 0x095545e3,
|
||||
0x9f5d0320, 0x4c5f8205, 0xa15d0747, 0x1737231e, 0xa55d2715, 0xee312214, 0x15a85dee, 0x434cc720, 0x00192405,
|
||||
0xa94b0200, 0x013f2367, 0x67940715,
|
||||
0x67978120, 0x3f4c9320, 0x20678b05, 0x21715e26, 0x67433720, 0x206a9405, 0x05384284, 0x7624d696, 0x00004e4e,
|
||||
0x200d3f41, 0x476fa231, 0x7a94101c,
|
||||
0x1a474a20, 0x2082950d, 0x09c74162, 0xc7410420, 0xa227200e, 0x06ef4389, 0x05207f94, 0x9505f042, 0x66c72477,
|
||||
0x83006666, 0x00512cfb, 0x021102d1,
|
||||
0x00030099, 0x820b0007, 0x20518271, 0x25038211, 0x21152107, 0x008287ee, 0xc0019d2c, 0x2a0140fe, 0x58c80159,
|
||||
0x25824565, 0xb1ff192c, 0xd9024b02,
|
||||
0x1e001400, 0x2f822800, 0x33372123, 0x061f5807, 0x5c230721, 0x362205c7, 0x5a6f1517, 0x6f052007, 0x3008056e,
|
||||
0xbd34013d, 0x54300401, 0x5a4a413b,
|
||||
0x32582cea, 0x3c4a252d, 0x1810e810, 0x01272f7a, 0x1611dd23, 0x022d3f4c, 0x236d5881, 0x5673ef91, 0x55125a4f,
|
||||
0x31078257, 0x1d2fe5c8, 0x3b09ad01,
|
||||
0x0967fe1e, 0x12f25133, 0x0f450200, 0x05e94308, 0x230cdd5e, 0x27151713, 0x2209e15e, 0x5eeeee6f, 0x02240be4,
|
||||
0x1a45348d, 0x37223f9e, 0x3f890715,
|
||||
0x3f8ebf20, 0x274b5920, 0x00242805, 0x03410200, 0x4b0d0048, 0x11240527, 0x013b1614, 0x44065d5f, 0x428906af,
|
||||
0x7842c220, 0x42868d05, 0x4789066f,
|
||||
0x95641120, 0x44498d05, 0x4a8905b7, 0xc8414320, 0x414a8d05, 0x022605bf, 0x0dff0e00, 0x93825602, 0x2606bd41,
|
||||
0x0133011b, 0x82033723, 0x08315fcd,
|
||||
0xcc841f20, 0x2105345f, 0x78451403, 0x00022805, 0x0212ff1e, 0x824d0346, 0x651720cb, 0xf44b0b17, 0x11352708,
|
||||
0x1e232634, 0x7961fc86, 0x4d03360b,
|
||||
0xef7059cc, 0x03ee5673, 0x3808fe2b, 0x4b030146, 0x0000002c, 0x20838c03, 0x067f5d0f, 0x9d428583, 0x20898806,
|
||||
0x86c8889b, 0x5448208d, 0x03200dcb,
|
||||
0x2005c953, 0x0aed6c01, 0x15211323, 0x0c115521, 0xbd013324, 0x0f5543fe, 0x845b200c, 0x0d574a83, 0x201b474b,
|
||||
0x49528201, 0xfe2116cc, 0x4a5d84a9,
|
||||
0x032110c4, 0x20648205, 0x0cbf5503, 0xbd551920, 0x5614200f, 0x0e240521, 0x26222301, 0x352bb18c, 0x2d2b4173,
|
||||
0x7a0c723b, 0x8c7b5152, 0x322526b8,
|
||||
0x4a402730, 0x4cbe8249, 0x28200e6b, 0x211ca54a, 0x6a8b3301, 0xab20c997, 0xd092758b, 0x20087c89, 0xff200002,
|
||||
0x034a020d, 0x001a0028, 0x2100001e,
|
||||
0x23072327, 0x07133313, 0x011d010e, 0x3b011e14, 0x081b5e01, 0x010b3c08, 0xbe010333, 0x8621d621, 0x74b7b7b6,
|
||||
0x360f1a1f, 0x64953539, 0x191f1840,
|
||||
0xb05bbc5b, 0xfc2803b0, 0x180920d8, 0x1c1e1214, 0x3d2f430f, 0x091f1e20, 0x24fef202, 0x0000dc01, 0x821e0002,
|
||||
0x024b2b63, 0x00250081, 0x2900002e,
|
||||
0xd6672201, 0x21352509, 0x11151632, 0x13206e92, 0x2307f14a, 0xeafebf01, 0x2208ec67, 0x8b475e2a, 0x6775207a,
|
||||
0xda4a05fb, 0x6e4f2306, 0x828e3cfe,
|
||||
0x375e0129, 0x003c4344, 0x6e020000, 0x1b5006bf, 0x05b75f07, 0x16141122, 0x23097f56, 0x0715013f, 0x220f7f56,
|
||||
0x56eeee52, 0x61230f7e, 0x831a5f34,
|
||||
0x8230204f, 0x03312504, 0x00130048, 0x8516334b, 0x0c334b4f, 0xeeee6922, 0x200d324b, 0x055b4493, 0x0222a182,
|
||||
0x9b9a0328, 0x15333722, 0x22101b57,
|
||||
0x8f87875d, 0x6695219b, 0xeb82ea82, 0x4f859ba0, 0x74229b8c, 0x9b8d8787, 0x4c83c720, 0x820b3741, 0x411320f6,
|
||||
0x37261237, 0x17332723, 0x3a413337,
|
||||
0x56ec200f, 0x077008f2, 0x761f230c, 0xa7714e4e, 0x053f4108, 0x734c5788, 0x8725200d, 0x21a68c57, 0x57850301,
|
||||
0x5120ab8d, 0x2b055b51, 0x02000028,
|
||||
0x00bd033d, 0x00130009, 0x45665583, 0x56252008, 0x01200813, 0x68705585, 0x5501210f, 0x70705686, 0x4703210f,
|
||||
0x032cb084, 0x00000a00, 0x4d035702,
|
||||
0x16000b00, 0x33225b84, 0xc5693335, 0x33013812, 0xc9972307, 0x4bc4fe73, 0x16333f42, 0x9a6b3330, 0x71012327,
|
||||
0x6944266a, 0x3e2310ce, 0x82c14e01,
|
||||
0x56002052, 0x282057bb, 0x64205c82, 0x1322af82, 0x6b5f1e00, 0x08b18709, 0x35013b32, 0x14151323, 0x013b011e,
|
||||
0x06222311, 0x4686f1a7, 0x57aefe46,
|
||||
0xcc5a4a4d, 0x371a06f1, 0x2e955f3b, 0x37160328, 0x45fd5b37, 0x78d27760, 0xfbfe3a60, 0x5809846a, 0x2122116b,
|
||||
0xb7732111, 0x82132005, 0x0cad5807,
|
||||
0xbd012024, 0xab5843fe, 0x005b220a, 0x0e4b4d00, 0x4b4d2320, 0x82032021, 0x16d54c55, 0xb3455820, 0x13464d05,
|
||||
0x00206a83, 0x1920ab8b, 0x450f5d59,
|
||||
0xb58c0b4a, 0x3f452220, 0x45bc8a0a, 0xc7470cb3, 0x00132407, 0xa22d001f, 0x0cb845c3, 0x5620cd96, 0x930cb745,
|
||||
0x418287d4, 0x315a1b83, 0x87bb220f,
|
||||
0x20c48a87, 0x317f4166, 0x51821320, 0x4322b196, 0x514e8787, 0x00002816, 0xff330001, 0x7835020d, 0x2921058f,
|
||||
0x07234201, 0xef450782, 0xa9012312,
|
||||
0xbe738afe, 0x0be44509, 0xdb45bb88, 0x0200230e, 0x5f822400, 0x81024122, 0x21058b65, 0x6b6c2321, 0x013b2105,
|
||||
0x920a136d, 0x6d032069, 0x01260a1f,
|
||||
0x4a59b67d, 0x256d594a, 0x21768b07, 0x2c6dd05c, 0x72572406, 0x415872ee, 0x818e058b, 0x6dda0121, 0x6742073a,
|
||||
0x0e0f5c0c, 0x42067144, 0x01210c60,
|
||||
0x0f105c4a, 0x41056644, 0x67500e9b, 0x067d4522, 0x20169e41, 0x196750d2, 0x4e76d024, 0xb782004e, 0x2405434f,
|
||||
0x001700bd, 0x08cf6625, 0x16141122,
|
||||
0x200df174, 0x0dbd4227, 0x2010ff74, 0x0d30432d, 0xfe3d5523, 0x0c0b757f, 0xb7429520, 0x6e032007, 0x0327052b,
|
||||
0x00130048, 0x832b001d, 0x05bb7471,
|
||||
0x20152d6e, 0x6e778c03, 0x3343143b, 0x14476e0d, 0x433d0121, 0xab5008b9, 0x20ef8307, 0x23ef991b, 0x23153337,
|
||||
0x2111e575, 0x7147876c, 0x22dc8d07,
|
||||
0x8d000066, 0x9f2120d7, 0x821320d7, 0x22cd945f, 0x6f878743, 0x0121160c, 0x058f473d, 0x53432e20, 0x00172106,
|
||||
0x1322bf9a, 0xbf920733, 0x4d5f7220,
|
||||
0x23c08c09, 0x00c1a6fc, 0xc3870082, 0x13007f25, 0xa2001d00, 0x230721c3, 0x8320c394, 0xc4976682, 0x69827420,
|
||||
0x82000221, 0x63022300, 0x3b492803,
|
||||
0x33112505, 0x21153335, 0x33220382, 0x1f772315, 0x23113905, 0x21352117, 0x13018721, 0x88202088, 0x2187edfe,
|
||||
0xfe1301a8, 0x8d9b02ed, 0x5b2a0082,
|
||||
0x7301c0fd, 0x40028dfe, 0x46828989, 0x4b840120, 0x4d034126, 0x00001700, 0x45824984, 0x340d2570, 0x87462311,
|
||||
0x5dd0f0f0, 0x2d278647, 0x0346879a,
|
||||
0x5b373716, 0x092d703a, 0x84bb0221, 0x0c875e42, 0x60130021, 0x958205df, 0x37231122, 0x5e05d346, 0xcf460581,
|
||||
0x067f5e07, 0x53066346, 0x39821737,
|
||||
0x20078152, 0x05a8461b, 0x83077f52, 0x119b4638, 0x460af95e, 0x7d850e9b, 0x860e9746, 0x09134684, 0x17208789,
|
||||
0x8b0d0d53, 0x2091874d, 0x0c6c4613,
|
||||
0x29439887, 0x07bf4508, 0x28032f2d, 0x00002000, 0x33350129, 0x41352311, 0x23200517, 0x2a125645, 0xf1fe4201,
|
||||
0xfc01baba, 0x4567baba, 0x43240b46,
|
||||
0x4343a202, 0x3a45a882, 0x0573410e, 0x2405cb42, 0x001e004d, 0x22618922, 0x93153311, 0x8213205f, 0x26638216,
|
||||
0x01c0c0ec, 0x8b6dc047, 0x9b182662,
|
||||
0xfa01439b, 0x8ec18244, 0x6e032264, 0x62678570, 0x61600f2b, 0x08df600c, 0x41052747, 0x66210654, 0x07377a00,
|
||||
0x00810222, 0x410c9371, 0x0220073f,
|
||||
0x2d060655, 0x26000200, 0x42020000, 0x0d002803, 0x36821100, 0x3805af76, 0x36323335, 0x25231135, 0x01231133,
|
||||
0x4156e260, 0x372b79c2, 0x88c6fe64,
|
||||
0x0a937988, 0xd8fc4322, 0x0433a082, 0x0dff2800, 0x4d033802, 0x07000300, 0x1b001700, 0x82130000, 0x82032035,
|
||||
0x880520f0, 0x0883724b, 0x87873234,
|
||||
0x019b9b0a, 0x5c48f313, 0x292c51b3, 0x626c0921, 0x8b829b9b, 0x4d037f25, 0x72fd5c70, 0x02200f8f, 0x3c205b84,
|
||||
0x0c209b82, 0x7905d573, 0x17220af5,
|
||||
0xf9790733, 0x7bc2260d, 0x28034f2c, 0x0bfd79fe, 0x82c13221, 0x056747da, 0x43889f82, 0x8308d572, 0x87242143,
|
||||
0x200ad972, 0x204383c6, 0x0add724d,
|
||||
0x43834183, 0x2505cf76, 0x000500bd, 0xdf830009, 0x21152126, 0x07153713, 0x2105497a, 0x4c7aee02, 0x63032005,
|
||||
0x0021065e, 0x06077102, 0x8b56bd20,
|
||||
0x013f230f, 0x15730715, 0xeea22b07, 0xfdf802ee, 0x023c3c44, 0x5356ce7f, 0xff282308, 0xab7a020d, 0x85678805,
|
||||
0x8b0124e8, 0x84e0eefd, 0x1bfd22e1,
|
||||
0x20d78543, 0x732b822d, 0x23740573, 0x2307210e, 0xc8206387, 0x7d73cf84, 0xc5fc2305, 0x008200c1, 0x85000221,
|
||||
0x8b4d20cb, 0x330123cb, 0xcb852307,
|
||||
0x87060121, 0x4d032164, 0x2d252f86, 0x3f020000, 0x108b7403, 0x33822520, 0x01216787, 0x20688a97, 0x20678c44,
|
||||
0x0c334128, 0x86153321, 0x87e52467,
|
||||
0x82280387, 0xd10122ca, 0x415e8266, 0x6390062f, 0x2f820120, 0x80206388, 0x49743282, 0xeafe2106, 0xdb7b3582,
|
||||
0x052d410b, 0x05152526, 0x21152111,
|
||||
0x1022c982, 0xe37bf0fe, 0xacfe2905, 0xfe7f517f, 0x010045c2, 0x11286388, 0x21130000, 0x07153711, 0x2406a17c,
|
||||
0x11373507, 0x3b658223, 0xfdc4c0c0,
|
||||
0xbbbbbef8, 0xfe4d03be, 0x354635a4, 0x434398fe, 0x46334301, 0x003e0132, 0x200d4f63, 0x6341820d, 0x4982094f,
|
||||
0x22084163, 0x63eeeebe, 0x11420c35,
|
||||
0x00022205, 0x57408225, 0x7d840547, 0x200bbd74, 0x573f8313, 0x40820839, 0x520b2d57, 0x3f8205f5, 0x020dff25,
|
||||
0x4228033e, 0x7b88064f, 0x07331722,
|
||||
0x2009717c, 0x05b941cf, 0x4208757c, 0x252007bb, 0x37753b82, 0x847b9005, 0x837b883f, 0x847c8b40, 0x22bb8540,
|
||||
0x82bd033e, 0x8b10207b, 0x06194af7,
|
||||
0x0121fa88, 0x083a6058, 0x7f4e8288, 0x20ff8b06, 0x0f475814, 0x86884787, 0x8a8b4887, 0x76d20227, 0x01004e4e,
|
||||
0x22cb8300, 0x5428033e, 0x0121057b,
|
||||
0x0a604411, 0x23013d22, 0x28077e7d, 0x96db5c48, 0x0921292c, 0x09867d42, 0xe976a020, 0x02232406, 0x86affd51,
|
||||
0x023f2247, 0x05fd5081, 0x77057165,
|
||||
0x3422082c, 0x49832b26, 0x49828f83, 0x49837c20, 0x20085b76, 0x21478602, 0x6276db01, 0x0ebf6306, 0x23220b65,
|
||||
0x21152127, 0x24142d63, 0xfebd0121,
|
||||
0x1a2b6343, 0xef575b20, 0x596b830e, 0x6b831e2f, 0x20146157, 0x576b830f, 0x6783165f, 0xdf652020, 0x002d230a,
|
||||
0xad7e1300, 0x0d614b1e, 0x1f20dd94,
|
||||
0x7e0bb047, 0x6a4b18c7, 0x83eb8e08, 0x4beb9f83, 0xf5940c6d, 0x838a0d20, 0x4148fc96, 0x0b0b6508, 0x17001326,
|
||||
0x00002700, 0x09a14818, 0x2405585b,
|
||||
0x23073337, 0x20038225, 0x0e1d4103, 0xb07fb720, 0x6a432508, 0x7c01697a, 0x2a080482, 0x642a39a4, 0x2b35362a,
|
||||
0x02382b64, 0xfe5070d7, 0x6c6d50a6,
|
||||
0x515a0151, 0x9595e66f, 0xfeeffe95, 0x4b4b36a6, 0x375a0136, 0x82004d4d, 0x344f5900, 0xf7948b85, 0x86875f20,
|
||||
0x8382f496, 0x18020021, 0x2d08ef41,
|
||||
0x00190007, 0x22230100, 0x3b141115, 0x33490301, 0x33112206, 0x06e96a15, 0x58012508, 0x5c56565c, 0x887e0193,
|
||||
0xfe887171, 0x46465e82, 0xfe7be502,
|
||||
0xe5027d56, 0x44d2fe43, 0x4e43d0fe, 0x6bb4016d, 0x2c069b6c, 0x02000005, 0x0081025a, 0x002d001d, 0x0e276039,
|
||||
0x27222322, 0x08444b18, 0x32013b25,
|
||||
0x41073617, 0x05200ee1, 0x080beb4e, 0x63797e2a, 0x2f218e63, 0x182fae73, 0x43722f18, 0x72433636, 0xe91a1a2d,
|
||||
0x2f11221a, 0x1f221d21, 0x01011d22,
|
||||
0x1c1c235f, 0x1e221f23, 0x2c07d34f, 0x73561313, 0x135673ef, 0x3fffc813, 0x05c27938, 0xf34e4820, 0x00032208,
|
||||
0x249b8226, 0x00bd033d, 0x05696e11,
|
||||
0x6e211321, 0x1d2005d7, 0x10814018, 0x15372723, 0x85401807, 0xee762211, 0x884018ee, 0x065c6a14, 0x8f790220,
|
||||
0x48032505, 0x0e000a00, 0x230c9179,
|
||||
0x0715013f, 0x22079579, 0x79eeeeb3, 0x93200998, 0x2005435c, 0x067b7126, 0x032397a0, 0x91230733, 0x7b652397,
|
||||
0x98944f2c, 0xc1e9fc23, 0x21f28200,
|
||||
0x5f823a00, 0x8d05277a, 0x82132097, 0x2097874e, 0x89448206, 0x051b6198, 0x210b2f41, 0xa7580020, 0x07f57305,
|
||||
0x182b2621, 0x4f0ab141, 0x9a9106d5,
|
||||
0x21462420, 0x187e2007, 0x2311bf41, 0x4e4e7662, 0x00219e82, 0x0a374102, 0x37411120, 0x0652550c, 0x0121a287,
|
||||
0x084b554d, 0x2006d87a, 0x46428351,
|
||||
0x1d2209af, 0x42182100, 0x3f231f05, 0x18071501, 0x22170942, 0x18eeee1e, 0x57110c42, 0x1b26073f, 0x49020000,
|
||||
0x694e4803, 0x15012105, 0x841b417b,
|
||||
0x17457b63, 0xeeee2c22, 0x2011487b, 0x05575793, 0xa207eb46, 0x331323c7, 0xc7972307, 0x2c7b2f23, 0x20c8914f,
|
||||
0x05876efc, 0x0dff1b22, 0x4106077c,
|
||||
0xa863062b, 0x13097c05, 0xc7976384, 0x2f423d20, 0x0e117c05, 0xc14dfd22, 0x220a876c, 0x4124001d, 0x39421f8f,
|
||||
0x20ca9706, 0x05f141b8, 0x9757cd91,
|
||||
0x09974108, 0xcf996b86, 0xd2976b87, 0x21077371, 0xd58e4381, 0x52765121, 0x3826057b, 0x2c020dff, 0x7d5e2803,
|
||||
0x15212306, 0x01821123, 0x0733132a,
|
||||
0xf4013823, 0xbcbb85b4, 0x29057741, 0xe5021bfd, 0x00c1e9fc, 0xaf4b0002, 0x00282405, 0x7d160012, 0x3a83141d,
|
||||
0x200a217d, 0x7d3f844a, 0xfd230b25,
|
||||
0x8200c14d, 0x82382047, 0x032c2204, 0x207782bd, 0x8647820e, 0x061c4377, 0x01217a85, 0x08284145, 0x62207e83,
|
||||
0x20051743, 0x2237822d, 0x98610353,
|
||||
0x8225207f, 0x4c7f8aba, 0x808b0609, 0x7f82e020, 0x45180120, 0x0f20080b, 0x554f7d82, 0x22fd830a, 0x82bb9063,
|
||||
0x888831fb, 0xd2019085, 0x43431301,
|
||||
0xfe46edfe, 0x008c0174, 0x7f4b0082, 0x03392205, 0x067f5828, 0x18352321, 0x2308cf51, 0x14152315, 0x0805257e,
|
||||
0x23013d21, 0xa5a5a131, 0xe1dddd86,
|
||||
0x60542ae1, 0x01a13d67, 0xa743af8f, 0x46af43a7, 0x43294994, 0x82aa623d, 0x09836aff, 0xd76a2520, 0x10e56016,
|
||||
0x200c8b6a, 0x0ddd6089, 0x2010936a,
|
||||
0x08d86086, 0xb75f0220, 0x881f200a, 0x3311266b, 0x26222111, 0x11ff6235, 0x2009f75e, 0x5e628d88, 0x28200cff,
|
||||
0xcb8c5e88, 0xcb961720, 0x21152122,
|
||||
0x3020bd8c, 0x18059358, 0x230d3e46, 0x005beb02, 0x0a5f4d18, 0xcb4f4820, 0x06936c05, 0x4982af87, 0x2f20a189,
|
||||
0x978c4683, 0x8c5b8d21, 0x9621208f,
|
||||
0x0c65498f, 0x3220998c, 0x8f0c4655, 0x09e751a0, 0x50094360, 0x8b60052b, 0x0beb510c, 0x3120ad89, 0x180ced51,
|
||||
0x21090340, 0xaf498d02, 0x00032108,
|
||||
0x22091742, 0x97300023, 0x7a3220bd, 0x3d251311, 0x012b3401, 0x20cc8c22, 0x101c69df, 0x20102742, 0x131a69eb,
|
||||
0x26080357, 0x000d0066, 0x422a001d,
|
||||
0xa8691035, 0x20f0891b, 0x417e90de, 0xab200cab, 0xff8b7a91, 0x9b6d1720, 0x05254a19, 0x9420ea8c, 0x35071d4a,
|
||||
0xe6fdd702, 0x3b46463b, 0xe6fd1a02,
|
||||
0x506d6d50, 0x95950003, 0xf35a0095, 0x000d210c, 0x8514f761, 0x20be8955, 0x185288a7, 0x210ab041, 0x4e838d02,
|
||||
0x23000132, 0x41020dff, 0x27002803,
|
||||
0x23210000, 0x11352622, 0x530d3a6f, 0x012d133e, 0x55416b24, 0x602c357d, 0x5680352b, 0x0b3e5341, 0x02597923,
|
||||
0x0b6a4256, 0x240e4453, 0x00010000,
|
||||
0x246f8224, 0x00810247, 0x826f8d21, 0x13085476, 0x5ef4bb28, 0x2e288445, 0x658b88bb, 0x016d4e23, 0x077542c6,
|
||||
0x00226190, 0x01820200, 0x5f020026,
|
||||
0x0f00bd03, 0x2105db45, 0x01853313, 0x83230321, 0x06616301, 0x0f9c4918, 0x2f4f8320, 0xa3491808, 0xbd03210c,
|
||||
0x2a065f46, 0x02000009, 0x0048035a,
|
||||
0x1813000c, 0x860eb942, 0xc0421850, 0x6877200c, 0xc6200867, 0x0bc74218, 0x49480321, 0x1a200857, 0x49204f82,
|
||||
0x0820a382, 0x002aa582, 0x011b3313,
|
||||
0x23110333, 0x82660311, 0x06666f05, 0x21069f5e, 0x6a6f2803, 0x8499200a, 0x0baf6341, 0x8f860e20, 0x37230122,
|
||||
0x28633e86, 0x871c2008, 0x63fe2086,
|
||||
0xef680728, 0x207f8908, 0x05cd530c, 0x36648188, 0x20828605, 0x056a6382, 0x3364828d, 0x05bb5207, 0x18085753,
|
||||
0x2307594a, 0x0715013f, 0x0c5d4a18,
|
||||
0xeeeebb22, 0x08604a18, 0x2205904b, 0x82370002, 0x032c21ff, 0x8b08e769, 0x7943183b, 0xeeac220c, 0x7c4318ee,
|
||||
0x34d62108, 0x96052f61, 0x33372377,
|
||||
0x778c2315, 0x8787c622, 0xd8227788, 0x00820066, 0x13207798, 0x778c3b82, 0x8787b722, 0x01217788, 0x533c830a,
|
||||
0x7b5107ab, 0x494b1807, 0x06ed4708,
|
||||
0x04607a8c, 0x217f8807, 0xa7487662, 0x23f78905, 0x13000010, 0x828c438f, 0x41460121, 0x3b2707be, 0x2843fdfd,
|
||||
0x84941602, 0x00012a43, 0x020dff1e,
|
||||
0x004d0344, 0x2241821a, 0x18333523, 0x710b5d49, 0x3e240628, 0x9fda3502, 0x07654918, 0x9f5c4831, 0x21292c3d,
|
||||
0x433e0209, 0x88446666, 0x518afd43,
|
||||
0x00210637, 0x09cb5200, 0x49bfd74a, 0x012c75ff, 0xa0026c00, 0x1603f701, 0x00000600, 0x20060844, 0x05b541e6,
|
||||
0x76160322, 0x8c05434d, 0x065f5323,
|
||||
0x857d0121, 0xa0022124, 0x01262485, 0x8c025500, 0x47820e02, 0x47830d20, 0x200b7747, 0x0a6d4755, 0x59160321,
|
||||
0xee240c53, 0x7501b002, 0xdf7f3382,
|
||||
0x16032a09, 0x00020066, 0x016202bb, 0x221782aa, 0x7b1c000f, 0xdc4f08d1, 0x18172008, 0x2408d856, 0x0122012b,
|
||||
0x10da4603, 0x46160321, 0x002f11ce,
|
||||
0xff950001, 0x00ce010d, 0x00140000, 0x45332100, 0x422113aa, 0x0ba34586, 0x26129745, 0x02570001, 0x820b02b1,
|
||||
0x82112097, 0x10154ae3, 0xa549ac20,
|
||||
0x49b1200e, 0x00200999, 0x3e24d382, 0x24028102, 0x09974418, 0x2005e346, 0x07d946b7, 0x47160321, 0x0220051c,
|
||||
0x08065b67, 0x03002820, 0x00000700,
|
||||
0x33130129, 0x03210307, 0xdcfd4402, 0x7c5fb7b6, 0x037b0001, 0x5efd4328, 0xc982a202, 0x26000122, 0x3c205882,
|
||||
0x3205fb46, 0x35231525, 0x013d013e,
|
||||
0x012b2634, 0x011d0622, 0x82171614, 0x35332211, 0x2213832e, 0x48013b36, 0x370805a9, 0x3c021507, 0x372d26c8,
|
||||
0x372c662c, 0x97c8262d, 0x43544146,
|
||||
0x415443c8, 0xee434346, 0xe1364608, 0x3d55553d, 0x084636e1, 0x1f6743ee, 0x59e14c5d, 0xe1597c7c, 0x671f5d4c,
|
||||
0x2006f746, 0x4f491841, 0x693b2009,
|
||||
0x273805f0, 0x85242311, 0xfe887898, 0x851b63e6, 0x87fe8102, 0xfd3c02c3, 0xfafe137f, 0x3d249f88, 0x0b008002,
|
||||
0x3209594c, 0x23112311, 0x6a170226,
|
||||
0x72617a60, 0xfd438002, 0x833d02c3, 0x462e8203, 0x13200cf7, 0x118d5018, 0x15171323, 0x0ff44627, 0xeeee3025,
|
||||
0x46fd2803, 0xe36a0ef0, 0x09ef4605,
|
||||
0xef461020, 0x4648820f, 0x24220cec, 0x4918eeee, 0x03210fb0, 0x47458348, 0x93930d8b, 0x07153722, 0x8020938f,
|
||||
0x89209392, 0x9a05834f, 0x8c488293,
|
||||
0x92742093, 0x06b36a93, 0x1f480320, 0x0571670a, 0x21061f48, 0x21483313, 0x05024707, 0x0420998f, 0x41070b47,
|
||||
0x0f470f31, 0x00032105, 0x14209f8b,
|
||||
0x710e3541, 0xa58c0752, 0x4b700820, 0x0e264808, 0x87775183, 0x15172218, 0x069d4727, 0x87775620, 0x4199200e,
|
||||
0xcb6b05bb, 0x48368215, 0xd86c0818,
|
||||
0x07144805, 0x1805ab41, 0x9d1b6746, 0x02d5331b, 0x038e011e, 0x0003004d, 0x13230100, 0x9b700133, 0x12826d4c,
|
||||
0x0e822f20, 0x1b8a0020, 0x03331324,
|
||||
0x1a82f323, 0xfe4d0324, 0x1b8400d1, 0x0146ff25, 0x8375008e, 0x86372037, 0x8475201b, 0x0200271a, 0x1e025d00,
|
||||
0x53840602, 0x00000723, 0x83558213,
|
||||
0x82f82003, 0x86d2203d, 0xd1fe235c, 0x278f2f01, 0x45820120, 0x03820320, 0x866b0121, 0x216a8328, 0x53882f01,
|
||||
0x0246ff23, 0x826f8406, 0x8f252053,
|
||||
0x847a822b, 0x00012a2a, 0x02000055, 0x0028030e, 0x9d4a180b, 0x11233508, 0x01333523, 0xafaf5c03, 0x03aeae5c,
|
||||
0xfd4bb428, 0x4b2902d7, 0x2b881e82,
|
||||
0x4a181320, 0x35210fc9, 0x84338833, 0x27378535, 0xab4bcdfe, 0x33014bab, 0x8e263b84, 0xd401fa00, 0xff834802,
|
||||
0x1121132d, 0x46018e21, 0x4802bafe,
|
||||
0x8200b2fe, 0x821c2011, 0x86472083, 0x248782ab, 0x23153325, 0x24038627, 0x8787c001, 0x200284d2, 0x21008475,
|
||||
0x7d500000, 0x56022105, 0x0f2cb382,
|
||||
0x1f001b00, 0x3b002f00, 0x57004b00, 0x2a12fd45, 0x011d2223, 0x32013b14, 0x4134013d, 0x834d052d, 0x201f8a0e,
|
||||
0x0f1d4d13, 0x20081b8a, 0x2320f501,
|
||||
0x20231e1e, 0x391d1e21, 0x0c17170c, 0x3ee7fe18, 0x211440a7, 0x211e1f20, 0x1e1e2221, 0x27148337, 0x2120bf17,
|
||||
0x20221c1d, 0x0d2d0f83, 0x190d1717,
|
||||
0x40346401, 0x3534407c, 0x3804823f, 0x3f7a3c38, 0x013c7c3d, 0x03d8fcfc, 0x7b3f3528, 0x40353540, 0x3734407b,
|
||||
0x6061183d, 0x82298d09, 0x010035e6,
|
||||
0xa400cd00, 0x36029601, 0x00000600, 0x07153713, 0xcd271517, 0x0b544918, 0x238d2482, 0x15173531, 0xcd373507,
|
||||
0x0190c9c9, 0x3ca95fd7, 0x826a5fad,
|
||||
0x01002122, 0x08475e18, 0x00000330, 0x23013301, 0xfe49f801, 0x28034c2c, 0x1b82d8fc, 0x00003528, 0x28032e02,
|
||||
0x63821d00, 0x49353321, 0x0626065e,
|
||||
0x1533011d, 0x03831523, 0x21152131, 0x33352311, 0x5c352335, 0xaff84255, 0x82a4372a, 0x1e013800, 0x5c5c63fe,
|
||||
0x2d2a025c, 0x5143775a, 0x82462d3d,
|
||||
0x0145d746, 0x8582461c, 0xff29246f, 0x823a02fe, 0x001e2753, 0x15210100, 0x4d892223, 0x8606a677, 0x10332851,
|
||||
0x2f010b01, 0x82a862e7, 0x2d352600,
|
||||
0x98d1fee7, 0x3e00824a, 0xc1432803, 0x4391450d, 0x44513e2d, 0x91430001, 0x00110145, 0x01170002, 0x034e0273,
|
||||
0x7007002b, 0xf3520547, 0x33252405,
|
||||
0x8233011b, 0x0726084c, 0x23152723, 0x6134cf17, 0x5c08013a, 0x425e3a3b, 0x44314236, 0xfe362b03, 0x3582017e,
|
||||
0x4101bffe, 0xd3d349fe, 0xea82d1d1,
|
||||
0x2406ab4f, 0x000b004d, 0x29f18222, 0x3b011e15, 0x3d363201, 0xbc742101, 0x013d230c, 0xbc743634, 0x02912a06,
|
||||
0x2e952a29, 0x38f9fe27, 0x0bbf7407,
|
||||
0x2d282e2d, 0x944301f1, 0x493b3537, 0x74b001d6, 0x8d2607be, 0x33c65048, 0xf6820031, 0x82210021, 0x0343226c,
|
||||
0x22af8228, 0x63211300, 0x212e059f,
|
||||
0xfe6f2202, 0x28036ebb, 0xe502d8fc, 0x26821bfd, 0x0abb5a18, 0x8d820920, 0x21152124, 0x04820313, 0x01330138,
|
||||
0xee8cfefc, 0xfe7401ee, 0x03200104,
|
||||
0xaafe4328, 0x0143b4fe, 0x2f82008f, 0x97015126, 0xdc011102, 0x29054743, 0x01512115, 0x0140fec0, 0x571845dc,
|
||||
0x01381427, 0x1a230323, 0x70cd6290,
|
||||
0x7873fefe, 0xfe700142, 0xfce102d7, 0x002001d8, 0x492c3d82, 0x1a022401, 0x15005a02, 0x2f002200, 0x35207b82,
|
||||
0x3222f182, 0x06433617, 0x22233406,
|
||||
0x22230627, 0x14152526, 0x36323316, 0x2334013d, 0x8b070622, 0x492a080c, 0x2344354a, 0x4b384127, 0x293f384b,
|
||||
0x4a354126, 0x23260401, 0x234a2822,
|
||||
0x2229cc26, 0x22472720, 0x867c0129, 0x20203226, 0x06842830, 0x3985322a, 0x12161612, 0x13172a39, 0xb2820887,
|
||||
0x00010029, 0x020dff0b, 0x624d0358,
|
||||
0x15220501, 0x4f182223, 0x352a08e3, 0x01363411, 0x598ac692, 0x04835a4a, 0x444d032d, 0x6557fd88, 0x02874466,
|
||||
0x836666a9, 0x00022c3b, 0x02e5003c,
|
||||
0x00510228, 0x822d0016, 0x832320c1, 0xd04f18c1, 0x22232708, 0x2223022e, 0x14920703, 0x484d8d3f, 0x1d37234f,
|
||||
0x24211a2c, 0x2445494f, 0x1429203c,
|
||||
0x484e0350, 0x1c372450, 0x2521192c, 0x3d13834e, 0x4f15291f, 0x5a45b201, 0x2f1b211b, 0x1e5f4028, 0xd5fe1e23,
|
||||
0x1c594601, 0x28301c20, 0x0e825e40,
|
||||
0xbb820020, 0x00002c28, 0x28033802, 0x7d821300, 0x33372126, 0x23153307, 0x26080383, 0x23132303, 0x23373335,
|
||||
0x770a0162, 0x65417755, 0xa5d9b44f,
|
||||
0x9770a658, 0x4e02e54e, 0x8f47dada, 0x01cdfe45, 0x858f4533, 0x00512ac3, 0x02110200, 0x000600d7, 0x3445820a,
|
||||
0x15071501, 0x21051517, 0x017f2115,
|
||||
0xfeeeee66, 0xfec0016c, 0xf75f1840, 0x45372108, 0x09263393, 0x35373501, 0x33820327, 0x67017e27, 0xeeee99fe,
|
||||
0x1834832d, 0x2a09de5f, 0x0045c9fd,
|
||||
0x005c0002, 0x82070200, 0x000522ab, 0x26ba820b, 0x13032303, 0x83130333, 0x07022e06, 0x6d6cd16e, 0x4a4e4dd1,
|
||||
0x014c4f3b, 0x2d728294, 0xfd940194,
|
||||
0x01560116, 0xfeaafe56, 0x008200aa, 0x26011824, 0x07820100, 0x37220283, 0x0b867000, 0x08000124, 0x0b86ba00,
|
||||
0x07000224, 0x0b86d300, 0x2e000324,
|
||||
0x0b863901, 0x10000424, 0x0b868a01, 0x0d000524, 0x0b86b701, 0x17820620, 0x0b86e720, 0x0b000824, 0x0b861002,
|
||||
0x0b820920, 0x0b863420, 0x1b000c24,
|
||||
0x0b867802, 0xec010d24, 0x0b866e06, 0x32000e2a, 0x0300c108, 0x09040100, 0x6e209082, 0x0b850382, 0x10000124,
|
||||
0x1786a800, 0x0e000224, 0x0b86c300,
|
||||
0xfb820320, 0x0b86db20, 0x20000424, 0x0b866801, 0x1a000524, 0x0b869b01, 0x17820620, 0x0b86c520, 0x16000824,
|
||||
0x0b86f801, 0x16000924, 0x0b861c02,
|
||||
0x36000c24, 0x0b864002, 0xd8030d24, 0x0b869402, 0x64000e2a, 0x52005b08, 0x6c006500, 0x61220382, 0x05827300,
|
||||
0x20006426, 0x6e006900, 0x32260582,
|
||||
0x32003000, 0x09823400, 0x0f827520, 0x1b826420, 0x0b827220, 0x43004322, 0x20201782, 0x69223182, 0x13826300,
|
||||
0x35846e20, 0x19822e20, 0x6f004e22,
|
||||
0x72200582, 0x67243d82, 0x74006800, 0x20221782, 0x21827200, 0x39847320, 0x5b847620, 0x002e3808, 0x6c655200,
|
||||
0x65736165, 0x6e692064, 0x32303220,
|
||||
0x6e752034, 0x20726564, 0x20304343, 0x6563696c, 0x2e65736e, 0x206f4e20, 0x68676972, 0x72207374, 0x72657365,
|
||||
0x82646576, 0x82552038, 0x82692085,
|
||||
0x00702255, 0x28798461, 0x696e5500, 0x63617073, 0x25538265, 0x67006500, 0x94827500, 0x72826120, 0x67276282,
|
||||
0x72616c75, 0x84560000, 0x8273207a,
|
||||
0x846f2092, 0x003522d2, 0x20bc822e, 0x2b038230, 0x0054003b, 0x00500059, 0x003b004f, 0x2d22588f, 0x4f8c5200,
|
||||
0x31003b26, 0x36003900, 0x3b280382,
|
||||
0x4c004600, 0x33003800, 0x00334182, 0x73726556, 0x206e6f69, 0x30302e35, 0x59543b30, 0x873b4f50, 0x522d2291,
|
||||
0x2b818465, 0x3639313b, 0x4c463b39,
|
||||
0x00303338, 0xcf8866a0, 0xbf9b3d87, 0x5cb47d8d, 0x61005226, 0x20007900, 0x6122d082, 0x0b827200, 0x69006222,
|
||||
0x002df682, 0x20796152, 0x6172614c,
|
||||
0x00656962, 0x2223a300, 0x82740068, 0x00702601, 0x003a0073, 0x2001822f, 0x23558274, 0x006f0070, 0x20053142,
|
||||
0x2255826d, 0x82660063, 0x826e200f,
|
||||
0x00732425, 0x8263002e, 0x006d3c0b, 0x74746800, 0x2f3a7370, 0x7079742f, 0x7265646f, 0x6663696d, 0x73746e6f,
|
||||
0x826f632e, 0x0054221c, 0x20378268,
|
||||
0x879d8273, 0x82202039, 0x82612011, 0x00202263, 0x22a58262, 0x826e0065, 0x4272201b, 0xa94210b9, 0x8261200b,
|
||||
0x426e2021, 0x20222293, 0xff824300,
|
||||
0x61006522, 0x69229f82, 0x53827600, 0x6f221183, 0x01826d00, 0x67826f20, 0x5a208583, 0x72201582, 0x6c204b84,
|
||||
0x7f83cf84, 0x13827320, 0x63822e20,
|
||||
0x50002024, 0x3f436c00, 0x82202008, 0x826f20f7, 0x826e2015, 0x8274202d, 0x82612007, 0x826b20b3, 0x84702007,
|
||||
0x846d2041, 0x099042d5, 0x53847420,
|
||||
0x05846420, 0x6b826120, 0x83827920, 0x23826820, 0x67006e22, 0x77203382, 0x74200982, 0x2020f782, 0x65201584,
|
||||
0x65204982, 0x210a1141, 0x7d830073,
|
||||
0x1f825720, 0x1f826120, 0x76006522, 0x20226184, 0x4d827900, 0x3d847520, 0x6e006122, 0x3d831982, 0x65859183,
|
||||
0x6920538d, 0x20205382, 0x20089d41,
|
||||
0x8335822c, 0x2065836f, 0x20f98461, 0x20538677, 0x20898277, 0x41e5826c, 0x6383057d, 0x39826520, 0x2f822e20,
|
||||
0x7220fb8d, 0x61222f82, 0x17826400,
|
||||
0x62006122, 0x74208784, 0x3b44538a, 0x00502207, 0x411d8275, 0x20220549, 0x27824400, 0x61006d22, 0x5744f584,
|
||||
0x206f850f, 0x83218266, 0x00202259,
|
||||
0x06474263, 0x09826120, 0x27417420, 0x416d2008, 0x89420689, 0x4163200f, 0x79420ed7, 0x846d2005, 0x00732243,
|
||||
0x2455842e, 0x002f0067, 0x208f8a70,
|
||||
0x228d8a64, 0x847a002f, 0x826f20ff, 0x82312023, 0x8230202f, 0x00202207, 0x20218254, 0x06914120, 0x1f822020,
|
||||
0x0b827820, 0x69416520, 0x82702006,
|
||||
0x0073221b, 0x22998273, 0x826c0062, 0x8220201b, 0x436e2059, 0xdb830609, 0x77006126, 0x20002c00, 0x85065743,
|
||||
0x43642089, 0xeb421083, 0x00772209,
|
||||
0x454b8261, 0x2020053b, 0x83410b82, 0x82632005, 0x00702265, 0x24dd8279, 0x00670069, 0x837f8268, 0x2067831b,
|
||||
0x20f18420, 0x2029826c, 0x837d8274,
|
||||
0x826f2059, 0x82202011, 0x8265209d, 0x202b8347, 0x20f58462, 0x20118269, 0x10ad4567, 0x20058d42, 0x107b4374,
|
||||
0x29822e20, 0x20099143, 0x20418477,
|
||||
0x4213826b, 0x3d41053d, 0x82732009, 0x82652039, 0x002022ed, 0x22758266, 0x826d006f, 0x824a2023, 0x8270208b,
|
||||
0x006e3a03, 0x000a002e, 0x69685400,
|
||||
0x6f662073, 0x6820746e, 0x62207361, 0x206e6565, 0x07104672, 0x22050846, 0x456e2061, 0x203510fd, 0x61657243,
|
||||
0x65766974, 0x6d6f4320, 0x736e6f6d,
|
||||
0x72655a20, 0x092f466f, 0x6c502029, 0x65736165, 0x826f6420, 0x2074323c, 0x206b7361, 0x6d726570, 0x69737369,
|
||||
0x74206e6f, 0x3018836f, 0x74796e61,
|
||||
0x676e6968, 0x74697720, 0x68742068, 0x832f8265, 0x2e733188, 0x61685720, 0x65766574, 0x6f792072, 0x61772075,
|
||||
0x32859c82, 0xb1862986, 0x34832c20,
|
||||
0x6e612024, 0x29827773, 0x6c697723, 0x22be826c, 0x82657920, 0x827d863f, 0x206426a3, 0x756f6261, 0x30298474,
|
||||
0x20304343, 0x6c627550, 0x44206369,
|
||||
0x69616d6f, 0x82af876e, 0x6f662b37, 0x63206572, 0x61746e6f, 0x93837463, 0x2e656d23, 0x07104520, 0xeb866320,
|
||||
0xea856320, 0x726f2e25, 0x84702f67,
|
||||
0x84642047, 0x7a2f2146, 0x2f27fb82, 0x2f302e31, 0x846f5420, 0x78652369, 0xb4826574, 0x826f7021, 0x6c6222ef,
|
||||
0x06514765, 0x77616c2b, 0x6152202c,
|
||||
0x6e6f6d79, 0x07d14564, 0x61682023, 0x22e18273, 0x82657669, 0x28c182a9, 0x79706f63, 0x68676972, 0x26d78274,
|
||||
0x65722064, 0x8274616c, 0x726f2419,
|
||||
0x82656e20, 0x6f622215, 0x849c8372, 0x20732220, 0x416c8374, 0x2e23060b, 0x82685420, 0x6f77240a, 0x82206b72,
|
||||
0x219e8407, 0x3a826873, 0x6f72662d,
|
||||
0x614a206d, 0x2e6e6170, 0x4300000a, 0x48466390, 0x29374108, 0x00820020, 0x84000221, 0x67ff2300, 0x08841400,
|
||||
0x012e048e, 0x0100006c, 0x01020002,
|
||||
0x00030003, 0x77180004, 0x160ab809, 0xa3000401, 0x85008400, 0xe8009600, 0x8e008600, 0x9d008b00, 0xa400a900,
|
||||
0x8a000501, 0x8300da00, 0xf2009300,
|
||||
0x8d00f300, 0xc3008800, 0xf100de00, 0xaa009e00, 0xf400f500, 0xa200f600, 0xc900ad00, 0xae00c700, 0x63006200,
|
||||
0x64009000, 0x6500cb00, 0xca00c800,
|
||||
0xcc00cf00, 0xce00cd00, 0x6600e900, 0xd000d300, 0xaf00d100, 0xf0006700, 0xd6009100, 0xd500d400, 0xeb006800,
|
||||
0x8900ed00, 0x69006a00, 0x6d006b00,
|
||||
0x6e006c00, 0x6f00a000, 0x70007100, 0x73007200, 0x74007500, 0x77007600, 0x7800ea00, 0x79007a00, 0x7d007b00,
|
||||
0xb8007c00, 0x7f00a100, 0x80007e00,
|
||||
0xec008100, 0xba00ee00, 0x07010601, 0x09010801, 0x0b010a01, 0xfe00fd00, 0x0d010c01, 0x0001ff00, 0x0f010e01,
|
||||
0x01011001, 0x12011101, 0x14011301,
|
||||
0x16011501, 0x18011701, 0x1a011901, 0xf900f800, 0x1c011b01, 0x1e011d01, 0x20011f01, 0x22012101, 0x24012301,
|
||||
0x26012501, 0xd700fa00, 0x28012701,
|
||||
0x2a012901, 0x2c012b01, 0x2e012d01, 0x30012f01, 0x32013101, 0xe300e200, 0x34013301, 0x36013501, 0x38013701,
|
||||
0x3a013901, 0x3c013b01, 0x3e013d01,
|
||||
0x40013f01, 0xb100b000, 0x42014101, 0x44014301, 0x46014501, 0x48014701, 0xfc00fb00, 0xe500e400, 0x4a014901,
|
||||
0x4c014b01, 0x4e014d01, 0x50014f01,
|
||||
0x52015101, 0x54015301, 0x56015501, 0x58015701, 0x5a015901, 0x5c015b01, 0x5e015d01, 0x5f01bb00, 0x61016001,
|
||||
0xe6006201, 0xa600e700, 0x64016301,
|
||||
0x66016501, 0xe100d800, 0xdc00db00, 0xe000dd00, 0xdf00d900, 0x68016701, 0x9b006901, 0x6b016a01, 0x6d016c01,
|
||||
0x6f016e01, 0x71017001, 0xb300b200,
|
||||
0xb700b600, 0xb400c400, 0xc500b500, 0xc2008200, 0xab008700, 0xbe00c600, 0xbc00bf00, 0x73017201, 0x98008c00,
|
||||
0x99009a00, 0xa500ef00, 0x9c009200,
|
||||
0x8f00a700, 0x95009400, 0x7401b900, 0x75077501, 0x8230696e, 0x21078500, 0x07853731, 0x86304121, 0x07442a07,
|
||||
0x63616d41, 0x076e6f72, 0x28078561,
|
||||
0x72624106, 0x06657665, 0x29068461, 0x676f4107, 0x6b656e6f, 0x07856107, 0x64430a2c, 0x6361746f, 0x746e6563,
|
||||
0x0a88630a, 0x63440623, 0x21428261,
|
||||
0x06856406, 0x72634427, 0x0774616f, 0x21508545, 0x07856507, 0x84450621, 0x65062151, 0x0a210684, 0x213d8845,
|
||||
0x0a88650a, 0x85450721, 0x65072166,
|
||||
0x06210785, 0x20518545, 0x21068465, 0x3389470a, 0x0a886720, 0x3122c884, 0x07863232, 0x48043327, 0x04726162,
|
||||
0x21048268, 0x79854907, 0x85690721,
|
||||
0x49062107, 0x06217a84, 0x21068469, 0x63854907, 0x85690721, 0x49022507, 0x6a69024a, 0x33214585, 0x29078636,
|
||||
0x614c0637, 0x65747563, 0x06846c06,
|
||||
0x42201586, 0x43220786, 0x98844c06, 0x846c0621, 0x4c042106, 0x04219482, 0x2104826c, 0x35854e06, 0x358a6e20,
|
||||
0x85353421, 0x36342335, 0x2e844e06,
|
||||
0x846e0621, 0x45032906, 0x6503676e, 0x4f07676e, 0x0721a585, 0x2107856f, 0xa6844f06, 0x846f0621, 0x4f0d2f06,
|
||||
0x676e7568, 0x6d757261, 0x7475616c,
|
||||
0x0d8b6f0d, 0x84520621, 0x72062166, 0x35206d8a, 0x3523c186, 0x84520637, 0x72062166, 0x53200685, 0x06212484,
|
||||
0x202b8a73, 0x063b4136, 0x06333623,
|
||||
0x20248554, 0x26068474, 0x61625404, 0x82740472, 0x55062804, 0x646c6974, 0x84750665, 0x55072106, 0x0721a185,
|
||||
0x21078575, 0xa2845506, 0x84750621,
|
||||
0x55052706, 0x676e6972, 0x05837505, 0x8c550d21, 0x8b7520b5, 0x5507210d, 0x21057741, 0x07857507, 0x63570b2d,
|
||||
0x75637269, 0x656c666d, 0x8a770b78,
|
||||
0x8a59200b, 0x8979200b, 0x5a06210b, 0x0621c284, 0x2106847a, 0x10425a0a, 0x7a0a2108, 0x2a0d1b42, 0x07383132,
|
||||
0x30696e75, 0x86393132, 0x86412007,
|
||||
0x05c74107, 0x34393322, 0x33210f84, 0x2b1f8541, 0x06434233, 0x61726757, 0x77066576, 0x57200685, 0x06216284,
|
||||
0x2b068477, 0x69645709, 0x73657265,
|
||||
0x77097369, 0x06210987, 0x20288559, 0x31068479, 0x72696c04, 0x75450461, 0x43026f72, 0x45440352, 0x0083004c,
|
||||
0xffff0126, 0x01000200, 0x0c200a82,
|
||||
0x52200382, 0x02220382, 0x0f820b00, 0x03828620, 0x87008728, 0x88000200, 0x0b829f00, 0xa000a022, 0xa1220b82,
|
||||
0x0b82a600, 0xa700a722, 0xa8220b82,
|
||||
0x0b82ea00, 0xec00eb22, 0xed2e0b82, 0x01000601, 0x08010701, 0x09010200, 0x17826b01, 0x49840420, 0x02820482,
|
||||
0x03820120, 0xdeda0024, 0x0783c5d7,
|
||||
0x31257c2b, 0x000000f0, 0x2834e200, 0x33fa057b, 0x0082f2a5,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user